@janole/ai-sdk-provider-codex-asp 0.3.1 → 0.3.3

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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  `@janole/ai-sdk-provider-codex-asp` is a [Vercel AI SDK](https://ai-sdk.dev/) v6 custom provider for the Codex App Server Protocol.
4
4
 
5
- Status: POC feature-complete for language model usage. Currently tested with [codex-cli](https://github.com/openai/codex/releases/tag/rust-v0.106.0) 0.106.0.
5
+ Status: POC feature-complete for language model usage. Currently tested with [codex-cli](https://github.com/openai/codex/releases/tag/rust-v0.107.0) 0.107.0.
6
6
 
7
7
  - `LanguageModelV3` provider implementation
8
8
  - Streaming (`streamText`) and non-streaming (`generateText`)
@@ -152,7 +152,13 @@ See the [`examples/`](examples/) directory:
152
152
  - [`cross-call-tools.ts`](examples/cross-call-tools.ts) — Standard AI SDK tools via Codex
153
153
  - [`dynamic-tools.ts`](examples/dynamic-tools.ts) — Provider-level dynamic tools
154
154
  - [`thread-continuation.ts`](examples/thread-continuation.ts) — Multi-turn thread resumption
155
+ - [`multi-step-thread.ts`](examples/multi-step-thread.ts) — Multi-step thread continuation with threadId verification
155
156
  - [`approvals.ts`](examples/approvals.ts) — Command and file-change approval handling
157
+ - [`image-input.ts`](examples/image-input.ts) — Image input with `generateText`
158
+ - [`interrupt.ts`](examples/interrupt.ts) — Mid-turn interrupt via `onSessionCreated`
159
+ - [`list-models.ts`](examples/list-models.ts) — Discover available models via app-server protocol
160
+ - [`mid-turn-injection.ts`](examples/mid-turn-injection.ts) — Mid-turn message injection via `onSessionCreated`
161
+ - [`provider-executed-tools.ts`](examples/provider-executed-tools.ts) — Provider-executed tool calls (server-side commands)
156
162
 
157
163
  Run any example with:
158
164