@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
10 lines • 340 B
TypeScript
import type { MastraMessageV2 } from '../message-list';
export interface InputProcessor {
readonly name: string;
process(args: {
messages: MastraMessageV2[];
abort: (reason?: string) => never;
}): Promise<MastraMessageV2[]> | MastraMessageV2[];
}
export * from './processors';
//# sourceMappingURL=index.d.ts.map