33 lines
837 B
TypeScript
33 lines
837 B
TypeScript
export declare const codeDebugTool: {
|
|
name: string;
|
|
description: string;
|
|
inputSchema: {
|
|
type: "object";
|
|
properties: {
|
|
code: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
error_message: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
language: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
expected_behavior: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
};
|
|
required: string[];
|
|
};
|
|
};
|
|
export declare function executeCodeDebug(args: {
|
|
code: string;
|
|
error_message: string;
|
|
language: string;
|
|
expected_behavior?: string;
|
|
}): Promise<string>;
|
|
//# sourceMappingURL=codeDebug.d.ts.map
|