@opensumi/ide-ai-native 3.8.1-next-1740625266.0 → 3.8.1-next-1740725107.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/lib/browser/chat/chat-manager.service.d.ts +5 -0
  2. package/lib/browser/chat/chat-manager.service.d.ts.map +1 -1
  3. package/lib/browser/chat/chat-manager.service.js +18 -1
  4. package/lib/browser/chat/chat-manager.service.js.map +1 -1
  5. package/lib/browser/chat/chat-model.d.ts +2 -0
  6. package/lib/browser/chat/chat-model.d.ts.map +1 -1
  7. package/lib/browser/chat/chat-model.js +8 -2
  8. package/lib/browser/chat/chat-model.js.map +1 -1
  9. package/lib/browser/chat/chat.module.less +1 -2
  10. package/lib/browser/chat/chat.view.d.ts.map +1 -1
  11. package/lib/browser/chat/chat.view.js +6 -38
  12. package/lib/browser/chat/chat.view.js.map +1 -1
  13. package/lib/browser/components/ChatContext/index.js +2 -2
  14. package/lib/browser/components/ChatContext/index.js.map +1 -1
  15. package/lib/browser/components/ChatInput.d.ts.map +1 -1
  16. package/lib/browser/components/ChatInput.js +25 -1
  17. package/lib/browser/components/ChatInput.js.map +1 -1
  18. package/lib/browser/components/ChatToolRender.d.ts.map +1 -1
  19. package/lib/browser/components/ChatToolRender.js +2 -3
  20. package/lib/browser/components/ChatToolRender.js.map +1 -1
  21. package/lib/browser/components/chat-history.module.less +1 -1
  22. package/lib/browser/components/components.module.less +20 -0
  23. package/lib/browser/context/llm-context.service.d.ts +16 -5
  24. package/lib/browser/context/llm-context.service.d.ts.map +1 -1
  25. package/lib/browser/context/llm-context.service.js +78 -47
  26. package/lib/browser/context/llm-context.service.js.map +1 -1
  27. package/lib/browser/layout/layout.module.less +4 -4
  28. package/lib/browser/mcp/tools/components/index.module.less +1 -0
  29. package/lib/browser/mcp/tools/createNewFileWithText.d.ts.map +1 -1
  30. package/lib/browser/mcp/tools/createNewFileWithText.js +1 -0
  31. package/lib/browser/mcp/tools/createNewFileWithText.js.map +1 -1
  32. package/lib/browser/mcp/tools/getDiagnosticsByPath.d.ts.map +1 -1
  33. package/lib/browser/mcp/tools/getDiagnosticsByPath.js +1 -0
  34. package/lib/browser/mcp/tools/getDiagnosticsByPath.js.map +1 -1
  35. package/lib/browser/mcp/tools/handlers/RunCommand.d.ts.map +1 -1
  36. package/lib/browser/mcp/tools/handlers/RunCommand.js +2 -0
  37. package/lib/browser/mcp/tools/handlers/RunCommand.js.map +1 -1
  38. package/lib/browser/mcp/tools/runTerminalCmd.d.ts.map +1 -1
  39. package/lib/browser/mcp/tools/runTerminalCmd.js +1 -0
  40. package/lib/browser/mcp/tools/runTerminalCmd.js.map +1 -1
  41. package/lib/common/llm-context.d.ts +12 -9
  42. package/lib/common/llm-context.d.ts.map +1 -1
  43. package/lib/common/llm-context.js.map +1 -1
  44. package/lib/common/prompts/context-prompt-provider.d.ts +4 -3
  45. package/lib/common/prompts/context-prompt-provider.d.ts.map +1 -1
  46. package/lib/common/prompts/context-prompt-provider.js +34 -22
  47. package/lib/common/prompts/context-prompt-provider.js.map +1 -1
  48. package/package.json +23 -23
  49. package/src/browser/chat/chat-manager.service.ts +17 -1
  50. package/src/browser/chat/chat-model.ts +18 -3
  51. package/src/browser/chat/chat.module.less +1 -2
  52. package/src/browser/chat/chat.view.tsx +7 -70
  53. package/src/browser/components/ChatContext/index.tsx +2 -2
  54. package/src/browser/components/ChatInput.tsx +67 -4
  55. package/src/browser/components/ChatToolRender.tsx +1 -2
  56. package/src/browser/components/chat-history.module.less +1 -1
  57. package/src/browser/components/components.module.less +20 -0
  58. package/src/browser/context/llm-context.service.ts +90 -54
  59. package/src/browser/layout/layout.module.less +4 -4
  60. package/src/browser/mcp/tools/components/index.module.less +1 -0
  61. package/src/browser/mcp/tools/createNewFileWithText.ts +1 -0
  62. package/src/browser/mcp/tools/getDiagnosticsByPath.ts +1 -0
  63. package/src/browser/mcp/tools/handlers/RunCommand.ts +2 -0
  64. package/src/browser/mcp/tools/runTerminalCmd.ts +1 -0
  65. package/src/common/llm-context.ts +10 -4
  66. package/src/common/prompts/context-prompt-provider.ts +39 -29
@@ -12,7 +12,7 @@ import {
12
12
  import { EditorSelectionChangeEvent } from '@opensumi/ide-editor/lib/browser/types';
13
13
  import { IMarkerService } from '@opensumi/ide-markers/lib/common/types';
14
14
 
15
- import { FileContext, LLMContextService, SerializedContext } from '../../common/llm-context';
15
+ import { AttachFileContext, FileContext, LLMContextService, SerializedContext } from '../../common/llm-context';
16
16
 
17
17
  @Injectable()
18
18
  export class LLMContextServiceImpl extends WithEventBus implements LLMContextService {
@@ -27,40 +27,65 @@ export class LLMContextServiceImpl extends WithEventBus implements LLMContextSer
27
27
 
28
28
  private isAutoCollecting = false;
29
29
 
30
- private contextFiles: FileContext[] = [];
30
+ private readonly maxAttachFilesLimit = 10;
31
+ private readonly maxViewFilesLimit = 20;
32
+ private readonly attachedFiles: FileContext[] = [];
33
+ private readonly recentlyViewFiles: FileContext[] = [];
34
+ private readonly onDidContextFilesChangeEmitter = new Emitter<{ viewed: FileContext[]; attached: FileContext[] }>();
35
+ onDidContextFilesChangeEvent = this.onDidContextFilesChangeEmitter.event;
31
36
 
32
- private maxFiles: number = 10; // 上下文的最大长度限制
37
+ private addFileToList(file: FileContext, list: FileContext[], maxLimit: number) {
38
+ const existingIndex = list.findIndex((f) => f.uri.toString() === file.uri.toString());
39
+ if (existingIndex > -1) {
40
+ list.splice(existingIndex, 1);
41
+ }
33
42
 
34
- private onDidContextFilesChangeEmitter = new Emitter<FileContext[]>();
35
- onDidContextFilesChangeEvent = this.onDidContextFilesChangeEmitter.event;
43
+ list.push(file);
44
+ if (list.length > maxLimit) {
45
+ list.shift();
46
+ }
47
+ }
36
48
 
37
- addFileToContext(uri: URI, selection?: [number, number], isManual = true): void {
38
- this.removeFileFromContext(uri);
49
+ addFileToContext(uri: URI, selection?: [number, number], isManual = false): void {
50
+ if (!uri) {
51
+ return;
52
+ }
39
53
 
40
- this.contextFiles.push({ uri, selection, isManual });
54
+ const file = { uri, selection };
55
+ const targetList = isManual ? this.attachedFiles : this.recentlyViewFiles;
56
+ const maxLimit = isManual ? this.maxAttachFilesLimit : this.maxViewFilesLimit;
41
57
 
42
- if (this.contextFiles.length > this.maxFiles) {
43
- this.contextFiles.shift();
58
+ if (isManual) {
59
+ this.docModelManager.createModelReference(uri);
44
60
  }
45
61
 
62
+ this.addFileToList(file, targetList, maxLimit);
63
+ this.notifyContextChange();
64
+ }
65
+
66
+ private notifyContextChange(): void {
46
67
  this.onDidContextFilesChangeEmitter.fire(this.getAllContextFiles());
47
68
  }
48
69
 
49
70
  cleanFileContext() {
50
- this.contextFiles = [];
51
- this.onDidContextFilesChangeEmitter.fire(this.getAllContextFiles());
71
+ this.attachedFiles.length = 0;
72
+ this.notifyContextChange();
52
73
  }
53
74
 
54
75
  private getAllContextFiles() {
55
- return [...this.contextFiles];
76
+ return {
77
+ viewed: this.recentlyViewFiles,
78
+ attached: this.attachedFiles,
79
+ };
56
80
  }
57
81
 
58
- removeFileFromContext(uri: URI): void {
59
- const index = this.contextFiles.findIndex((file) => file.uri.toString() === uri.toString());
82
+ removeFileFromContext(uri: URI, isManual = false): void {
83
+ const targetList = isManual ? this.attachedFiles : this.recentlyViewFiles;
84
+ const index = targetList.findIndex((file) => file.uri.toString() === uri.toString());
60
85
  if (index > -1) {
61
- this.contextFiles.splice(index, 1);
62
- this.onDidContextFilesChangeEmitter.fire(this.getAllContextFiles());
86
+ targetList.splice(index, 1);
63
87
  }
88
+ this.notifyContextChange();
64
89
  }
65
90
 
66
91
  startAutoCollection(): void {
@@ -78,8 +103,7 @@ export class LLMContextServiceImpl extends WithEventBus implements LLMContextSer
78
103
  if (event.payload.uri.scheme !== 'file') {
79
104
  return;
80
105
  }
81
- // FIXME: 暂时不自动添加
82
- // this.addFileToContext(event.payload.uri);
106
+ this.addFileToContext(event.payload.uri, undefined, false);
83
107
  }),
84
108
  );
85
109
 
@@ -88,6 +112,8 @@ export class LLMContextServiceImpl extends WithEventBus implements LLMContextSer
88
112
  if (event.payload.scheme !== 'file') {
89
113
  return;
90
114
  }
115
+
116
+ this.removeFileFromContext(event.payload, false);
91
117
  }),
92
118
  );
93
119
 
@@ -109,11 +135,12 @@ export class LLMContextServiceImpl extends WithEventBus implements LLMContextSer
109
135
  ].sort() as [number, number];
110
136
 
111
137
  if (selection[0] === selection[1]) {
112
- this.addFileToContext(event.payload.editorUri, undefined);
138
+ this.addFileToContext(event.payload.editorUri, undefined, false);
113
139
  } else {
114
140
  this.addFileToContext(
115
141
  event.payload.editorUri,
116
142
  selection.sort((a, b) => a - b),
143
+ false,
117
144
  );
118
145
  }
119
146
  }
@@ -127,42 +154,51 @@ export class LLMContextServiceImpl extends WithEventBus implements LLMContextSer
127
154
 
128
155
  serialize(): SerializedContext {
129
156
  const files = this.getAllContextFiles();
130
- const recentlyViewFiles = files
131
- .filter((v) => !v.selection)
132
- .map((file) => {
133
- const relativePath = URI.file(this.appConfig.workspaceDir).relative(file.uri);
134
- if (relativePath) {
135
- return relativePath.toString();
136
- }
137
- return file.uri.parent.toString();
138
- })
139
- .filter(Boolean);
140
-
141
- const attachedFiles = files
142
- .filter((v) => v.selection)
143
- .map((file) => {
144
- const ref = this.docModelManager.getModelReference(file.uri);
145
- const content = ref!.instance.getText();
146
- const lineErrors = this.markerService
147
- .getManager()
148
- .getMarkers({
149
- resource: file.uri.toString(),
150
- severities: MarkerSeverity.Error,
151
- })
152
- .map((marker) => marker.message);
153
-
154
- return {
155
- content,
156
- lineErrors,
157
- path: URI.file(this.appConfig.workspaceDir).relative(file.uri)!.toString(),
158
- language: ref?.instance.languageId!,
159
- };
160
- })
161
- .filter(Boolean);
157
+ const workspaceRoot = URI.file(this.appConfig.workspaceDir);
162
158
 
163
159
  return {
164
- recentlyViewFiles,
165
- attachedFiles,
160
+ recentlyViewFiles: this.serializeRecentlyViewFiles(files.viewed, workspaceRoot),
161
+ attachedFiles: this.serializeAttachedFiles(files.attached, workspaceRoot),
166
162
  };
167
163
  }
164
+
165
+ private serializeRecentlyViewFiles(files: FileContext[], workspaceRoot: URI): string[] {
166
+ return files
167
+ .map((file) => workspaceRoot.relative(file.uri)?.toString() || file.uri.parent.toString())
168
+ .filter(Boolean);
169
+ }
170
+
171
+ private serializeAttachedFiles(files: FileContext[], workspaceRoot: URI): AttachFileContext[] {
172
+ return files
173
+ .map((file) => this.serializeAttachedFile(file, workspaceRoot))
174
+ .filter(Boolean) as unknown as AttachFileContext[];
175
+ }
176
+
177
+ private serializeAttachedFile(file: FileContext, workspaceRoot: URI) {
178
+ try {
179
+ const ref = this.docModelManager.getModelReference(file.uri);
180
+ if (!ref) {
181
+ return null;
182
+ }
183
+
184
+ return {
185
+ content: ref.instance.getText(),
186
+ lineErrors: this.getFileErrors(file.uri),
187
+ path: workspaceRoot.relative(file.uri)!.toString(),
188
+ language: ref.instance.languageId!,
189
+ };
190
+ } catch (e) {
191
+ return null;
192
+ }
193
+ }
194
+
195
+ private getFileErrors(uri: URI): string[] {
196
+ return this.markerService
197
+ .getManager()
198
+ .getMarkers({
199
+ resource: uri.toString(),
200
+ severities: MarkerSeverity.Error,
201
+ })
202
+ .map((marker) => marker.message);
203
+ }
168
204
  }
@@ -14,16 +14,16 @@
14
14
  padding: 8px 12px;
15
15
  min-width: initial;
16
16
  margin: 0;
17
-
18
- ::after {
19
- content: '';
20
- }
21
17
  }
22
18
 
23
19
  .rce-mbox-text {
24
20
  line-height: 18px;
25
21
  width: inherit;
26
22
  font-size: 12px;
23
+
24
+ &::after {
25
+ display: none;
26
+ }
27
27
  }
28
28
 
29
29
  .rce-smsg {
@@ -154,6 +154,7 @@
154
154
  background-color: var(--design-chatInput-background);
155
155
  padding: 10px;
156
156
  border-radius: 4px;
157
+ margin: 10px 0px;
157
158
 
158
159
  .command_title {
159
160
  display: flex;
@@ -27,6 +27,7 @@ export class CreateNewFileWithTextTool implements MCPServerContribution {
27
27
  getToolDefinition(): MCPToolDefinition {
28
28
  return {
29
29
  name: 'create_new_file_with_text',
30
+ label: 'Create File',
30
31
  description:
31
32
  'Creates a new file at the specified path within the project directory and populates it with the provided text. ' +
32
33
  'Use this tool to generate new files in your project structure. ' +
@@ -29,6 +29,7 @@ export class GetDiagnosticsByPathTool implements MCPServerContribution {
29
29
  getToolDefinition(): MCPToolDefinition {
30
30
  return {
31
31
  name: 'get_diagnostics_by_path',
32
+ label: 'Get Diagnostics',
32
33
  description:
33
34
  'Retrieves diagnostic information (errors, warnings, etc.) from a specific file in the project. ' +
34
35
  'Use this tool to get information about problems in any project file. ' +
@@ -49,6 +49,7 @@ export class RunCommandHandler {
49
49
  }
50
50
 
51
51
  async handler(args: z.infer<typeof inputSchema> & { toolCallId: string }, logger: MCPLogger) {
52
+ logger.appendLine(`Executing command: ${args.command}`);
52
53
  if (args.require_user_approval) {
53
54
  const def = new Deferred<boolean>();
54
55
  this.approvalDeferredMap.set(args.toolCallId, def);
@@ -89,6 +90,7 @@ export class RunCommandHandler {
89
90
  content: result,
90
91
  });
91
92
 
93
+ logger.appendLine(`Command ${args.command} finished with exit code: ${e.code}`);
92
94
  terminalClient.term.writeln(
93
95
  `\n${color.italic}> Command ${args.command} executed successfully. Terminal will close in ${
94
96
  3000 / 1000
@@ -32,6 +32,7 @@ export class RunTerminalCommandTool implements MCPServerContribution {
32
32
  getToolDefinition(): MCPToolDefinition {
33
33
  return {
34
34
  name: 'run_terminal_cmd',
35
+ label: 'Run Command',
35
36
  description:
36
37
  "PROPOSE a command to run on behalf of the user.\nIf you have this tool, note that you DO have the ability to run commands directly on the USER's system.\n\nAdhere to these rules:\n1. Based on the contents of the conversation, you will be told if you are in the same shell as a previous step or a new shell.\n2. If in a new shell, you should `cd` to the right directory and do necessary setup in addition to running the command.\n3. If in the same shell, the state will persist, no need to do things like `cd` to the same directory.\n4. For ANY commands that would use a pager, you should append ` | cat` to the command (or whatever is appropriate). You MUST do this for: git, less, head, tail, more, etc.\n5. For commands that are long running/expected to run indefinitely until interruption, please run them in the background. To run jobs in the background, set `is_background` to true rather than changing the details of the command.\n6. Dont include any newlines in the command.",
37
38
  inputSchema,
@@ -15,13 +15,13 @@ export interface LLMContextService {
15
15
  */
16
16
  cleanFileContext(): void;
17
17
 
18
- onDidContextFilesChangeEvent: Event<FileContext[]>;
18
+ onDidContextFilesChangeEvent: Event<{ viewed: FileContext[]; attached: FileContext[] }>;
19
19
 
20
20
  /**
21
21
  * 从 context 中移除文件
22
22
  * @param uri URI
23
23
  */
24
- removeFileFromContext(uri: URI): void;
24
+ removeFileFromContext(uri: URI, isManual?: boolean): void;
25
25
 
26
26
  /** 导出为可序列化格式 */
27
27
  serialize(): SerializedContext;
@@ -30,12 +30,18 @@ export interface LLMContextService {
30
30
  export interface FileContext {
31
31
  uri: URI;
32
32
  selection?: [number, number];
33
- isManual: boolean;
34
33
  }
35
34
 
36
35
  export const LLMContextServiceToken = Symbol('LLMContextService');
37
36
 
37
+ export interface AttachFileContext {
38
+ content: string;
39
+ lineErrors: string[];
40
+ path: string;
41
+ language: string;
42
+ }
43
+
38
44
  export interface SerializedContext {
39
45
  recentlyViewFiles: string[];
40
- attachedFiles: Array<{ content: string; lineErrors: string[]; path: string; language: string }>;
46
+ attachedFiles: Array<AttachFileContext>;
41
47
  }
@@ -1,5 +1,5 @@
1
- import { Injectable } from '@opensumi/di';
2
- import { MaybePromise } from '@opensumi/ide-core-common/lib/utils';
1
+ import { Autowired, Injectable } from '@opensumi/di';
2
+ import { WorkbenchEditorService } from '@opensumi/ide-editor/lib/browser/types';
3
3
 
4
4
  import { SerializedContext } from '../llm-context';
5
5
 
@@ -10,37 +10,47 @@ export interface ChatAgentPromptProvider {
10
10
  * 提供上下文提示
11
11
  * @param context 上下文
12
12
  */
13
- provideContextPrompt(context: SerializedContext, userMessage: string): MaybePromise<string>;
13
+ provideContextPrompt(context: SerializedContext, userMessage: string): string;
14
14
  }
15
15
 
16
16
  @Injectable()
17
17
  export class DefaultChatAgentPromptProvider implements ChatAgentPromptProvider {
18
- provideContextPrompt(context: SerializedContext, userMessage: string): MaybePromise<string> {
18
+ @Autowired(WorkbenchEditorService)
19
+ protected readonly workbenchEditorService: WorkbenchEditorService;
20
+
21
+ provideContextPrompt(context: SerializedContext, userMessage: string): string {
22
+ const editor = this.workbenchEditorService.currentEditor;
23
+ const currentModel = editor?.currentDocumentModel;
24
+ currentModel
19
25
  return `
20
- <additional_data>
21
- Below are some potentially helpful/relevant pieces of information for figuring out to respond
22
- <recently_viewed_files>
23
- ${context.recentlyViewFiles.map((file, idx) => `${idx + 1} : ${file}`)}
24
- </recently_viewed_files>
25
- <attached_files>
26
- ${context.attachedFiles.map(
27
- (file) =>
28
- `
29
- <file_contents>
30
- \`\`\`${file.language} ${file.path}
31
- ${file.content}
32
- \`\`\`
33
- </file_contents>
34
- <linter_errors>
35
- ${file.lineErrors.join('\n')}
36
- </linter_errors>
37
- `,
38
- )}
39
-
40
- </attached_files>
41
- </additional_data>
42
- <user_query>
43
- ${userMessage}
44
- </user_query>`;
26
+ <additional_data>
27
+ Below are some potentially helpful/relevant pieces of information for figuring out to respond
28
+ <recently_viewed_files>
29
+ ${context.recentlyViewFiles.map((file, idx) => ` ${idx + 1}: ${file}`).join('\n')}
30
+ </recently_viewed_files>
31
+ <attached_files>
32
+ ${context.attachedFiles.map(
33
+ (file) =>
34
+ `
35
+ <file_contents>
36
+ \`\`\`${file.language} ${file.path}
37
+ ${file.content}
38
+ \`\`\`
39
+ </file_contents>
40
+ <linter_errors>
41
+ ${file.lineErrors.join('\n')}
42
+ </linter_errors>
43
+ `,
44
+ )}
45
+ </attached_files>
46
+ ${currentModel ? `<current_opened_file>
47
+ \`\`\`${currentModel.languageId} ${currentModel.uri.toString()}
48
+ ${currentModel.getText()}
49
+ \`\`\`
50
+ </current_opened_file>` : ''}
51
+ </additional_data>
52
+ <user_query>
53
+ ${userMessage}
54
+ </user_query>`;
45
55
  }
46
56
  }