@opensumi/ide-ai-native 3.8.1-next-1740571693.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 (127) hide show
  1. package/lib/browser/ai-core.contribution.d.ts +4 -1
  2. package/lib/browser/ai-core.contribution.d.ts.map +1 -1
  3. package/lib/browser/ai-core.contribution.js +20 -1
  4. package/lib/browser/ai-core.contribution.js.map +1 -1
  5. package/lib/browser/chat/chat-manager.service.d.ts +6 -0
  6. package/lib/browser/chat/chat-manager.service.d.ts.map +1 -1
  7. package/lib/browser/chat/chat-manager.service.js +31 -1
  8. package/lib/browser/chat/chat-manager.service.js.map +1 -1
  9. package/lib/browser/chat/chat-model.d.ts +2 -0
  10. package/lib/browser/chat/chat-model.d.ts.map +1 -1
  11. package/lib/browser/chat/chat-model.js +8 -2
  12. package/lib/browser/chat/chat-model.js.map +1 -1
  13. package/lib/browser/chat/chat.internal.service.d.ts +1 -0
  14. package/lib/browser/chat/chat.internal.service.d.ts.map +1 -1
  15. package/lib/browser/chat/chat.internal.service.js +3 -0
  16. package/lib/browser/chat/chat.internal.service.js.map +1 -1
  17. package/lib/browser/chat/chat.module.less +1 -2
  18. package/lib/browser/chat/chat.view.d.ts.map +1 -1
  19. package/lib/browser/chat/chat.view.js +6 -38
  20. package/lib/browser/chat/chat.view.js.map +1 -1
  21. package/lib/browser/components/ChatContext/index.js +2 -2
  22. package/lib/browser/components/ChatContext/index.js.map +1 -1
  23. package/lib/browser/components/ChatHistory.d.ts +0 -1
  24. package/lib/browser/components/ChatHistory.d.ts.map +1 -1
  25. package/lib/browser/components/ChatHistory.js +14 -14
  26. package/lib/browser/components/ChatHistory.js.map +1 -1
  27. package/lib/browser/components/ChatInput.d.ts.map +1 -1
  28. package/lib/browser/components/ChatInput.js +25 -1
  29. package/lib/browser/components/ChatInput.js.map +1 -1
  30. package/lib/browser/components/ChatToolRender.d.ts.map +1 -1
  31. package/lib/browser/components/ChatToolRender.js +2 -3
  32. package/lib/browser/components/ChatToolRender.js.map +1 -1
  33. package/lib/browser/components/{chat-history.css → chat-history.module.less} +1 -1
  34. package/lib/browser/components/components.module.less +20 -0
  35. package/lib/browser/context/llm-context.service.d.ts +16 -5
  36. package/lib/browser/context/llm-context.service.d.ts.map +1 -1
  37. package/lib/browser/context/llm-context.service.js +78 -47
  38. package/lib/browser/context/llm-context.service.js.map +1 -1
  39. package/lib/browser/layout/layout.module.less +4 -4
  40. package/lib/browser/mcp/base-apply.service.d.ts +31 -40
  41. package/lib/browser/mcp/base-apply.service.d.ts.map +1 -1
  42. package/lib/browser/mcp/base-apply.service.js +233 -167
  43. package/lib/browser/mcp/base-apply.service.js.map +1 -1
  44. package/lib/browser/mcp/tools/components/EditFile.d.ts.map +1 -1
  45. package/lib/browser/mcp/tools/components/EditFile.js +55 -41
  46. package/lib/browser/mcp/tools/components/EditFile.js.map +1 -1
  47. package/lib/browser/mcp/tools/components/index.module.less +23 -3
  48. package/lib/browser/mcp/tools/createNewFileWithText.d.ts.map +1 -1
  49. package/lib/browser/mcp/tools/createNewFileWithText.js +1 -0
  50. package/lib/browser/mcp/tools/createNewFileWithText.js.map +1 -1
  51. package/lib/browser/mcp/tools/editFile.js +1 -1
  52. package/lib/browser/mcp/tools/editFile.js.map +1 -1
  53. package/lib/browser/mcp/tools/getDiagnosticsByPath.d.ts.map +1 -1
  54. package/lib/browser/mcp/tools/getDiagnosticsByPath.js +1 -0
  55. package/lib/browser/mcp/tools/getDiagnosticsByPath.js.map +1 -1
  56. package/lib/browser/mcp/tools/handlers/EditFile.d.ts +5 -1
  57. package/lib/browser/mcp/tools/handlers/EditFile.d.ts.map +1 -1
  58. package/lib/browser/mcp/tools/handlers/EditFile.js +4 -4
  59. package/lib/browser/mcp/tools/handlers/EditFile.js.map +1 -1
  60. package/lib/browser/mcp/tools/handlers/RunCommand.d.ts.map +1 -1
  61. package/lib/browser/mcp/tools/handlers/RunCommand.js +2 -0
  62. package/lib/browser/mcp/tools/handlers/RunCommand.js.map +1 -1
  63. package/lib/browser/mcp/tools/runTerminalCmd.d.ts.map +1 -1
  64. package/lib/browser/mcp/tools/runTerminalCmd.js +1 -0
  65. package/lib/browser/mcp/tools/runTerminalCmd.js.map +1 -1
  66. package/lib/browser/model/msg-history-manager.d.ts +1 -0
  67. package/lib/browser/model/msg-history-manager.d.ts.map +1 -1
  68. package/lib/browser/model/msg-history-manager.js +12 -2
  69. package/lib/browser/model/msg-history-manager.js.map +1 -1
  70. package/lib/browser/types.d.ts +1 -1
  71. package/lib/browser/types.d.ts.map +1 -1
  72. package/lib/browser/widget/inline-diff/inline-diff-manager.d.ts +6 -0
  73. package/lib/browser/widget/inline-diff/inline-diff-manager.d.ts.map +1 -0
  74. package/lib/browser/widget/inline-diff/inline-diff-manager.js +27 -0
  75. package/lib/browser/widget/inline-diff/inline-diff-manager.js.map +1 -0
  76. package/lib/browser/widget/inline-diff/inline-diff-widget.module.less +12 -0
  77. package/lib/browser/widget/inline-stream-diff/inline-stream-diff.handler.d.ts +2 -0
  78. package/lib/browser/widget/inline-stream-diff/inline-stream-diff.handler.d.ts.map +1 -1
  79. package/lib/browser/widget/inline-stream-diff/inline-stream-diff.handler.js +11 -4
  80. package/lib/browser/widget/inline-stream-diff/inline-stream-diff.handler.js.map +1 -1
  81. package/lib/common/llm-context.d.ts +12 -9
  82. package/lib/common/llm-context.d.ts.map +1 -1
  83. package/lib/common/llm-context.js.map +1 -1
  84. package/lib/common/prompts/context-prompt-provider.d.ts +4 -3
  85. package/lib/common/prompts/context-prompt-provider.d.ts.map +1 -1
  86. package/lib/common/prompts/context-prompt-provider.js +34 -22
  87. package/lib/common/prompts/context-prompt-provider.js.map +1 -1
  88. package/lib/common/types.d.ts +17 -0
  89. package/lib/common/types.d.ts.map +1 -1
  90. package/lib/common/types.js.map +1 -1
  91. package/lib/node/base-language-model.d.ts +1 -1
  92. package/lib/node/base-language-model.d.ts.map +1 -1
  93. package/lib/node/base-language-model.js +54 -3
  94. package/lib/node/base-language-model.js.map +1 -1
  95. package/package.json +23 -23
  96. package/src/browser/ai-core.contribution.ts +25 -1
  97. package/src/browser/chat/chat-manager.service.ts +29 -1
  98. package/src/browser/chat/chat-model.ts +18 -3
  99. package/src/browser/chat/chat.internal.service.ts +4 -0
  100. package/src/browser/chat/chat.module.less +1 -2
  101. package/src/browser/chat/chat.view.tsx +7 -70
  102. package/src/browser/components/ChatContext/index.tsx +2 -2
  103. package/src/browser/components/ChatHistory.tsx +21 -15
  104. package/src/browser/components/ChatInput.tsx +67 -4
  105. package/src/browser/components/ChatToolRender.tsx +1 -2
  106. package/src/browser/components/{chat-history.css → chat-history.module.less} +1 -1
  107. package/src/browser/components/components.module.less +20 -0
  108. package/src/browser/context/llm-context.service.ts +90 -54
  109. package/src/browser/layout/layout.module.less +4 -4
  110. package/src/browser/mcp/base-apply.service.ts +266 -213
  111. package/src/browser/mcp/tools/components/EditFile.tsx +82 -60
  112. package/src/browser/mcp/tools/components/index.module.less +23 -3
  113. package/src/browser/mcp/tools/createNewFileWithText.ts +1 -0
  114. package/src/browser/mcp/tools/editFile.ts +2 -2
  115. package/src/browser/mcp/tools/getDiagnosticsByPath.ts +1 -0
  116. package/src/browser/mcp/tools/handlers/EditFile.ts +4 -4
  117. package/src/browser/mcp/tools/handlers/RunCommand.ts +2 -0
  118. package/src/browser/mcp/tools/runTerminalCmd.ts +1 -0
  119. package/src/browser/model/msg-history-manager.ts +12 -2
  120. package/src/browser/types.ts +1 -1
  121. package/src/browser/widget/inline-diff/inline-diff-manager.tsx +38 -0
  122. package/src/browser/widget/inline-diff/inline-diff-widget.module.less +12 -0
  123. package/src/browser/widget/inline-stream-diff/inline-stream-diff.handler.tsx +13 -4
  124. package/src/common/llm-context.ts +10 -4
  125. package/src/common/prompts/context-prompt-provider.ts +39 -29
  126. package/src/common/types.ts +20 -0
  127. package/src/node/base-language-model.ts +63 -1
@@ -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 {