@measey/mycoder-agent
Version:
Agent module for mycoder - an AI-powered software development assistant
39 lines • 1.27 kB
TypeScript
import { z } from 'zod';
import { Tool } from '../../core/types.js';
declare const parameterSchema: z.ZodObject<{
url: z.ZodOptional<z.ZodString>;
timeout: z.ZodOptional<z.ZodNumber>;
contentFilter: z.ZodOptional<z.ZodEnum<["raw", "smartMarkdown"]>>;
description: z.ZodString;
}, "strip", z.ZodTypeAny, {
description: string;
url?: string | undefined;
timeout?: number | undefined;
contentFilter?: "raw" | "smartMarkdown" | undefined;
}, {
description: string;
url?: string | undefined;
timeout?: number | undefined;
contentFilter?: "raw" | "smartMarkdown" | undefined;
}>;
declare const returnSchema: z.ZodObject<{
sessionId: z.ZodString;
status: z.ZodString;
content: z.ZodOptional<z.ZodString>;
error: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
status: string;
sessionId: string;
error?: string | undefined;
content?: string | undefined;
}, {
status: string;
sessionId: string;
error?: string | undefined;
content?: string | undefined;
}>;
type Parameters = z.infer<typeof parameterSchema>;
type ReturnType = z.infer<typeof returnSchema>;
export declare const sessionStartTool: Tool<Parameters, ReturnType>;
export {};
//# sourceMappingURL=sessionStart.d.ts.map