UNPKG

@measey/mycoder-agent

Version:

Agent module for mycoder - an AI-powered software development assistant

9 lines 437 B
import { Tool, ToolContext } from '../types.js'; import { AgentConfig } from './config.js'; import { ToolAgentResult } from './types.js'; /** * Main tool agent function that orchestrates the conversation with the AI * and handles tool execution */ export declare const toolAgent: (initialPrompt: string, tools: Tool[], config: AgentConfig, context: ToolContext) => Promise<ToolAgentResult>; //# sourceMappingURL=toolAgentCore.d.ts.map