postiz-app/libraries/nestjs-libraries/src/chat/agent.tool.interface.ts
2026-04-03 18:39:33 +07:00

8 lines
200 B
TypeScript

import type { ToolAction } from '@mastra/core/tools';
export type ToolReturn = ToolAction<any, any, any, any, any, any>;
export interface AgentToolInterface {
name: string;
run(): ToolReturn;
}