Skip to content

Commit 8c81018

Browse files
chore: automatically update Codex to 0.125.0 (#121)
1 parent 22d2be3 commit 8c81018

19 files changed

Lines changed: 88 additions & 46 deletions

package-lock.json

Lines changed: 35 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
},
6363
"dependencies": {
6464
"@agentclientprotocol/sdk": "^0.16.1",
65-
"@openai/codex": "^0.124.0",
65+
"@openai/codex": "^0.125.0",
6666
"diff": "^8.0.3",
6767
"open": "^11.0.0",
6868
"vscode-jsonrpc": "^8.2.1"

src/CodexAcpClient.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,11 @@ export class CodexAcpClient {
159159
type: "chat-gpt",
160160
email: account.email,
161161
};
162+
case "amazonBedrock":
163+
return {
164+
type: "gateway",
165+
name: "amazonBedrock",
166+
};
162167
}
163168
}
164169

src/CodexCommands.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ export class CodexCommands {
236236
if (account.type === "chatgpt") {
237237
return `ChatGPT ${account.planType} (${account.email})`;
238238
}
239+
if (account.type === "amazonBedrock") {
240+
return "Amazon Bedrock";
241+
}
239242
return "unknown";
240243
}
241244

0 commit comments

Comments
 (0)