@bitkyc08/opencodex 0.2.2 → 1.9.0
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.md +3 -1
- package/gui/dist/assets/{index-Dt5t57MW.js → index-CDhJ0DI7.js} +1 -1
- package/gui/dist/index.html +1 -1
- package/package.json +3 -1
- package/src/abort.ts +29 -0
- package/src/adapters/anthropic.ts +15 -5
- package/src/adapters/google.ts +27 -11
- package/src/adapters/openai-chat.ts +38 -12
- package/src/adapters/openai-responses.ts +18 -1
- package/src/bridge.ts +155 -17
- package/src/cli.ts +0 -0
- package/src/codex-catalog.ts +102 -11
- package/src/codex-inject.ts +47 -4
- package/src/config.ts +5 -0
- package/src/debug.ts +10 -0
- package/src/errors.ts +47 -0
- package/src/generated/jawcode-model-metadata.ts +69 -0
- package/src/init.ts +5 -32
- package/src/oauth/index.ts +19 -33
- package/src/oauth/key-providers.ts +2 -63
- package/src/providers/derive.ts +163 -0
- package/src/providers/registry.ts +140 -0
- package/src/responses/parser.ts +6 -1
- package/src/server.ts +182 -9
- package/src/types.ts +6 -0
- package/src/vision/describe.ts +6 -1
- package/src/vision/index.ts +2 -1
- package/src/web-search/executor.ts +6 -1
- package/src/web-search/loop.ts +9 -3
- package/src/ws-bridge.ts +359 -0
package/README.md
CHANGED
|
@@ -104,7 +104,7 @@ codex -m "ollama-cloud/glm-5.2" "Write a SQL migration"
|
|
|
104
104
|
| xAI Grok | `openai-chat` | oauth / key |
|
|
105
105
|
| Kimi (Moonshot) | `openai-chat` | oauth / key |
|
|
106
106
|
| Google Gemini | `google` | key |
|
|
107
|
-
| Azure OpenAI | `azure` | key |
|
|
107
|
+
| Azure OpenAI | `azure-openai` | key |
|
|
108
108
|
| Ollama Cloud + 17-provider catalog | `openai-chat` | key |
|
|
109
109
|
| Ollama / vLLM / LM Studio (local) | `openai-chat` | key (usually blank) |
|
|
110
110
|
| Any OpenAI-compatible endpoint | `openai-chat` | key |
|
|
@@ -158,6 +158,8 @@ for every field.
|
|
|
158
158
|
The full developer documentation — architecture, every adapter, the request lifecycle, the sidecars,
|
|
159
159
|
Codex integration, and the CLI/config reference — is an Astro site under [`docs-site/`](./docs-site)
|
|
160
160
|
and published to **[lidge-jun.github.io/opencodex](https://lidge-jun.github.io/opencodex/)**.
|
|
161
|
+
Deep implementation notes live under [`docs/`](./docs), including the Codex App/model catalog path
|
|
162
|
+
that makes routed opencodex models appear in the Codex App picker.
|
|
161
163
|
|
|
162
164
|
## Development
|
|
163
165
|
|