Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.25.1",
"@openai/codex": "^0.139.0",
"@openai/codex": "^0.140.0",
"diff": "^8.0.3",
"open": "^11.0.0",
"vscode-jsonrpc": "^8.2.1"
Expand Down
2 changes: 2 additions & 0 deletions src/CodexAcpServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,8 @@ export class CodexAcpServer implements acp.Agent {
return [await createDynamicToolCallUpdate(item)];
case "collabAgentToolCall":
return [this.createCollabAgentToolCallUpdate(item)];
case "subAgentActivity":
return [];
case "webSearch":
return [this.createWebSearchUpdate(item)];
case "imageView":
Expand Down
3 changes: 3 additions & 0 deletions src/CodexEventHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ export class CodexEventHandler {
case "externalAgentConfig/import/completed":
case "rawResponseItem/completed":
case "thread/started":
case "thread/deleted":
case "item/plan/delta":
case "remoteControl/status/changed":
case "app/list/updated":
Expand Down Expand Up @@ -352,6 +353,7 @@ export class CodexEventHandler {
this.activeImageGenerationItems.add(event.item.id);
return createImageGenerationStartUpdate(event.item);
case "collabAgentToolCall":
case "subAgentActivity":
case "userMessage":
case "hookPrompt":
case "agentMessage":
Expand Down Expand Up @@ -401,6 +403,7 @@ export class CodexEventHandler {
case "webSearch":
return createWebSearchCompleteUpdate(event.item);
case "collabAgentToolCall":
case "subAgentActivity":
case "userMessage":
case "hookPrompt":
case "agentMessage":
Expand Down
2 changes: 1 addition & 1 deletion src/app-server/AgentMessageInputContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type AgentMessageInputContent = { "type": "encrypted_content", encrypted_content: string, };
export type AgentMessageInputContent = { "type": "input_text", text: string, } | { "type": "encrypted_content", encrypted_content: string, };
2 changes: 1 addition & 1 deletion src/app-server/AuthMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
/**
* Authentication mode for OpenAI-backed providers.
*/
export type AuthMode = "apikey" | "chatgpt" | "chatgptAuthTokens" | "agentIdentity" | "personalAccessToken";
export type AuthMode = "apikey" | "chatgpt" | "chatgptAuthTokens" | "agentIdentity" | "personalAccessToken" | "bedrockApiKey";
Loading
Loading