post merge fixes

This commit is contained in:
Johannes
2024-03-21 12:11:06 +01:00
parent eb4271c7fe
commit 42383cb45f
5 changed files with 9 additions and 8 deletions

View File

@@ -91,7 +91,7 @@ class BridgeAgent implements IChatAgentImplementation {
// }
if (data.slashCommand) {
const command = this._data.slashCommands.find(c => c.name === data.slashCommand);
progress({ kind: 'agentDetection', detected: true, agentName: this._data.id, command });
progress({ kind: 'agentDetection', detected: true, agentId: this._data.id, command });
}
if (data.markdownFragment) {
progress({ kind: 'markdownContent', content: new MarkdownString(data.markdownFragment) });
@@ -227,6 +227,7 @@ export class InlineChatSessionServiceImpl implements IInlineChatSessionService {
const that = this;
const agentData: IChatAgentData = {
id: 'editor',
name: 'editor',
extensionId: nullExtensionDescription.identifier,
isDefault: true,
locations: [ChatAgentLocation.Editor],