@ai-sdk/xai 3.0.32 → 3.0.33

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @ai-sdk/xai
2
2
 
3
+ ## 3.0.33
4
+
5
+ ### Patch Changes
6
+
7
+ - 4de5a1d: chore: excluded tests from src folder in npm package
8
+ - Updated dependencies [4de5a1d]
9
+ - @ai-sdk/openai-compatible@2.0.18
10
+ - @ai-sdk/provider@3.0.5
11
+ - @ai-sdk/provider-utils@4.0.9
12
+
3
13
  ## 3.0.32
4
14
 
5
15
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2326,7 +2326,7 @@ var xaiTools = {
2326
2326
  };
2327
2327
 
2328
2328
  // src/version.ts
2329
- var VERSION = true ? "3.0.32" : "0.0.0-test";
2329
+ var VERSION = true ? "3.0.33" : "0.0.0-test";
2330
2330
 
2331
2331
  // src/xai-provider.ts
2332
2332
  var xaiErrorStructure = {
package/dist/index.mjs CHANGED
@@ -2336,7 +2336,7 @@ var xaiTools = {
2336
2336
  };
2337
2337
 
2338
2338
  // src/version.ts
2339
- var VERSION = true ? "3.0.32" : "0.0.0-test";
2339
+ var VERSION = true ? "3.0.33" : "0.0.0-test";
2340
2340
 
2341
2341
  // src/xai-provider.ts
2342
2342
  var xaiErrorStructure = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/xai",
3
- "version": "3.0.32",
3
+ "version": "3.0.33",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -10,6 +10,10 @@
10
10
  "dist/**/*",
11
11
  "docs/**/*",
12
12
  "src",
13
+ "!src/**/*.test.ts",
14
+ "!src/**/*.test-d.ts",
15
+ "!src/**/__snapshots__",
16
+ "!src/**/__fixtures__",
13
17
  "CHANGELOG.md",
14
18
  "README.md"
15
19
  ],
@@ -25,16 +29,16 @@
25
29
  }
26
30
  },
27
31
  "dependencies": {
28
- "@ai-sdk/openai-compatible": "2.0.17",
29
- "@ai-sdk/provider-utils": "4.0.8",
30
- "@ai-sdk/provider": "3.0.4"
32
+ "@ai-sdk/openai-compatible": "2.0.18",
33
+ "@ai-sdk/provider": "3.0.5",
34
+ "@ai-sdk/provider-utils": "4.0.9"
31
35
  },
32
36
  "devDependencies": {
33
37
  "@types/node": "20.17.24",
34
38
  "tsup": "^8",
35
39
  "typescript": "5.8.3",
36
40
  "zod": "3.25.76",
37
- "@ai-sdk/test-server": "1.0.2",
41
+ "@ai-sdk/test-server": "1.0.3",
38
42
  "@vercel/ai-tsconfig": "0.0.0"
39
43
  },
40
44
  "peerDependencies": {
@@ -1,243 +0,0 @@
1
- import { convertToXaiChatMessages } from './convert-to-xai-chat-messages';
2
- import { describe, it, expect } from 'vitest';
3
-
4
- describe('convertToXaiChatMessages', () => {
5
- it('should convert simple text messages', () => {
6
- const { messages, warnings } = convertToXaiChatMessages([
7
- { role: 'user', content: [{ type: 'text', text: 'Hello' }] },
8
- ]);
9
-
10
- expect(warnings).toEqual([]);
11
- expect(messages).toEqual([{ role: 'user', content: 'Hello' }]);
12
- });
13
-
14
- it('should convert system messages', () => {
15
- const { messages, warnings } = convertToXaiChatMessages([
16
- { role: 'system', content: 'You are a helpful assistant.' },
17
- ]);
18
-
19
- expect(warnings).toEqual([]);
20
- expect(messages).toEqual([
21
- { role: 'system', content: 'You are a helpful assistant.' },
22
- ]);
23
- });
24
-
25
- it('should convert assistant messages', () => {
26
- const { messages, warnings } = convertToXaiChatMessages([
27
- { role: 'assistant', content: [{ type: 'text', text: 'Hello there!' }] },
28
- ]);
29
-
30
- expect(warnings).toEqual([]);
31
- expect(messages).toEqual([
32
- { role: 'assistant', content: 'Hello there!', tool_calls: undefined },
33
- ]);
34
- });
35
-
36
- it('should convert messages with image parts', () => {
37
- const { messages, warnings } = convertToXaiChatMessages([
38
- {
39
- role: 'user',
40
- content: [
41
- { type: 'text', text: 'What is in this image?' },
42
- {
43
- type: 'file',
44
- mediaType: 'image/png',
45
- data: Buffer.from([0, 1, 2, 3]),
46
- },
47
- ],
48
- },
49
- ]);
50
-
51
- expect(warnings).toEqual([]);
52
- expect(messages).toEqual([
53
- {
54
- role: 'user',
55
- content: [
56
- { type: 'text', text: 'What is in this image?' },
57
- {
58
- type: 'image_url',
59
- image_url: { url: 'data:image/png;base64,AAECAw==' },
60
- },
61
- ],
62
- },
63
- ]);
64
- });
65
-
66
- it('should convert image URLs', () => {
67
- const { messages, warnings } = convertToXaiChatMessages([
68
- {
69
- role: 'user',
70
- content: [
71
- {
72
- type: 'file',
73
- mediaType: 'image/jpeg',
74
- data: new URL('https://example.com/image.jpg'),
75
- },
76
- ],
77
- },
78
- ]);
79
-
80
- expect(warnings).toEqual([]);
81
- expect(messages).toEqual([
82
- {
83
- role: 'user',
84
- content: [
85
- {
86
- type: 'image_url',
87
- image_url: { url: 'https://example.com/image.jpg' },
88
- },
89
- ],
90
- },
91
- ]);
92
- });
93
-
94
- it('should throw error for unsupported file types', () => {
95
- expect(() => {
96
- convertToXaiChatMessages([
97
- {
98
- role: 'user',
99
- content: [
100
- {
101
- type: 'file',
102
- mediaType: 'application/pdf',
103
- data: Buffer.from([0, 1, 2, 3]),
104
- },
105
- ],
106
- },
107
- ]);
108
- }).toThrow('file part media type application/pdf');
109
- });
110
-
111
- it('should convert tool calls and tool responses', () => {
112
- const { messages, warnings } = convertToXaiChatMessages([
113
- {
114
- role: 'assistant',
115
- content: [
116
- {
117
- type: 'tool-call',
118
- toolCallId: 'call_123',
119
- toolName: 'weather',
120
- input: { location: 'Paris' },
121
- },
122
- ],
123
- },
124
- {
125
- role: 'tool',
126
- content: [
127
- {
128
- type: 'tool-result',
129
- toolCallId: 'call_123',
130
- toolName: 'weather',
131
- output: { type: 'json', value: { temperature: 20 } },
132
- },
133
- ],
134
- },
135
- ]);
136
-
137
- expect(warnings).toEqual([]);
138
- expect(messages).toEqual([
139
- {
140
- role: 'assistant',
141
- content: '',
142
- tool_calls: [
143
- {
144
- id: 'call_123',
145
- type: 'function',
146
- function: {
147
- name: 'weather',
148
- arguments: '{"location":"Paris"}',
149
- },
150
- },
151
- ],
152
- },
153
- {
154
- role: 'tool',
155
- tool_call_id: 'call_123',
156
- content: '{"temperature":20}',
157
- },
158
- ]);
159
- });
160
-
161
- it('should handle multiple tool calls in one message', () => {
162
- const { messages, warnings } = convertToXaiChatMessages([
163
- {
164
- role: 'assistant',
165
- content: [
166
- {
167
- type: 'tool-call',
168
- toolCallId: 'call_123',
169
- toolName: 'weather',
170
- input: { location: 'Paris' },
171
- },
172
- {
173
- type: 'tool-call',
174
- toolCallId: 'call_456',
175
- toolName: 'time',
176
- input: { timezone: 'UTC' },
177
- },
178
- ],
179
- },
180
- ]);
181
-
182
- expect(warnings).toEqual([]);
183
- expect(messages).toEqual([
184
- {
185
- role: 'assistant',
186
- content: '',
187
- tool_calls: [
188
- {
189
- id: 'call_123',
190
- type: 'function',
191
- function: {
192
- name: 'weather',
193
- arguments: '{"location":"Paris"}',
194
- },
195
- },
196
- {
197
- id: 'call_456',
198
- type: 'function',
199
- function: {
200
- name: 'time',
201
- arguments: '{"timezone":"UTC"}',
202
- },
203
- },
204
- ],
205
- },
206
- ]);
207
- });
208
-
209
- it('should handle mixed content with text and tool calls', () => {
210
- const { messages, warnings } = convertToXaiChatMessages([
211
- {
212
- role: 'assistant',
213
- content: [
214
- { type: 'text', text: 'Let me check the weather for you.' },
215
- {
216
- type: 'tool-call',
217
- toolCallId: 'call_123',
218
- toolName: 'weather',
219
- input: { location: 'Paris' },
220
- },
221
- ],
222
- },
223
- ]);
224
-
225
- expect(warnings).toEqual([]);
226
- expect(messages).toEqual([
227
- {
228
- role: 'assistant',
229
- content: 'Let me check the weather for you.',
230
- tool_calls: [
231
- {
232
- id: 'call_123',
233
- type: 'function',
234
- function: {
235
- name: 'weather',
236
- arguments: '{"location":"Paris"}',
237
- },
238
- },
239
- ],
240
- },
241
- ]);
242
- });
243
- });
@@ -1,240 +0,0 @@
1
- import { convertXaiChatUsage } from './convert-xai-chat-usage';
2
- import { describe, it, expect } from 'vitest';
3
-
4
- describe('convertXaiChatUsage', () => {
5
- it('should convert basic usage without reasoning tokens', () => {
6
- const result = convertXaiChatUsage({
7
- prompt_tokens: 100,
8
- completion_tokens: 50,
9
- total_tokens: 150,
10
- });
11
-
12
- expect(result).toEqual({
13
- inputTokens: {
14
- total: 100,
15
- noCache: 100,
16
- cacheRead: 0,
17
- cacheWrite: undefined,
18
- },
19
- outputTokens: {
20
- total: 50,
21
- text: 50,
22
- reasoning: 0,
23
- },
24
- raw: {
25
- prompt_tokens: 100,
26
- completion_tokens: 50,
27
- total_tokens: 150,
28
- },
29
- });
30
- });
31
-
32
- it('should convert usage with reasoning tokens', () => {
33
- const result = convertXaiChatUsage({
34
- prompt_tokens: 168,
35
- completion_tokens: 870, // includes reasoning tokens
36
- total_tokens: 1038,
37
- completion_tokens_details: {
38
- reasoning_tokens: 528,
39
- },
40
- });
41
-
42
- expect(result).toEqual({
43
- inputTokens: {
44
- total: 168,
45
- noCache: 168,
46
- cacheRead: 0,
47
- cacheWrite: undefined,
48
- },
49
- outputTokens: {
50
- total: 870, // completion_tokens (includes reasoning)
51
- text: 342, // 870 - 528
52
- reasoning: 528,
53
- },
54
- raw: {
55
- prompt_tokens: 168,
56
- completion_tokens: 870,
57
- total_tokens: 1038,
58
- completion_tokens_details: {
59
- reasoning_tokens: 528,
60
- },
61
- },
62
- });
63
- });
64
-
65
- it('should handle reasoning tokens greater than completion tokens', () => {
66
- // When reasoning tokens are greater, completion_tokens would include them
67
- // This scenario tests edge case where we still get valid results
68
- const result = convertXaiChatUsage({
69
- prompt_tokens: 168,
70
- completion_tokens: 870, // includes reasoning
71
- total_tokens: 1038,
72
- completion_tokens_details: {
73
- reasoning_tokens: 528,
74
- },
75
- });
76
-
77
- expect(result.outputTokens.text).toBe(342); // 870 - 528
78
- expect(result.outputTokens.text).toBeGreaterThanOrEqual(0);
79
- expect(result.outputTokens.total).toBe(870);
80
- });
81
-
82
- it('should convert usage with cached input tokens', () => {
83
- const result = convertXaiChatUsage({
84
- prompt_tokens: 168,
85
- completion_tokens: 1036, // includes reasoning tokens
86
- total_tokens: 1204,
87
- prompt_tokens_details: {
88
- text_tokens: 168,
89
- audio_tokens: 0,
90
- image_tokens: 0,
91
- cached_tokens: 146,
92
- },
93
- completion_tokens_details: {
94
- reasoning_tokens: 458,
95
- },
96
- });
97
-
98
- expect(result).toEqual({
99
- inputTokens: {
100
- total: 168,
101
- noCache: 22, // 168 - 146
102
- cacheRead: 146,
103
- cacheWrite: undefined,
104
- },
105
- outputTokens: {
106
- total: 1036, // completion_tokens (includes reasoning)
107
- text: 578, // 1036 - 458
108
- reasoning: 458,
109
- },
110
- raw: {
111
- prompt_tokens: 168,
112
- completion_tokens: 1036,
113
- total_tokens: 1204,
114
- prompt_tokens_details: {
115
- text_tokens: 168,
116
- audio_tokens: 0,
117
- image_tokens: 0,
118
- cached_tokens: 146,
119
- },
120
- completion_tokens_details: {
121
- reasoning_tokens: 458,
122
- },
123
- },
124
- });
125
- });
126
-
127
- it('should handle null/undefined token details gracefully', () => {
128
- const result = convertXaiChatUsage({
129
- prompt_tokens: 100,
130
- completion_tokens: 200,
131
- total_tokens: 300,
132
- prompt_tokens_details: null,
133
- completion_tokens_details: null,
134
- });
135
-
136
- expect(result.inputTokens.cacheRead).toBe(0);
137
- expect(result.inputTokens.noCache).toBe(100);
138
- expect(result.outputTokens.reasoning).toBe(0);
139
- expect(result.outputTokens.text).toBe(200);
140
- expect(result.outputTokens.total).toBe(200);
141
- });
142
-
143
- it('should handle zero reasoning tokens', () => {
144
- const result = convertXaiChatUsage({
145
- prompt_tokens: 50,
146
- completion_tokens: 100,
147
- total_tokens: 150,
148
- completion_tokens_details: {
149
- reasoning_tokens: 0,
150
- },
151
- });
152
-
153
- expect(result.outputTokens).toEqual({
154
- total: 100,
155
- text: 100,
156
- reasoning: 0,
157
- });
158
- });
159
-
160
- it('should preserve raw usage data', () => {
161
- const rawUsage = {
162
- prompt_tokens: 168,
163
- completion_tokens: 870, // includes reasoning
164
- total_tokens: 1038,
165
- prompt_tokens_details: {
166
- text_tokens: 168,
167
- audio_tokens: 0,
168
- image_tokens: 0,
169
- cached_tokens: 167,
170
- },
171
- completion_tokens_details: {
172
- reasoning_tokens: 528,
173
- audio_tokens: 0,
174
- accepted_prediction_tokens: 0,
175
- rejected_prediction_tokens: 0,
176
- },
177
- };
178
-
179
- const result = convertXaiChatUsage(rawUsage);
180
-
181
- expect(result.raw).toEqual(rawUsage);
182
- });
183
-
184
- it('should handle the issue case with grok-4-fast-reasoning', () => {
185
- // Test case from GitHub issue: grok-4-fast-reasoning returning negative text_output_tokens
186
- // Raw API response format where completion_tokens includes reasoning tokens
187
- const result = convertXaiChatUsage({
188
- prompt_tokens: 279,
189
- completion_tokens: 95, // includes reasoning tokens (6 text + 89 reasoning)
190
- total_tokens: 374,
191
- prompt_tokens_details: {
192
- text_tokens: 279,
193
- audio_tokens: 0,
194
- image_tokens: 0,
195
- cached_tokens: 149,
196
- },
197
- completion_tokens_details: {
198
- reasoning_tokens: 89,
199
- audio_tokens: 0,
200
- accepted_prediction_tokens: 0,
201
- rejected_prediction_tokens: 0,
202
- },
203
- });
204
-
205
- expect(result).toEqual({
206
- inputTokens: {
207
- total: 279,
208
- noCache: 130, // 279 - 149
209
- cacheRead: 149,
210
- cacheWrite: undefined,
211
- },
212
- outputTokens: {
213
- total: 95, // completion_tokens (includes reasoning)
214
- text: 6, // 95 - 89 (should be positive, not -83!)
215
- reasoning: 89,
216
- },
217
- raw: {
218
- prompt_tokens: 279,
219
- completion_tokens: 95,
220
- total_tokens: 374,
221
- prompt_tokens_details: {
222
- text_tokens: 279,
223
- audio_tokens: 0,
224
- image_tokens: 0,
225
- cached_tokens: 149,
226
- },
227
- completion_tokens_details: {
228
- reasoning_tokens: 89,
229
- audio_tokens: 0,
230
- accepted_prediction_tokens: 0,
231
- rejected_prediction_tokens: 0,
232
- },
233
- },
234
- });
235
-
236
- // Verify no negative text tokens
237
- expect(result.outputTokens.text).toBeGreaterThanOrEqual(0);
238
- expect(result.outputTokens.text).toBe(6);
239
- });
240
- });
@@ -1,68 +0,0 @@
1
- {
2
- "created_at": 1761768921,
3
- "id": "5138abcf-4c4e-b0ab-7e0b-f4c81b98f455_us-east-1",
4
- "max_output_tokens": null,
5
- "model": "grok-4-fast-reasoning",
6
- "object": "response",
7
- "output": [
8
- {
9
- "arguments": "{\"code\":\"def fibonacci(n):\\n if n <= 0:\\n return 0\\n elif n == 1:\\n return 1\\n else:\\n a, b = 0, 1\\n for _ in range(2, n + 1):\\n a, b = b, a + b\\n return b\\n\\nprint(fibonacci(10))\"}",
10
- "call_id": "",
11
- "name": "code_execution",
12
- "type": "code_interpreter_call",
13
- "id": "fc_5138abcf-4c4e-b0ab-7e0b-f4c81b98f455_us-east-1_0",
14
- "status": "completed"
15
- },
16
- {
17
- "content": [
18
- {
19
- "type": "output_text",
20
- "text": "55",
21
- "logprobs": [],
22
- "annotations": []
23
- }
24
- ],
25
- "id": "msg_5138abcf-4c4e-b0ab-7e0b-f4c81b98f455_us-east-1",
26
- "role": "assistant",
27
- "type": "message",
28
- "status": "completed"
29
- }
30
- ],
31
- "parallel_tool_calls": true,
32
- "previous_response_id": null,
33
- "reasoning": {
34
- "effort": null,
35
- "summary": null
36
- },
37
- "temperature": null,
38
- "text": {
39
- "format": {
40
- "type": "text"
41
- }
42
- },
43
- "tool_choice": "auto",
44
- "tools": [
45
- {
46
- "type": "code_interpreter"
47
- }
48
- ],
49
- "top_p": null,
50
- "usage": {
51
- "input_tokens": 1606,
52
- "input_tokens_details": {
53
- "cached_tokens": 1235
54
- },
55
- "output_tokens": 292,
56
- "output_tokens_details": {
57
- "reasoning_tokens": 190
58
- },
59
- "total_tokens": 1898,
60
- "num_sources_used": 0,
61
- "num_server_side_tools_used": 1
62
- },
63
- "user": null,
64
- "incomplete_details": null,
65
- "status": "completed",
66
- "store": true,
67
- "metadata": {}
68
- }