You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(`Error serializing input schema for tool ${tool.name}:`,error)
31
+
}
32
+
}
33
+
34
+
// Add tags if available
35
+
if(tool.tags&&tool.tags.length>0){
36
+
toolSection+=`
37
+
**Tags:** ${tool.tags.join(", ")}`
38
+
}
39
+
40
+
returntoolSection
41
+
})
42
+
.join("\n\n")
43
+
44
+
return`## VS Code Language Model Tools
45
+
46
+
The following VS Code Language Model tools are available for use. You can invoke them using the \`use_vsclmt\` tool with the appropriate tool name and arguments.
47
+
48
+
${toolDescriptions}
49
+
50
+
**Usage:** To use any of these tools, use the \`use_vsclmt\` tool with the \`tool_name\` parameter set to the exact tool name shown above, and provide any required arguments as a JSON string in the \`arguments\` parameter.`
0 commit comments