postio / apps /backend /dist /libraries /nestjs-libraries /src /chat /agent.tool.interface.d.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
fee1116 verified
Raw
History Blame Contribute Delete
202 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;
}