openai-compatible-task-master
Version:
使用MCP解析PRD文档并生成任务列表
4 lines (3 loc) • 336 B
TypeScript
import { TasksOutput } from './types.js';
export declare function parseJsonResponse(jsonContent: string): TasksOutput;
export declare function parsePRDWithLLM(prdContent: string, prdPath: string, numTasks: number, openaiUrl: string, apiKey: string, model: string, streamMode: boolean, additionalPrompts?: string): Promise<TasksOutput>;