We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a60da4 commit 65af5e8Copy full SHA for 65af5e8
libs/remix-ai-core/src/inferencers/mcp/toolApiGenerator.ts
@@ -2,9 +2,6 @@ import { IMCPTool } from "../../types/mcp";
2
3
export class ToolApiGenerator {
4
5
- /**
6
- * Generate minimal API usage instructions
7
- */
8
generateAPIDescription(): string {
9
return `
10
Use callMCPTool(toolName, args) to call tools. You can perform multiple tasks by chaining tool calls.
@@ -72,9 +69,6 @@ for (const file of files) {
72
69
return list;
73
70
}
74
71
75
76
- * Convert JSON schema type to TypeScript type
77
78
private jsonSchemaToTsType(schema: any): string {
79
if (!schema.type) {
80
return 'any';
0 commit comments