postio / libraries /nestjs-libraries /src /chat /agent.tool.interface.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
57aa51e verified
Raw
History Blame Contribute Delete
200 Bytes
import type { ToolAction } from '@mastra/core/tools';
export type ToolReturn = ToolAction<any, any, any, any, any, any>;
export interface AgentToolInterface {
name: string;
run(): ToolReturn;
}