Skip to content

Commit 09c9ded

Browse files
authored
Make all remote chat agents sticky (microsoft#209579)
1 parent 8098a78 commit 09c9ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/api/common/extHostChatAgents2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export class ExtHostChatAgents2 implements ExtHostChatAgentsShape2 {
227227
const agent = new ExtHostChatAgent(extension, id, this._proxy, handle, handler);
228228
this._agents.set(handle, agent);
229229

230-
this._proxy.$registerAgent(handle, extension.identifier, id, {}, { name, description });
230+
this._proxy.$registerAgent(handle, extension.identifier, id, { isSticky: true }, { name, description });
231231
return agent.apiAgent;
232232
}
233233

0 commit comments

Comments
 (0)