UNPKG

openai-compatible-task-master

Version:

使用MCP解析PRD文档并生成任务列表

16 lines (15 loc) 440 B
import { TaskData } from '../llm/types.js'; /** * 将任务分解为子任务 * @param params 必需的参数对象 * @returns 分解后的子任务数组 */ export declare function breakupTask({ taskId, prompt, tasksPath, apiKey, apiUrl, model, streamMode, }: { taskId: string; prompt?: string; tasksPath: string; apiKey: string; apiUrl: string; model: string; streamMode: boolean; }): Promise<TaskData[]>;