-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tsx
350 lines (338 loc) · 12.1 KB
/
variables.tsx
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import { CoreUserMessage } from "ai";
import { basename } from "path";
import * as vscode from "vscode";
import { logger } from "./logger";
import {
Code,
jsxToCoreMessage,
jsxToMarkdown,
Message,
} from "./prompts/jsx-utilities";
import { storage } from "./storage";
import { getLanguageConfig, getTerminalType } from "./utilities";
/**
* VariablesManager class provides centralized management of chat variables and prompts.
* It implements the Singleton pattern to ensure a single instance across the application.
*/
export class VariablesManager {
private static instance: VariablesManager;
private lastTerminalExecutedCommand:
| vscode.TerminalExecutedCommand
| undefined;
private constructor(extensionContext = storage.getContext()) {
// Define the chat variables and their resolvers
const chatVariables = [
{
name: "editor",
description: "The visible source code in the active editor",
isSlow: false,
fullName: "Current Editor",
icon: new vscode.ThemeIcon("file"),
prompt: this.getEditorPrompt,
},
{
name: "selection",
description: "The current selection in the active editor",
isSlow: false,
fullName: "Active Selection",
icon: new vscode.ThemeIcon("selection"),
prompt: this.getSelectionPrompt,
},
{
name: "terminalLastCommand",
description: "The last command executed in the terminal",
isSlow: false,
fullName: "Terminal Last Command",
icon: new vscode.ThemeIcon("terminal"),
prompt: this.getTerminalLastCommandPrompt,
},
{
name: "terminalSelection",
description: "The selected text from terminal",
isSlow: false,
fullName: "Terminal Selection",
icon: new vscode.ThemeIcon("terminal"),
prompt: this.getTerminalSelectionPrompt,
},
];
logger.info("Registering chat variable resolvers");
// Register the chat variable resolvers
for (const variable of chatVariables) {
logger.debug(`Registering chat variable: ${variable.name}`);
extensionContext.subscriptions.push(
vscode.chat.registerChatVariableResolver(
`flexpilot.${variable.name}`,
variable.name,
variable.description,
variable.description,
variable.isSlow,
{
resolve2: (_name, _context, stream) => {
try {
logger.debug(`Resolving variable: ${variable.name}`);
const prompt = variable.prompt();
if (prompt.props.reference) {
stream.reference(prompt.props.reference);
}
const message = jsxToMarkdown(prompt);
return [
{
level: vscode.ChatVariableLevel.Full,
value: message.value,
description: variable.description,
},
];
} catch (error) {
logger.warn(`Chat Variable Resolution Error: ${error}`);
return [];
}
},
resolve: () => [],
},
variable.fullName,
variable.icon,
),
);
}
// Register the terminal command execution event listener
logger.debug("Registering terminal command execution event listener");
extensionContext.subscriptions.push(
vscode.window.onDidExecuteTerminalCommand(
(event: vscode.TerminalExecutedCommand) => {
logger.debug(`Terminal command executed: ${event.commandLine}`);
this.lastTerminalExecutedCommand = event;
},
),
);
// Log the registration of chat variable resolvers
logger.info("Chat variable resolvers registered");
}
/**
* Registers the VariablesManager instance.
*/
public static register() {
if (!VariablesManager.instance) {
VariablesManager.instance = new VariablesManager();
logger.debug("New VariablesManager instance created");
}
}
/**
* Get the files prompt for a given file or location.
* @param {vscode.Uri | vscode.Location} file - The file or location to get the prompt for.
* @returns {Promise<JSX.Element>} A promise that resolves to the JSX element for the files prompt.
*/
private static async getFilesPrompt(
file: vscode.Uri | vscode.Location,
): Promise<JSX.Element> {
const uri = file instanceof vscode.Location ? file.uri : file;
logger.info(`Getting files prompt for: ${uri.toString()}`);
const document = await vscode.workspace.openTextDocument(uri);
const range =
file instanceof vscode.Location
? file.range
: new vscode.Range(0, 0, document.lineCount + 1, 0);
const language = getLanguageConfig(document.languageId);
const path = document.uri.fsPath;
const startLine = range.start.line + 1;
const endLine = range.end.line + 1;
const content = document.getText(range).trim();
logger.debug(`Files prompt generated for: ${path}`);
return (
<Message role="user" reference={document.uri}>
<h1>FILE:${basename(uri.fsPath)} CONTEXT</h1>
<br />
Use below file content for reference
<br />
<br />
(file: <code>{path}</code>, lines {startLine} to {endLine})
<br />
<Code language={language.markdown}>{content.trim()}</Code>
</Message>
);
}
/**
* Retrieves the current active editor's prompt as a JSX element.
* Logs the process of obtaining the editor prompt.
* If no active editor is found, logs a warning and returns undefined.
*
* @returns {JSX.Element} A JSX element containing the editor context or undefined if no active editor is found.
*/
private getEditorPrompt(): JSX.Element {
logger.info("Getting editor prompt");
const activeEditor = vscode.window.activeTextEditor;
if (!activeEditor) {
throw new Error("No active editor found");
}
const language = getLanguageConfig(activeEditor.document.languageId);
const path = activeEditor.document.uri.fsPath;
const lines = activeEditor.document.lineCount;
const content = activeEditor.document.getText();
logger.debug(`Editor prompt generated for: ${path}`);
return (
<Message role="user" reference={activeEditor.document.uri}>
<h1>EDITOR CONTEXT</h1>
<br />
Use below content from active editor for reference
<br />
<br />
(file: <code>{path}</code>, lines 1 to {lines})
<br />
<Code language={language.markdown}>{content.trim()}</Code>
</Message>
);
}
/**
* Retrieves the current active editor's selection prompt as a JSX element.
* Logs the process of obtaining the selection prompt.
* If no active editor is found, logs a warning and returns undefined.
*
* @returns {JSX.Element} A JSX element containing the selection context or undefined if no active editor is found.
*/
private getSelectionPrompt(): JSX.Element {
logger.info("Getting selection prompt");
const activeEditor = vscode.window.activeTextEditor;
if (!activeEditor) {
throw new Error("No active editor found with selection");
}
const { document, selection } = activeEditor;
const language = getLanguageConfig(document.languageId);
const startLine = selection.start.line + 1;
const endLine = selection.end.line + 1;
const path = document.uri.fsPath;
const content = document.getText(selection);
logger.debug(`Selection prompt generated for: ${path}`);
return (
<Message
role="user"
reference={new vscode.Location(document.uri, selection)}
>
<h1>SELECTION CONTEXT</h1>
<br />
Use below content selection from active editor for reference
<br />
<br />
(file: <code>{path}</code>, lines {startLine} to {endLine})
<br />
<Code language={language.markdown}>{content.trim()}</Code>
</Message>
);
}
/**
* Retrieves the terminal selection prompt as a JSX element.
* Logs the process of obtaining the terminal selection prompt.
* If no active terminal or selection is found, logs a warning and returns undefined.
*
* @returns {JSX.Element} A JSX element containing the terminal selection context or undefined if no active terminal or selection is found.
*/
private getTerminalSelectionPrompt(): JSX.Element {
logger.info("Getting terminal selection prompt");
const terminal = vscode.window.activeTerminal;
if (!terminal?.selection) {
throw new Error("No active terminal selection found");
}
logger.debug("Terminal selection prompt generated");
return (
<Message role="user">
<h1>TERMINAL SELECTION CONTEXT</h1>
<br />
Use below content from active terminal selection for reference
<br />
<Code language={getTerminalType(terminal)}>
{terminal.selection.trim()}
</Code>
</Message>
);
}
/**
* Retrieves the terminal last command prompt as a JSX element.
* Logs the process of obtaining the terminal last command prompt.
* If no last terminal shell execution is found, logs a warning and returns undefined.
*
* @returns {JSX.Element} A JSX element containing the terminal last command context or undefined if no last terminal shell execution is found.
*/
private getTerminalLastCommandPrompt(): JSX.Element {
logger.info("Getting terminal last command prompt");
if (!this.lastTerminalExecutedCommand) {
throw new Error("No last terminal shell execution found");
}
const terminalType = getTerminalType(
this.lastTerminalExecutedCommand.terminal,
);
logger.debug("Terminal last command prompt generated");
return (
<Message role="user">
<h1>TERMINAL LAST COMMAND CONTEXT</h1>
{this.lastTerminalExecutedCommand.commandLine && (
<>
<br />
The following is the last command run in the terminal:
<br />
<Code language={terminalType}>
{this.lastTerminalExecutedCommand.commandLine}
</Code>
</>
)}
{this.lastTerminalExecutedCommand.cwd && (
<>
<br />
It was run in the directory:
<br />
<Code language={terminalType}>
{this.lastTerminalExecutedCommand.cwd.toString()}
</Code>
</>
)}
{this.lastTerminalExecutedCommand.terminal && (
<>
<br />
It was run using shell type:
<br />
<Code language={terminalType}>{terminalType}</Code>
</>
)}
{this.lastTerminalExecutedCommand.output && (
<>
<br />
It has the following output:
<br />
<Code language={terminalType}>
{this.lastTerminalExecutedCommand.output}
</Code>
</>
)}
</Message>
);
}
/**
* Resolves variables to core messages.
* @param {vscode.ChatRequest} request - The chat request.
* @param {vscode.ChatResponseStream} response - The chat response stream.
* @returns {Promise<CoreUserMessage[]>} A promise that resolves to an array of core user messages.
*/
public static async resolveVariablesToCoreMessages(
request: vscode.ChatRequest,
response: vscode.ChatResponseStream,
): Promise<CoreUserMessage[]> {
const messages: CoreUserMessage[] = [];
for (const reference of request.references) {
try {
if (typeof reference.value === "string" && reference.id) {
response.reference2({ variableName: reference.name });
messages.push({ role: "user", content: reference.value });
} else if (
reference.value instanceof vscode.Uri ||
reference.value instanceof vscode.Location
) {
const prompt = await this.getFilesPrompt(reference.value);
if (prompt.props.reference) {
response.reference2(prompt.props.reference);
}
messages.push(jsxToCoreMessage(prompt) as CoreUserMessage);
}
} catch (error) {
logger.warn(`Chat Variable Resolution Error: ${error}`);
}
}
return messages;
}
}