UNPKG

@vfarcic/dot-ai

Version:

Universal Kubernetes application deployment agent with CLI and MCP interfaces

23 lines 799 B
/** * Choose Solution Tool - Select a solution and return its questions */ import { z } from 'zod'; import { DotAI } from '../core/index'; import { Logger } from '../core/error-handling'; export declare const CHOOSESOLUTION_TOOL_NAME = "chooseSolution"; export declare const CHOOSESOLUTION_TOOL_DESCRIPTION = "Select a solution by ID and return its questions for configuration"; export declare const CHOOSESOLUTION_TOOL_INPUT_SCHEMA: { solutionId: z.ZodString; }; /** * Direct MCP tool handler for chooseSolution functionality */ export declare function handleChooseSolutionTool(args: { solutionId: string; }, dotAI: DotAI, logger: Logger, requestId: string): Promise<{ content: { type: 'text'; text: string; }[]; }>; //# sourceMappingURL=choose-solution.d.ts.map