@measey/mycoder-agent
Version:
Agent module for mycoder - an AI-powered software development assistant
21 lines • 575 B
TypeScript
import { z } from 'zod';
import { Tool } from '../../core/types.js';
declare const parameterSchema: z.ZodObject<{
result: z.ZodString;
}, "strip", z.ZodTypeAny, {
result: string;
}, {
result: string;
}>;
declare const returnSchema: z.ZodObject<{
result: z.ZodString;
}, "strip", z.ZodTypeAny, {
result: string;
}, {
result: string;
}>;
type Parameters = z.infer<typeof parameterSchema>;
type ReturnType = z.infer<typeof returnSchema>;
export declare const agentDoneTool: Tool<Parameters, ReturnType>;
export {};
//# sourceMappingURL=agentDone.d.ts.map