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 45a473b commit 1778275Copy full SHA for 1778275
src/extension/byok/vscode-node/anthropicProvider.ts
@@ -137,7 +137,8 @@ export class AnthropicLMProvider implements BYOKModelProvider<LanguageModelChatI
137
input_schema: {
138
type: 'object',
139
properties: (tool.inputSchema as { properties?: Record<string, unknown> }).properties ?? {},
140
- required: (tool.inputSchema as { required?: string[] }).required ?? []
+ required: (tool.inputSchema as { required?: string[] }).required ?? [],
141
+ $schema: (tool.inputSchema as { $schema?: unknown }).$schema
142
}
143
};
144
});
0 commit comments