@bitkyc08/opencodex 2.6.20 → 2.6.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ko.md +5 -0
- package/README.md +5 -0
- package/README.zh-CN.md +5 -0
- package/gui/dist/assets/{index-iWo2gxQ2.js → index-npFbiPU_.js} +1 -1
- package/gui/dist/index.html +1 -1
- package/package.json +1 -1
- package/src/adapters/anthropic.ts +201 -9
- package/src/adapters/google-http.ts +1 -1
- package/src/adapters/kiro-retry.ts +1 -1
- package/src/server/adapter-resolve.ts +2 -2
- package/src/server.ts +3 -3
- package/src/types.ts +3 -1
package/README.ko.md
CHANGED
|
@@ -23,6 +23,11 @@ Claude, Gemini, Grok, GLM, DeepSeek, Kimi, Qwen, Ollama 등 어떤 LLM이든 Cod
|
|
|
23
23
|
|
|
24
24
|
opencodex는 Codex의 Responses API를 프로바이더가 쓰는 프로토콜로 변환해 주는 가벼운 로컬 프록시입니다. streaming, tool 호출, reasoning 토큰, 이미지까지 양방향으로 모두 동작합니다.
|
|
25
25
|
|
|
26
|
+
<p align="center">
|
|
27
|
+
<img src="assets/demo.gif" alt="opencodex 데모 — Codex 앱에서 비-OpenAI 라우팅 모델로 작업 실행" width="820">
|
|
28
|
+
</p>
|
|
29
|
+
<p align="center"><sub><b>Codex에서 어떤 모델이든.</b> 프로바이더만 고르면 끝 — 같은 Codex 워크플로, 다른 두뇌.</sub></p>
|
|
30
|
+
|
|
26
31
|
또한 Codex 인증을 위한 **ChatGPT 계정 풀**을 관리할 수 있습니다. 여러 ChatGPT / Codex 계정을 추가하고,
|
|
27
32
|
대시보드에서 5시간 / 주간 / 30일 쿼터를 갱신하며, 새 세션을 사용량이 가장 적은 정상 계정으로 자동
|
|
28
33
|
라우팅할 수 있습니다. 기존 Codex 스레드는 시작한 계정에 그대로 고정되므로, 긴 SSH·tmux·모바일 연결
|
package/README.md
CHANGED
|
@@ -23,6 +23,11 @@ Use Claude, Gemini, Grok, GLM, DeepSeek, Kimi, Qwen, Ollama, or any other LLM wi
|
|
|
23
23
|
|
|
24
24
|
opencodex is a lightweight local proxy that translates Codex's Responses API into whatever your provider speaks. Streaming, tool calls, reasoning tokens, images — everything works, in both directions.
|
|
25
25
|
|
|
26
|
+
<p align="center">
|
|
27
|
+
<img src="assets/demo.gif" alt="opencodex demo — running a task in the Codex app on a routed non-OpenAI model" width="820">
|
|
28
|
+
</p>
|
|
29
|
+
<p align="center"><sub><b>Codex, running any model.</b> Pick a provider and go — same Codex workflow, different brain.</sub></p>
|
|
30
|
+
|
|
26
31
|
It can also manage a **ChatGPT account pool** for Codex auth. Add multiple ChatGPT / Codex accounts,
|
|
27
32
|
refresh their 5h / weekly / 30d quota in the dashboard, and let new sessions auto-route to the
|
|
28
33
|
lowest-usage healthy account. Existing Codex threads stay pinned to the account that started them,
|
package/README.zh-CN.md
CHANGED
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
|
|
24
24
|
opencodex 是一个轻量级本地代理,把 Codex 的 Responses API 翻译成你的 provider 所讲的协议。streaming、tool 调用、reasoning token、图片 —— 全部双向工作。
|
|
25
25
|
|
|
26
|
+
<p align="center">
|
|
27
|
+
<img src="assets/demo.gif" alt="opencodex 演示 —— 在 Codex 应用中用路由的非 OpenAI 模型执行任务" width="820">
|
|
28
|
+
</p>
|
|
29
|
+
<p align="center"><sub><b>在 Codex 里运行任意模型。</b>选好 provider 即可 —— 同样的 Codex 工作流,不同的大脑。</sub></p>
|
|
30
|
+
|
|
26
31
|
它还能为 Codex 认证管理一个 **ChatGPT 账户池**。添加多个 ChatGPT / Codex 账户,在仪表盘中刷新它们的
|
|
27
32
|
5 小时 / 每周 / 30 天配额,并让新会话自动路由到使用量最低的健康账户。现有 Codex 线程会固定在启动它的
|
|
28
33
|
账户上,因此长时间的 SSH、tmux 或移动端连接的会话不会在对话中途切换账户。
|