@openai/codex-sdk 0.124.0 → 0.125.0-alpha.2
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/dist/index.d.ts +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,8 @@ type Usage = {
|
|
|
123
123
|
cached_input_tokens: number;
|
|
124
124
|
/** The number of output tokens used during the turn. */
|
|
125
125
|
output_tokens: number;
|
|
126
|
+
/** The number of reasoning output tokens used during the turn. */
|
|
127
|
+
reasoning_output_tokens: number;
|
|
126
128
|
};
|
|
127
129
|
/** Emitted when a turn is completed. Typically right after the assistant's response. */
|
|
128
130
|
type TurnCompletedEvent = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openai/codex-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.125.0-alpha.2",
|
|
4
4
|
"description": "TypeScript SDK for Codex APIs.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
},
|
|
65
65
|
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@openai/codex": "0.
|
|
67
|
+
"@openai/codex": "0.125.0-alpha.2"
|
|
68
68
|
}
|
|
69
69
|
}
|