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 c481772 commit 16b9104Copy full SHA for 16b9104
1 file changed
src/CodexAcpServer.ts
@@ -161,6 +161,16 @@ export class CodexAcpServer implements acp.Agent {
161
162
// Check if turn was interrupted (cancelled)
163
if (turnCompleted.turn.status === "interrupted") {
164
+ await this.connection.sessionUpdate({
165
+ sessionId: params.sessionId,
166
+ update: {
167
+ sessionUpdate: "agent_message_chunk",
168
+ content: {
169
+ type: "text",
170
+ text: "*Conversation interrupted*"
171
+ }
172
173
+ });
174
return {
175
stopReason: "cancelled",
176
};
0 commit comments