forked from microsoft/vscode-copilot-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplaceStringTool.tsx
More file actions
84 lines (70 loc) · 3.46 KB
/
Copy pathreplaceStringTool.tsx
File metadata and controls
84 lines (70 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as l10n from '@vscode/l10n';
import type * as vscode from 'vscode';
import { count } from '../../../util/vs/base/common/strings';
import { MarkdownString } from '../../../vscodeTypes';
import { ToolName } from '../common/toolNames';
import { ToolRegistry } from '../common/toolsRegistry';
import { formatUriForFileWidget } from '../common/toolUtils';
import { AbstractReplaceStringTool, IAbstractReplaceStringInput } from './abstractReplaceStringTool';
import { resolveToolInputPath } from './toolUtils';
export interface IReplaceStringToolParams {
explanation: string;
filePath: string;
oldString: string;
newString: string;
}
export class ReplaceStringTool<T extends IReplaceStringToolParams = IReplaceStringToolParams> extends AbstractReplaceStringTool<T> {
public static toolName = ToolName.ReplaceString;
protected extractReplaceInputs(input: T): IAbstractReplaceStringInput[] {
return [{
filePath: input.filePath,
oldString: input.oldString,
newString: input.newString,
}];
}
async handleToolStream(options: vscode.LanguageModelToolInvocationStreamOptions<IReplaceStringToolParams>, _token: vscode.CancellationToken): Promise<vscode.LanguageModelToolStreamResult> {
const partialInput = options.rawInput as Partial<IReplaceStringToolParams> | undefined;
let invocationMessage: MarkdownString;
if (partialInput && typeof partialInput === 'object') {
const oldString = partialInput.oldString;
const newString = partialInput.newString;
const filePath = partialInput.filePath;
const oldLineCount = oldString !== undefined ? count(oldString, '\n') + 1 : undefined;
const newLineCount = newString !== undefined ? count(newString, '\n') + 1 : undefined;
if (filePath) {
const uri = resolveToolInputPath(filePath, this.promptPathRepresentationService);
const fileRef = formatUriForFileWidget(uri);
if (oldLineCount !== undefined && newLineCount !== undefined) {
invocationMessage = new MarkdownString(l10n.t`Replacing ${oldLineCount} lines with ${newLineCount} lines in ${fileRef}`);
} else if (oldLineCount !== undefined) {
invocationMessage = new MarkdownString(l10n.t`Replacing ${oldLineCount} lines in ${fileRef}`);
} else {
invocationMessage = new MarkdownString(l10n.t`Editing ${fileRef}`);
}
} else {
if (oldLineCount !== undefined && newLineCount !== undefined) {
invocationMessage = new MarkdownString(l10n.t`Replacing ${oldLineCount} lines with ${newLineCount} lines`);
} else if (oldLineCount !== undefined) {
invocationMessage = new MarkdownString(l10n.t`Replacing ${oldLineCount} lines`);
} else {
invocationMessage = new MarkdownString(l10n.t`Editing file`);
}
}
} else {
invocationMessage = new MarkdownString(l10n.t`Editing file`);
}
return { invocationMessage };
}
async invoke(options: vscode.LanguageModelToolInvocationOptions<T>, token: vscode.CancellationToken) {
const prepared = await this.prepareEdits(options, token);
return this.applyAllEdits(options, prepared, token);
}
protected override toolName(): ToolName {
return ReplaceStringTool.toolName;
}
}
ToolRegistry.registerTool(ReplaceStringTool);