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 82b2f61 commit 38dc6acCopy full SHA for 38dc6ac
src/vs/workbench/api/common/extHostTypes.ts
@@ -4663,14 +4663,8 @@ export class LanguageModelToolCallPart implements vscode.LanguageModelToolCallPa
4663
parameters: any;
4664
4665
constructor(callId: string, name: string, input: any) {
4666
- // TODO TEMP- swapped the order of these two arguments, trying to preserve the behavior for a build or two
4667
- if (name.startsWith('call_')) {
4668
- this.name = callId;
4669
- this.callId = name;
4670
- } else {
4671
- this.callId = callId;
4672
- this.name = name;
4673
- }
+ this.callId = callId;
+ this.name = name;
4674
4675
this.input = input;
4676
// TODO@API backwards compat, remove
0 commit comments