33 lines
824 B
TypeScript
33 lines
824 B
TypeScript
|
|
export declare const codeWriteTool: {
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
inputSchema: {
|
||
|
|
type: "object";
|
||
|
|
properties: {
|
||
|
|
requirement: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
language: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
framework: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
context: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
required: string[];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
export declare function executeCodeWrite(args: {
|
||
|
|
requirement: string;
|
||
|
|
language: string;
|
||
|
|
framework?: string;
|
||
|
|
context?: string;
|
||
|
|
}): Promise<string>;
|
||
|
|
//# sourceMappingURL=codeWrite.d.ts.map
|