We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1170ecb commit 34bac00Copy full SHA for 34bac00
1 file changed
src/CodexAcpServer.ts
@@ -167,6 +167,16 @@ export class CodexAcpServer implements acp.Agent {
167
168
// Check if turn was interrupted (cancelled)
169
if (turnCompleted.turn.status === "interrupted") {
170
+ await this.connection.sessionUpdate({
171
+ sessionId: params.sessionId,
172
+ update: {
173
+ sessionUpdate: "agent_message_chunk",
174
+ content: {
175
+ type: "text",
176
+ text: "*Conversation interrupted*"
177
+ }
178
179
+ });
180
return {
181
stopReason: "cancelled",
182
};
0 commit comments