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