mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
updates
This commit is contained in:
@@ -35,6 +35,7 @@ import { MarkdownString } from 'vs/base/common/htmlContent';
|
||||
import { TextEdit } from 'vs/editor/common/languages';
|
||||
import { localize } from 'vs/nls';
|
||||
import { nullExtensionDescription } from 'vs/workbench/services/extensions/common/extensions';
|
||||
import { Codicon } from 'vs/base/common/codicons';
|
||||
|
||||
class BridgeAgent implements IChatAgentImplementation {
|
||||
|
||||
@@ -246,7 +247,10 @@ export class InlineChatSessionServiceImpl implements IInlineChatSessionService {
|
||||
});
|
||||
},
|
||||
defaultImplicitVariables: [],
|
||||
metadata: { isSticky: false },
|
||||
metadata: {
|
||||
isSticky: false,
|
||||
themeIcon: Codicon.copilot,
|
||||
},
|
||||
}, this._instaService.createInstance(BridgeAgent, this._sessions)));
|
||||
|
||||
// MARK: register fake chat provider
|
||||
@@ -356,6 +360,10 @@ export class InlineChatSessionServiceImpl implements IInlineChatSessionService {
|
||||
}
|
||||
}));
|
||||
|
||||
store.add(chatModel.onDidChange(e => {
|
||||
console.log('chatModel.onDidChange', e);
|
||||
}));
|
||||
|
||||
const id = generateUuid();
|
||||
const targetUri = textModel.uri;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user