@mastra/core
Version:
Mastra is the Typescript framework for building AI agents and assistants. It’s used by some of the largest companies in the world to build internal AI automation tooling and customer-facing agents.
10 lines • 358 B
TypeScript
import type { MastraMessageV2 } from '../message-list/index.js';
export interface InputProcessor {
readonly name: string;
process(args: {
messages: MastraMessageV2[];
abort: (reason?: string) => never;
}): Promise<MastraMessageV2[]> | MastraMessageV2[];
}
export * from './processors/index.js';
//# sourceMappingURL=index.d.ts.map