@ai-sdk/deepseek 2.0.10 → 2.0.12

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.
@@ -1,4106 +0,0 @@
1
- // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
-
3
- exports[`DeepSeekChatLanguageModel > doGenerate > reasoning > should extract text content 1`] = `
4
- {
5
- "content": [
6
- {
7
- "text": "We are asked: "How many 'r's are in the word 'strawberry'?" We need to count the occurrences of the letter 'r' in the word "strawberry". Let's write the word: s-t-r-a-w-b-e-r-r-y. Let's count: positions: 1: s, 2: t, 3: r, 4: a, 5: w, 6: b, 7: e, 8: r, 9: r, 10: y. So there are three 'r's? Wait: at position 3: r, position 8: r, position 9: r. That's three. But sometimes people might think it's two because of pronunciation? But strictly counting letters, it's three. However, let's double-check spelling: "strawberry" is spelled S-T-R-A-W-B-E-R-R-Y. Yes, it has two 'r's at the end? Actually, after 'b' comes 'e', then 'r', then 'r', then 'y'. So indeed three 'r's total. But wait, the initial 'r' is the first one? The word starts with 's', then 't', then 'r'. So that's one, then later two consecutive 'r's. So total three. So answer is 3.
8
-
9
- But the question is phrased: "How many 'r's are in the word 'strawberry'?" So answer is 3.",
10
- "type": "reasoning",
11
- },
12
- {
13
- "text": "The word "strawberry" contains three instances of the letter "r": one after the "t" and two before the "y".",
14
- "type": "text",
15
- },
16
- ],
17
- "finishReason": {
18
- "raw": "stop",
19
- "unified": "stop",
20
- },
21
- "providerMetadata": {
22
- "deepseek": {
23
- "promptCacheHitTokens": 0,
24
- "promptCacheMissTokens": 18,
25
- },
26
- },
27
- "request": {
28
- "body": {
29
- "frequency_penalty": undefined,
30
- "max_tokens": undefined,
31
- "messages": [
32
- {
33
- "content": "Hello",
34
- "role": "user",
35
- },
36
- ],
37
- "model": "deepseek-chat",
38
- "presence_penalty": undefined,
39
- "response_format": undefined,
40
- "stop": undefined,
41
- "temperature": undefined,
42
- "thinking": undefined,
43
- "tool_choice": undefined,
44
- "tools": undefined,
45
- "top_p": undefined,
46
- },
47
- },
48
- "response": {
49
- "body": {
50
- "choices": [
51
- {
52
- "finish_reason": "stop",
53
- "index": 0,
54
- "logprobs": null,
55
- "message": {
56
- "content": "The word "strawberry" contains three instances of the letter "r": one after the "t" and two before the "y".",
57
- "reasoning_content": "We are asked: "How many 'r's are in the word 'strawberry'?" We need to count the occurrences of the letter 'r' in the word "strawberry". Let's write the word: s-t-r-a-w-b-e-r-r-y. Let's count: positions: 1: s, 2: t, 3: r, 4: a, 5: w, 6: b, 7: e, 8: r, 9: r, 10: y. So there are three 'r's? Wait: at position 3: r, position 8: r, position 9: r. That's three. But sometimes people might think it's two because of pronunciation? But strictly counting letters, it's three. However, let's double-check spelling: "strawberry" is spelled S-T-R-A-W-B-E-R-R-Y. Yes, it has two 'r's at the end? Actually, after 'b' comes 'e', then 'r', then 'r', then 'y'. So indeed three 'r's total. But wait, the initial 'r' is the first one? The word starts with 's', then 't', then 'r'. So that's one, then later two consecutive 'r's. So total three. So answer is 3.
58
-
59
- But the question is phrased: "How many 'r's are in the word 'strawberry'?" So answer is 3.",
60
- "role": "assistant",
61
- },
62
- },
63
- ],
64
- "created": 1764660903,
65
- "id": "945bb10c-9bf3-47ff-a2a2-43bbe9705c72",
66
- "model": "deepseek-reasoner",
67
- "object": "chat.completion",
68
- "system_fingerprint": "fp_eaab8d114b_prod0820_fp8_kvcache",
69
- "usage": {
70
- "completion_tokens": 345,
71
- "completion_tokens_details": {
72
- "reasoning_tokens": 315,
73
- },
74
- "prompt_cache_hit_tokens": 0,
75
- "prompt_cache_miss_tokens": 18,
76
- "prompt_tokens": 18,
77
- "prompt_tokens_details": {
78
- "cached_tokens": 0,
79
- },
80
- "total_tokens": 363,
81
- },
82
- },
83
- "headers": {
84
- "content-length": "1596",
85
- "content-type": "application/json",
86
- },
87
- "id": "945bb10c-9bf3-47ff-a2a2-43bbe9705c72",
88
- "modelId": "deepseek-reasoner",
89
- "timestamp": 2025-12-02T07:35:03.000Z,
90
- },
91
- "usage": {
92
- "inputTokens": {
93
- "cacheRead": 0,
94
- "cacheWrite": undefined,
95
- "noCache": 18,
96
- "total": 18,
97
- },
98
- "outputTokens": {
99
- "reasoning": 315,
100
- "text": 30,
101
- "total": 345,
102
- },
103
- "raw": {
104
- "completion_tokens": 345,
105
- "completion_tokens_details": {
106
- "reasoning_tokens": 315,
107
- },
108
- "prompt_cache_hit_tokens": 0,
109
- "prompt_cache_miss_tokens": 18,
110
- "prompt_tokens": 18,
111
- "total_tokens": 363,
112
- },
113
- },
114
- "warnings": [],
115
- }
116
- `;
117
-
118
- exports[`DeepSeekChatLanguageModel > doGenerate > text > should extract text content 1`] = `
119
- {
120
- "content": [
121
- {
122
- "text": "## **Holiday Name: Gratitude of Small Things Day (GST Day)**
123
-
124
- **Date:** The first Saturday after the Spring Equinox (in the Northern Hemisphere) / the first Saturday after the Autumn Equinox (in the Southern Hemisphere). It is intentionally placed at a time of seasonal transition, encouraging people to pause and appreciate the subtle, often overlooked details of life.
125
-
126
- **Core Philosophy:** In a world focused on grand achievements and major events, GST Day celebrates the tiny, mundane, yet profoundly beautiful moments, objects, and sensations that form the quiet fabric of our existence. The motto is: *"Notice the thread, and you see the tapestry."*
127
-
128
- ---
129
-
130
- ### **Traditions & Practices:**
131
-
132
- **1. The "Quiet Hour" & Offering Bowl:**
133
- The holiday begins at sunrise with a "Quiet Hour." Individuals or households sit in a comfortable space with a small, empty bowl (the "Offering Bowl"). In silence, they reflect on the past year, noting not major events, but **small, specific gratitudes**: the sound of rain on a specific afternoon, the warmth of a mug in their hands, the scent of a loved one's laundry detergent, the way light fell through a window. They write each on a tiny slip of paper and place it in the bowl. These are not shared aloud; the act is purely personal and reflective.
134
-
135
- **2. The "Micro-Gift" Exchange:**
136
- Instead of lavish presents, people exchange",
137
- "type": "text",
138
- },
139
- ],
140
- "finishReason": {
141
- "raw": "length",
142
- "unified": "length",
143
- },
144
- "providerMetadata": {
145
- "deepseek": {
146
- "promptCacheHitTokens": 0,
147
- "promptCacheMissTokens": 13,
148
- },
149
- },
150
- "request": {
151
- "body": {
152
- "frequency_penalty": undefined,
153
- "max_tokens": undefined,
154
- "messages": [
155
- {
156
- "content": "Hello",
157
- "role": "user",
158
- },
159
- ],
160
- "model": "deepseek-chat",
161
- "presence_penalty": undefined,
162
- "response_format": undefined,
163
- "stop": undefined,
164
- "temperature": undefined,
165
- "thinking": undefined,
166
- "tool_choice": undefined,
167
- "tools": undefined,
168
- "top_p": undefined,
169
- },
170
- },
171
- "response": {
172
- "body": {
173
- "choices": [
174
- {
175
- "finish_reason": "length",
176
- "index": 0,
177
- "logprobs": null,
178
- "message": {
179
- "content": "## **Holiday Name: Gratitude of Small Things Day (GST Day)**
180
-
181
- **Date:** The first Saturday after the Spring Equinox (in the Northern Hemisphere) / the first Saturday after the Autumn Equinox (in the Southern Hemisphere). It is intentionally placed at a time of seasonal transition, encouraging people to pause and appreciate the subtle, often overlooked details of life.
182
-
183
- **Core Philosophy:** In a world focused on grand achievements and major events, GST Day celebrates the tiny, mundane, yet profoundly beautiful moments, objects, and sensations that form the quiet fabric of our existence. The motto is: *"Notice the thread, and you see the tapestry."*
184
-
185
- ---
186
-
187
- ### **Traditions & Practices:**
188
-
189
- **1. The "Quiet Hour" & Offering Bowl:**
190
- The holiday begins at sunrise with a "Quiet Hour." Individuals or households sit in a comfortable space with a small, empty bowl (the "Offering Bowl"). In silence, they reflect on the past year, noting not major events, but **small, specific gratitudes**: the sound of rain on a specific afternoon, the warmth of a mug in their hands, the scent of a loved one's laundry detergent, the way light fell through a window. They write each on a tiny slip of paper and place it in the bowl. These are not shared aloud; the act is purely personal and reflective.
191
-
192
- **2. The "Micro-Gift" Exchange:**
193
- Instead of lavish presents, people exchange",
194
- "role": "assistant",
195
- },
196
- },
197
- ],
198
- "created": 1764656316,
199
- "id": "00f10ecd-60b3-4707-b5db-e4bcadf7aea1",
200
- "model": "deepseek-chat",
201
- "object": "chat.completion",
202
- "system_fingerprint": "fp_eaab8d114b_prod0820_fp8_kvcache",
203
- "usage": {
204
- "completion_tokens": 300,
205
- "prompt_cache_hit_tokens": 0,
206
- "prompt_cache_miss_tokens": 13,
207
- "prompt_tokens": 13,
208
- "prompt_tokens_details": {
209
- "cached_tokens": 0,
210
- },
211
- "total_tokens": 313,
212
- },
213
- },
214
- "headers": {
215
- "content-length": "1857",
216
- "content-type": "application/json",
217
- },
218
- "id": "00f10ecd-60b3-4707-b5db-e4bcadf7aea1",
219
- "modelId": "deepseek-chat",
220
- "timestamp": 2025-12-02T06:18:36.000Z,
221
- },
222
- "usage": {
223
- "inputTokens": {
224
- "cacheRead": 0,
225
- "cacheWrite": undefined,
226
- "noCache": 13,
227
- "total": 13,
228
- },
229
- "outputTokens": {
230
- "reasoning": 0,
231
- "text": 300,
232
- "total": 300,
233
- },
234
- "raw": {
235
- "completion_tokens": 300,
236
- "prompt_cache_hit_tokens": 0,
237
- "prompt_cache_miss_tokens": 13,
238
- "prompt_tokens": 13,
239
- "total_tokens": 313,
240
- },
241
- },
242
- "warnings": [],
243
- }
244
- `;
245
-
246
- exports[`DeepSeekChatLanguageModel > doGenerate > tool call > json response format > should extract text content 1`] = `
247
- {
248
- "content": [
249
- {
250
- "text": "I have the result from the weather tool. It returned a JSON object with location, condition, and temperature. I need to reply with JSON object ONLY. The assistant's response should be the JSON output. So I should output exactly that JSON? Or perhaps wrap it in some way? The instruction says "Reply with JSON object ONLY." Probably I should output the result as is, or maybe a structured response. But the tool result is already JSON. I think I should output that JSON directly. However, I need to ensure it's a valid response. Let me output the JSON object.",
251
- "type": "reasoning",
252
- },
253
- {
254
- "text": "{
255
- "location": "San Francisco",
256
- "condition": "cloudy",
257
- "temperature": 7
258
- }",
259
- "type": "text",
260
- },
261
- ],
262
- "finishReason": {
263
- "raw": "stop",
264
- "unified": "stop",
265
- },
266
- "providerMetadata": {
267
- "deepseek": {
268
- "promptCacheHitTokens": 320,
269
- "promptCacheMissTokens": 175,
270
- },
271
- },
272
- "request": {
273
- "body": {
274
- "frequency_penalty": undefined,
275
- "max_tokens": undefined,
276
- "messages": [
277
- {
278
- "content": "Return JSON.",
279
- "role": "system",
280
- },
281
- {
282
- "content": "Hello",
283
- "role": "user",
284
- },
285
- ],
286
- "model": "deepseek-reasoner",
287
- "presence_penalty": undefined,
288
- "response_format": {
289
- "type": "json_object",
290
- },
291
- "stop": undefined,
292
- "temperature": undefined,
293
- "thinking": {
294
- "type": "enabled",
295
- },
296
- "tool_choice": undefined,
297
- "tools": [
298
- {
299
- "function": {
300
- "description": undefined,
301
- "name": "weather",
302
- "parameters": {
303
- "$schema": "http://json-schema.org/draft-07/schema#",
304
- "additionalProperties": false,
305
- "properties": {
306
- "location": {
307
- "type": "string",
308
- },
309
- },
310
- "required": [
311
- "location",
312
- ],
313
- "type": "object",
314
- },
315
- },
316
- "type": "function",
317
- },
318
- ],
319
- "top_p": undefined,
320
- },
321
- },
322
- "response": {
323
- "body": {
324
- "choices": [
325
- {
326
- "finish_reason": "stop",
327
- "index": 0,
328
- "logprobs": null,
329
- "message": {
330
- "content": "{
331
- "location": "San Francisco",
332
- "condition": "cloudy",
333
- "temperature": 7
334
- }",
335
- "reasoning_content": "I have the result from the weather tool. It returned a JSON object with location, condition, and temperature. I need to reply with JSON object ONLY. The assistant's response should be the JSON output. So I should output exactly that JSON? Or perhaps wrap it in some way? The instruction says "Reply with JSON object ONLY." Probably I should output the result as is, or maybe a structured response. But the tool result is already JSON. I think I should output that JSON directly. However, I need to ensure it's a valid response. Let me output the JSON object.",
336
- "role": "assistant",
337
- },
338
- },
339
- ],
340
- "created": 1764681341,
341
- "id": "f03bc170-b375-4561-9685-35182c8152c5",
342
- "model": "deepseek-reasoner",
343
- "object": "chat.completion",
344
- "system_fingerprint": "fp_eaab8d114b_prod0820_fp8_kvcache",
345
- "usage": {
346
- "completion_tokens": 144,
347
- "completion_tokens_details": {
348
- "reasoning_tokens": 118,
349
- },
350
- "prompt_cache_hit_tokens": 320,
351
- "prompt_cache_miss_tokens": 175,
352
- "prompt_tokens": 495,
353
- "prompt_tokens_details": {
354
- "cached_tokens": 320,
355
- },
356
- "total_tokens": 639,
357
- },
358
- },
359
- "headers": {
360
- "content-length": "1194",
361
- "content-type": "application/json",
362
- },
363
- "id": "f03bc170-b375-4561-9685-35182c8152c5",
364
- "modelId": "deepseek-reasoner",
365
- "timestamp": 2025-12-02T13:15:41.000Z,
366
- },
367
- "usage": {
368
- "inputTokens": {
369
- "cacheRead": 320,
370
- "cacheWrite": undefined,
371
- "noCache": 175,
372
- "total": 495,
373
- },
374
- "outputTokens": {
375
- "reasoning": 118,
376
- "text": 26,
377
- "total": 144,
378
- },
379
- "raw": {
380
- "completion_tokens": 144,
381
- "completion_tokens_details": {
382
- "reasoning_tokens": 118,
383
- },
384
- "prompt_cache_hit_tokens": 320,
385
- "prompt_cache_miss_tokens": 175,
386
- "prompt_tokens": 495,
387
- "total_tokens": 639,
388
- },
389
- },
390
- "warnings": [],
391
- }
392
- `;
393
-
394
- exports[`DeepSeekChatLanguageModel > doGenerate > tool call > should extract tool call content 1`] = `
395
- {
396
- "content": [
397
- {
398
- "text": "The user is asking for the weather in San Francisco. I have a weather tool available that can get weather information for a location. I should use this tool with the location parameter set to "San Francisco". Let me call the weather function.",
399
- "type": "reasoning",
400
- },
401
- {
402
- "input": "{"location": "San Francisco"}",
403
- "toolCallId": "call_00_9V0vrf86Pc9aelHCJMZqnJBo",
404
- "toolName": "weather",
405
- "type": "tool-call",
406
- },
407
- ],
408
- "finishReason": {
409
- "raw": "tool_calls",
410
- "unified": "tool-calls",
411
- },
412
- "providerMetadata": {
413
- "deepseek": {
414
- "promptCacheHitTokens": 320,
415
- "promptCacheMissTokens": 19,
416
- },
417
- },
418
- "request": {
419
- "body": {
420
- "frequency_penalty": undefined,
421
- "max_tokens": undefined,
422
- "messages": [
423
- {
424
- "content": "Hello",
425
- "role": "user",
426
- },
427
- ],
428
- "model": "deepseek-reasoner",
429
- "presence_penalty": undefined,
430
- "response_format": undefined,
431
- "stop": undefined,
432
- "temperature": undefined,
433
- "thinking": {
434
- "type": "enabled",
435
- },
436
- "tool_choice": undefined,
437
- "tools": [
438
- {
439
- "function": {
440
- "description": undefined,
441
- "name": "weather",
442
- "parameters": {
443
- "$schema": "http://json-schema.org/draft-07/schema#",
444
- "additionalProperties": false,
445
- "properties": {
446
- "location": {
447
- "type": "string",
448
- },
449
- },
450
- "required": [
451
- "location",
452
- ],
453
- "type": "object",
454
- },
455
- },
456
- "type": "function",
457
- },
458
- ],
459
- "top_p": undefined,
460
- },
461
- },
462
- "response": {
463
- "body": {
464
- "choices": [
465
- {
466
- "finish_reason": "tool_calls",
467
- "index": 0,
468
- "logprobs": null,
469
- "message": {
470
- "content": "",
471
- "reasoning_content": "The user is asking for the weather in San Francisco. I have a weather tool available that can get weather information for a location. I should use this tool with the location parameter set to "San Francisco". Let me call the weather function.",
472
- "role": "assistant",
473
- "tool_calls": [
474
- {
475
- "function": {
476
- "arguments": "{"location": "San Francisco"}",
477
- "name": "weather",
478
- },
479
- "id": "call_00_9V0vrf86Pc9aelHCJMZqnJBo",
480
- "index": 0,
481
- "type": "function",
482
- },
483
- ],
484
- },
485
- },
486
- ],
487
- "created": 1764665845,
488
- "id": "7a630f5b-b7e6-4878-82f8-d77db164d42b",
489
- "model": "deepseek-reasoner",
490
- "object": "chat.completion",
491
- "system_fingerprint": "fp_eaab8d114b_prod0820_fp8_kvcache",
492
- "usage": {
493
- "completion_tokens": 92,
494
- "completion_tokens_details": {
495
- "reasoning_tokens": 48,
496
- },
497
- "prompt_cache_hit_tokens": 320,
498
- "prompt_cache_miss_tokens": 19,
499
- "prompt_tokens": 339,
500
- "prompt_tokens_details": {
501
- "cached_tokens": 320,
502
- },
503
- "total_tokens": 431,
504
- },
505
- },
506
- "headers": {
507
- "content-length": "952",
508
- "content-type": "application/json",
509
- },
510
- "id": "7a630f5b-b7e6-4878-82f8-d77db164d42b",
511
- "modelId": "deepseek-reasoner",
512
- "timestamp": 2025-12-02T08:57:25.000Z,
513
- },
514
- "usage": {
515
- "inputTokens": {
516
- "cacheRead": 320,
517
- "cacheWrite": undefined,
518
- "noCache": 19,
519
- "total": 339,
520
- },
521
- "outputTokens": {
522
- "reasoning": 48,
523
- "text": 44,
524
- "total": 92,
525
- },
526
- "raw": {
527
- "completion_tokens": 92,
528
- "completion_tokens_details": {
529
- "reasoning_tokens": 48,
530
- },
531
- "prompt_cache_hit_tokens": 320,
532
- "prompt_cache_miss_tokens": 19,
533
- "prompt_tokens": 339,
534
- "total_tokens": 431,
535
- },
536
- },
537
- "warnings": [],
538
- }
539
- `;
540
-
541
- exports[`DeepSeekChatLanguageModel > doStream > reasoning > should stream reasoning 1`] = `
542
- [
543
- {
544
- "type": "stream-start",
545
- "warnings": [],
546
- },
547
- {
548
- "id": "cac7192e-e619-40c6-96b0-ed4276bc03ac",
549
- "modelId": "deepseek-reasoner",
550
- "timestamp": 2025-12-02T07:50:32.000Z,
551
- "type": "response-metadata",
552
- },
553
- {
554
- "id": "reasoning-0",
555
- "type": "reasoning-start",
556
- },
557
- {
558
- "delta": "We",
559
- "id": "reasoning-0",
560
- "type": "reasoning-delta",
561
- },
562
- {
563
- "delta": " need",
564
- "id": "reasoning-0",
565
- "type": "reasoning-delta",
566
- },
567
- {
568
- "delta": " to",
569
- "id": "reasoning-0",
570
- "type": "reasoning-delta",
571
- },
572
- {
573
- "delta": " count",
574
- "id": "reasoning-0",
575
- "type": "reasoning-delta",
576
- },
577
- {
578
- "delta": " the",
579
- "id": "reasoning-0",
580
- "type": "reasoning-delta",
581
- },
582
- {
583
- "delta": " number",
584
- "id": "reasoning-0",
585
- "type": "reasoning-delta",
586
- },
587
- {
588
- "delta": " of",
589
- "id": "reasoning-0",
590
- "type": "reasoning-delta",
591
- },
592
- {
593
- "delta": " the",
594
- "id": "reasoning-0",
595
- "type": "reasoning-delta",
596
- },
597
- {
598
- "delta": " letter",
599
- "id": "reasoning-0",
600
- "type": "reasoning-delta",
601
- },
602
- {
603
- "delta": " "",
604
- "id": "reasoning-0",
605
- "type": "reasoning-delta",
606
- },
607
- {
608
- "delta": "r",
609
- "id": "reasoning-0",
610
- "type": "reasoning-delta",
611
- },
612
- {
613
- "delta": """,
614
- "id": "reasoning-0",
615
- "type": "reasoning-delta",
616
- },
617
- {
618
- "delta": " in",
619
- "id": "reasoning-0",
620
- "type": "reasoning-delta",
621
- },
622
- {
623
- "delta": " the",
624
- "id": "reasoning-0",
625
- "type": "reasoning-delta",
626
- },
627
- {
628
- "delta": " word",
629
- "id": "reasoning-0",
630
- "type": "reasoning-delta",
631
- },
632
- {
633
- "delta": " "",
634
- "id": "reasoning-0",
635
- "type": "reasoning-delta",
636
- },
637
- {
638
- "delta": "st",
639
- "id": "reasoning-0",
640
- "type": "reasoning-delta",
641
- },
642
- {
643
- "delta": "raw",
644
- "id": "reasoning-0",
645
- "type": "reasoning-delta",
646
- },
647
- {
648
- "delta": "berry",
649
- "id": "reasoning-0",
650
- "type": "reasoning-delta",
651
- },
652
- {
653
- "delta": "".",
654
- "id": "reasoning-0",
655
- "type": "reasoning-delta",
656
- },
657
- {
658
- "delta": " The",
659
- "id": "reasoning-0",
660
- "type": "reasoning-delta",
661
- },
662
- {
663
- "delta": " word",
664
- "id": "reasoning-0",
665
- "type": "reasoning-delta",
666
- },
667
- {
668
- "delta": " is",
669
- "id": "reasoning-0",
670
- "type": "reasoning-delta",
671
- },
672
- {
673
- "delta": " spelled",
674
- "id": "reasoning-0",
675
- "type": "reasoning-delta",
676
- },
677
- {
678
- "delta": ":",
679
- "id": "reasoning-0",
680
- "type": "reasoning-delta",
681
- },
682
- {
683
- "delta": " s",
684
- "id": "reasoning-0",
685
- "type": "reasoning-delta",
686
- },
687
- {
688
- "delta": "-t",
689
- "id": "reasoning-0",
690
- "type": "reasoning-delta",
691
- },
692
- {
693
- "delta": "-r",
694
- "id": "reasoning-0",
695
- "type": "reasoning-delta",
696
- },
697
- {
698
- "delta": "-a",
699
- "id": "reasoning-0",
700
- "type": "reasoning-delta",
701
- },
702
- {
703
- "delta": "-w",
704
- "id": "reasoning-0",
705
- "type": "reasoning-delta",
706
- },
707
- {
708
- "delta": "-b",
709
- "id": "reasoning-0",
710
- "type": "reasoning-delta",
711
- },
712
- {
713
- "delta": "-e",
714
- "id": "reasoning-0",
715
- "type": "reasoning-delta",
716
- },
717
- {
718
- "delta": "-r",
719
- "id": "reasoning-0",
720
- "type": "reasoning-delta",
721
- },
722
- {
723
- "delta": "-r",
724
- "id": "reasoning-0",
725
- "type": "reasoning-delta",
726
- },
727
- {
728
- "delta": "-y",
729
- "id": "reasoning-0",
730
- "type": "reasoning-delta",
731
- },
732
- {
733
- "delta": ".",
734
- "id": "reasoning-0",
735
- "type": "reasoning-delta",
736
- },
737
- {
738
- "delta": " Let",
739
- "id": "reasoning-0",
740
- "type": "reasoning-delta",
741
- },
742
- {
743
- "delta": "'s",
744
- "id": "reasoning-0",
745
- "type": "reasoning-delta",
746
- },
747
- {
748
- "delta": " list",
749
- "id": "reasoning-0",
750
- "type": "reasoning-delta",
751
- },
752
- {
753
- "delta": " the",
754
- "id": "reasoning-0",
755
- "type": "reasoning-delta",
756
- },
757
- {
758
- "delta": " letters",
759
- "id": "reasoning-0",
760
- "type": "reasoning-delta",
761
- },
762
- {
763
- "delta": " and",
764
- "id": "reasoning-0",
765
- "type": "reasoning-delta",
766
- },
767
- {
768
- "delta": " count",
769
- "id": "reasoning-0",
770
- "type": "reasoning-delta",
771
- },
772
- {
773
- "delta": " the",
774
- "id": "reasoning-0",
775
- "type": "reasoning-delta",
776
- },
777
- {
778
- "delta": " "",
779
- "id": "reasoning-0",
780
- "type": "reasoning-delta",
781
- },
782
- {
783
- "delta": "r",
784
- "id": "reasoning-0",
785
- "type": "reasoning-delta",
786
- },
787
- {
788
- "delta": ""s",
789
- "id": "reasoning-0",
790
- "type": "reasoning-delta",
791
- },
792
- {
793
- "delta": ":
794
-
795
- ",
796
- "id": "reasoning-0",
797
- "type": "reasoning-delta",
798
- },
799
- {
800
- "delta": "Position",
801
- "id": "reasoning-0",
802
- "type": "reasoning-delta",
803
- },
804
- {
805
- "delta": " ",
806
- "id": "reasoning-0",
807
- "type": "reasoning-delta",
808
- },
809
- {
810
- "delta": "1",
811
- "id": "reasoning-0",
812
- "type": "reasoning-delta",
813
- },
814
- {
815
- "delta": ":",
816
- "id": "reasoning-0",
817
- "type": "reasoning-delta",
818
- },
819
- {
820
- "delta": " s",
821
- "id": "reasoning-0",
822
- "type": "reasoning-delta",
823
- },
824
- {
825
- "delta": "
826
- ",
827
- "id": "reasoning-0",
828
- "type": "reasoning-delta",
829
- },
830
- {
831
- "delta": "2",
832
- "id": "reasoning-0",
833
- "type": "reasoning-delta",
834
- },
835
- {
836
- "delta": ":",
837
- "id": "reasoning-0",
838
- "type": "reasoning-delta",
839
- },
840
- {
841
- "delta": " t",
842
- "id": "reasoning-0",
843
- "type": "reasoning-delta",
844
- },
845
- {
846
- "delta": "
847
- ",
848
- "id": "reasoning-0",
849
- "type": "reasoning-delta",
850
- },
851
- {
852
- "delta": "3",
853
- "id": "reasoning-0",
854
- "type": "reasoning-delta",
855
- },
856
- {
857
- "delta": ":",
858
- "id": "reasoning-0",
859
- "type": "reasoning-delta",
860
- },
861
- {
862
- "delta": " r",
863
- "id": "reasoning-0",
864
- "type": "reasoning-delta",
865
- },
866
- {
867
- "delta": " (",
868
- "id": "reasoning-0",
869
- "type": "reasoning-delta",
870
- },
871
- {
872
- "delta": "first",
873
- "id": "reasoning-0",
874
- "type": "reasoning-delta",
875
- },
876
- {
877
- "delta": " r",
878
- "id": "reasoning-0",
879
- "type": "reasoning-delta",
880
- },
881
- {
882
- "delta": ")
883
- ",
884
- "id": "reasoning-0",
885
- "type": "reasoning-delta",
886
- },
887
- {
888
- "delta": "4",
889
- "id": "reasoning-0",
890
- "type": "reasoning-delta",
891
- },
892
- {
893
- "delta": ":",
894
- "id": "reasoning-0",
895
- "type": "reasoning-delta",
896
- },
897
- {
898
- "delta": " a",
899
- "id": "reasoning-0",
900
- "type": "reasoning-delta",
901
- },
902
- {
903
- "delta": "
904
- ",
905
- "id": "reasoning-0",
906
- "type": "reasoning-delta",
907
- },
908
- {
909
- "delta": "5",
910
- "id": "reasoning-0",
911
- "type": "reasoning-delta",
912
- },
913
- {
914
- "delta": ":",
915
- "id": "reasoning-0",
916
- "type": "reasoning-delta",
917
- },
918
- {
919
- "delta": " w",
920
- "id": "reasoning-0",
921
- "type": "reasoning-delta",
922
- },
923
- {
924
- "delta": "
925
- ",
926
- "id": "reasoning-0",
927
- "type": "reasoning-delta",
928
- },
929
- {
930
- "delta": "6",
931
- "id": "reasoning-0",
932
- "type": "reasoning-delta",
933
- },
934
- {
935
- "delta": ":",
936
- "id": "reasoning-0",
937
- "type": "reasoning-delta",
938
- },
939
- {
940
- "delta": " b",
941
- "id": "reasoning-0",
942
- "type": "reasoning-delta",
943
- },
944
- {
945
- "delta": "
946
- ",
947
- "id": "reasoning-0",
948
- "type": "reasoning-delta",
949
- },
950
- {
951
- "delta": "7",
952
- "id": "reasoning-0",
953
- "type": "reasoning-delta",
954
- },
955
- {
956
- "delta": ":",
957
- "id": "reasoning-0",
958
- "type": "reasoning-delta",
959
- },
960
- {
961
- "delta": " e",
962
- "id": "reasoning-0",
963
- "type": "reasoning-delta",
964
- },
965
- {
966
- "delta": "
967
- ",
968
- "id": "reasoning-0",
969
- "type": "reasoning-delta",
970
- },
971
- {
972
- "delta": "8",
973
- "id": "reasoning-0",
974
- "type": "reasoning-delta",
975
- },
976
- {
977
- "delta": ":",
978
- "id": "reasoning-0",
979
- "type": "reasoning-delta",
980
- },
981
- {
982
- "delta": " r",
983
- "id": "reasoning-0",
984
- "type": "reasoning-delta",
985
- },
986
- {
987
- "delta": " (",
988
- "id": "reasoning-0",
989
- "type": "reasoning-delta",
990
- },
991
- {
992
- "delta": "second",
993
- "id": "reasoning-0",
994
- "type": "reasoning-delta",
995
- },
996
- {
997
- "delta": " r",
998
- "id": "reasoning-0",
999
- "type": "reasoning-delta",
1000
- },
1001
- {
1002
- "delta": ")
1003
- ",
1004
- "id": "reasoning-0",
1005
- "type": "reasoning-delta",
1006
- },
1007
- {
1008
- "delta": "9",
1009
- "id": "reasoning-0",
1010
- "type": "reasoning-delta",
1011
- },
1012
- {
1013
- "delta": ":",
1014
- "id": "reasoning-0",
1015
- "type": "reasoning-delta",
1016
- },
1017
- {
1018
- "delta": " r",
1019
- "id": "reasoning-0",
1020
- "type": "reasoning-delta",
1021
- },
1022
- {
1023
- "delta": " (",
1024
- "id": "reasoning-0",
1025
- "type": "reasoning-delta",
1026
- },
1027
- {
1028
- "delta": "third",
1029
- "id": "reasoning-0",
1030
- "type": "reasoning-delta",
1031
- },
1032
- {
1033
- "delta": " r",
1034
- "id": "reasoning-0",
1035
- "type": "reasoning-delta",
1036
- },
1037
- {
1038
- "delta": ")
1039
- ",
1040
- "id": "reasoning-0",
1041
- "type": "reasoning-delta",
1042
- },
1043
- {
1044
- "delta": "10",
1045
- "id": "reasoning-0",
1046
- "type": "reasoning-delta",
1047
- },
1048
- {
1049
- "delta": ":",
1050
- "id": "reasoning-0",
1051
- "type": "reasoning-delta",
1052
- },
1053
- {
1054
- "delta": " y",
1055
- "id": "reasoning-0",
1056
- "type": "reasoning-delta",
1057
- },
1058
- {
1059
- "delta": "
1060
-
1061
- ",
1062
- "id": "reasoning-0",
1063
- "type": "reasoning-delta",
1064
- },
1065
- {
1066
- "delta": "So",
1067
- "id": "reasoning-0",
1068
- "type": "reasoning-delta",
1069
- },
1070
- {
1071
- "delta": " there",
1072
- "id": "reasoning-0",
1073
- "type": "reasoning-delta",
1074
- },
1075
- {
1076
- "delta": " are",
1077
- "id": "reasoning-0",
1078
- "type": "reasoning-delta",
1079
- },
1080
- {
1081
- "delta": " three",
1082
- "id": "reasoning-0",
1083
- "type": "reasoning-delta",
1084
- },
1085
- {
1086
- "delta": " "",
1087
- "id": "reasoning-0",
1088
- "type": "reasoning-delta",
1089
- },
1090
- {
1091
- "delta": "r",
1092
- "id": "reasoning-0",
1093
- "type": "reasoning-delta",
1094
- },
1095
- {
1096
- "delta": ""s",
1097
- "id": "reasoning-0",
1098
- "type": "reasoning-delta",
1099
- },
1100
- {
1101
- "delta": ".",
1102
- "id": "reasoning-0",
1103
- "type": "reasoning-delta",
1104
- },
1105
- {
1106
- "delta": " But",
1107
- "id": "reasoning-0",
1108
- "type": "reasoning-delta",
1109
- },
1110
- {
1111
- "delta": " wait",
1112
- "id": "reasoning-0",
1113
- "type": "reasoning-delta",
1114
- },
1115
- {
1116
- "delta": ",",
1117
- "id": "reasoning-0",
1118
- "type": "reasoning-delta",
1119
- },
1120
- {
1121
- "delta": " let",
1122
- "id": "reasoning-0",
1123
- "type": "reasoning-delta",
1124
- },
1125
- {
1126
- "delta": "'s",
1127
- "id": "reasoning-0",
1128
- "type": "reasoning-delta",
1129
- },
1130
- {
1131
- "delta": " double",
1132
- "id": "reasoning-0",
1133
- "type": "reasoning-delta",
1134
- },
1135
- {
1136
- "delta": "-check",
1137
- "id": "reasoning-0",
1138
- "type": "reasoning-delta",
1139
- },
1140
- {
1141
- "delta": ":",
1142
- "id": "reasoning-0",
1143
- "type": "reasoning-delta",
1144
- },
1145
- {
1146
- "delta": " "",
1147
- "id": "reasoning-0",
1148
- "type": "reasoning-delta",
1149
- },
1150
- {
1151
- "delta": "st",
1152
- "id": "reasoning-0",
1153
- "type": "reasoning-delta",
1154
- },
1155
- {
1156
- "delta": "raw",
1157
- "id": "reasoning-0",
1158
- "type": "reasoning-delta",
1159
- },
1160
- {
1161
- "delta": "berry",
1162
- "id": "reasoning-0",
1163
- "type": "reasoning-delta",
1164
- },
1165
- {
1166
- "delta": """,
1167
- "id": "reasoning-0",
1168
- "type": "reasoning-delta",
1169
- },
1170
- {
1171
- "delta": " indeed",
1172
- "id": "reasoning-0",
1173
- "type": "reasoning-delta",
1174
- },
1175
- {
1176
- "delta": " has",
1177
- "id": "reasoning-0",
1178
- "type": "reasoning-delta",
1179
- },
1180
- {
1181
- "delta": " three",
1182
- "id": "reasoning-0",
1183
- "type": "reasoning-delta",
1184
- },
1185
- {
1186
- "delta": " "",
1187
- "id": "reasoning-0",
1188
- "type": "reasoning-delta",
1189
- },
1190
- {
1191
- "delta": "r",
1192
- "id": "reasoning-0",
1193
- "type": "reasoning-delta",
1194
- },
1195
- {
1196
- "delta": ""s",
1197
- "id": "reasoning-0",
1198
- "type": "reasoning-delta",
1199
- },
1200
- {
1201
- "delta": ":",
1202
- "id": "reasoning-0",
1203
- "type": "reasoning-delta",
1204
- },
1205
- {
1206
- "delta": " one",
1207
- "id": "reasoning-0",
1208
- "type": "reasoning-delta",
1209
- },
1210
- {
1211
- "delta": " after",
1212
- "id": "reasoning-0",
1213
- "type": "reasoning-delta",
1214
- },
1215
- {
1216
- "delta": " "",
1217
- "id": "reasoning-0",
1218
- "type": "reasoning-delta",
1219
- },
1220
- {
1221
- "delta": "t",
1222
- "id": "reasoning-0",
1223
- "type": "reasoning-delta",
1224
- },
1225
- {
1226
- "delta": "",",
1227
- "id": "reasoning-0",
1228
- "type": "reasoning-delta",
1229
- },
1230
- {
1231
- "delta": " and",
1232
- "id": "reasoning-0",
1233
- "type": "reasoning-delta",
1234
- },
1235
- {
1236
- "delta": " then",
1237
- "id": "reasoning-0",
1238
- "type": "reasoning-delta",
1239
- },
1240
- {
1241
- "delta": " two",
1242
- "id": "reasoning-0",
1243
- "type": "reasoning-delta",
1244
- },
1245
- {
1246
- "delta": " consecutive",
1247
- "id": "reasoning-0",
1248
- "type": "reasoning-delta",
1249
- },
1250
- {
1251
- "delta": " "",
1252
- "id": "reasoning-0",
1253
- "type": "reasoning-delta",
1254
- },
1255
- {
1256
- "delta": "r",
1257
- "id": "reasoning-0",
1258
- "type": "reasoning-delta",
1259
- },
1260
- {
1261
- "delta": ""s",
1262
- "id": "reasoning-0",
1263
- "type": "reasoning-delta",
1264
- },
1265
- {
1266
- "delta": " before",
1267
- "id": "reasoning-0",
1268
- "type": "reasoning-delta",
1269
- },
1270
- {
1271
- "delta": " "",
1272
- "id": "reasoning-0",
1273
- "type": "reasoning-delta",
1274
- },
1275
- {
1276
- "delta": "y",
1277
- "id": "reasoning-0",
1278
- "type": "reasoning-delta",
1279
- },
1280
- {
1281
- "delta": "".",
1282
- "id": "reasoning-0",
1283
- "type": "reasoning-delta",
1284
- },
1285
- {
1286
- "delta": " So",
1287
- "id": "reasoning-0",
1288
- "type": "reasoning-delta",
1289
- },
1290
- {
1291
- "delta": " the",
1292
- "id": "reasoning-0",
1293
- "type": "reasoning-delta",
1294
- },
1295
- {
1296
- "delta": " answer",
1297
- "id": "reasoning-0",
1298
- "type": "reasoning-delta",
1299
- },
1300
- {
1301
- "delta": " is",
1302
- "id": "reasoning-0",
1303
- "type": "reasoning-delta",
1304
- },
1305
- {
1306
- "delta": " ",
1307
- "id": "reasoning-0",
1308
- "type": "reasoning-delta",
1309
- },
1310
- {
1311
- "delta": "3",
1312
- "id": "reasoning-0",
1313
- "type": "reasoning-delta",
1314
- },
1315
- {
1316
- "delta": ".
1317
-
1318
- ",
1319
- "id": "reasoning-0",
1320
- "type": "reasoning-delta",
1321
- },
1322
- {
1323
- "delta": "The",
1324
- "id": "reasoning-0",
1325
- "type": "reasoning-delta",
1326
- },
1327
- {
1328
- "delta": " question",
1329
- "id": "reasoning-0",
1330
- "type": "reasoning-delta",
1331
- },
1332
- {
1333
- "delta": " is",
1334
- "id": "reasoning-0",
1335
- "type": "reasoning-delta",
1336
- },
1337
- {
1338
- "delta": " straightforward",
1339
- "id": "reasoning-0",
1340
- "type": "reasoning-delta",
1341
- },
1342
- {
1343
- "delta": ".",
1344
- "id": "reasoning-0",
1345
- "type": "reasoning-delta",
1346
- },
1347
- {
1348
- "delta": " However",
1349
- "id": "reasoning-0",
1350
- "type": "reasoning-delta",
1351
- },
1352
- {
1353
- "delta": ",",
1354
- "id": "reasoning-0",
1355
- "type": "reasoning-delta",
1356
- },
1357
- {
1358
- "delta": " sometimes",
1359
- "id": "reasoning-0",
1360
- "type": "reasoning-delta",
1361
- },
1362
- {
1363
- "delta": " people",
1364
- "id": "reasoning-0",
1365
- "type": "reasoning-delta",
1366
- },
1367
- {
1368
- "delta": " might",
1369
- "id": "reasoning-0",
1370
- "type": "reasoning-delta",
1371
- },
1372
- {
1373
- "delta": " misc",
1374
- "id": "reasoning-0",
1375
- "type": "reasoning-delta",
1376
- },
1377
- {
1378
- "delta": "ount",
1379
- "id": "reasoning-0",
1380
- "type": "reasoning-delta",
1381
- },
1382
- {
1383
- "delta": ".",
1384
- "id": "reasoning-0",
1385
- "type": "reasoning-delta",
1386
- },
1387
- {
1388
- "delta": " Let",
1389
- "id": "reasoning-0",
1390
- "type": "reasoning-delta",
1391
- },
1392
- {
1393
- "delta": "'s",
1394
- "id": "reasoning-0",
1395
- "type": "reasoning-delta",
1396
- },
1397
- {
1398
- "delta": " ensure",
1399
- "id": "reasoning-0",
1400
- "type": "reasoning-delta",
1401
- },
1402
- {
1403
- "delta": ":",
1404
- "id": "reasoning-0",
1405
- "type": "reasoning-delta",
1406
- },
1407
- {
1408
- "delta": " The",
1409
- "id": "reasoning-0",
1410
- "type": "reasoning-delta",
1411
- },
1412
- {
1413
- "delta": " word",
1414
- "id": "reasoning-0",
1415
- "type": "reasoning-delta",
1416
- },
1417
- {
1418
- "delta": " has",
1419
- "id": "reasoning-0",
1420
- "type": "reasoning-delta",
1421
- },
1422
- {
1423
- "delta": " ",
1424
- "id": "reasoning-0",
1425
- "type": "reasoning-delta",
1426
- },
1427
- {
1428
- "delta": "10",
1429
- "id": "reasoning-0",
1430
- "type": "reasoning-delta",
1431
- },
1432
- {
1433
- "delta": " letters",
1434
- "id": "reasoning-0",
1435
- "type": "reasoning-delta",
1436
- },
1437
- {
1438
- "delta": ".",
1439
- "id": "reasoning-0",
1440
- "type": "reasoning-delta",
1441
- },
1442
- {
1443
- "delta": " The",
1444
- "id": "reasoning-0",
1445
- "type": "reasoning-delta",
1446
- },
1447
- {
1448
- "delta": " "",
1449
- "id": "reasoning-0",
1450
- "type": "reasoning-delta",
1451
- },
1452
- {
1453
- "delta": "r",
1454
- "id": "reasoning-0",
1455
- "type": "reasoning-delta",
1456
- },
1457
- {
1458
- "delta": ""s",
1459
- "id": "reasoning-0",
1460
- "type": "reasoning-delta",
1461
- },
1462
- {
1463
- "delta": " are",
1464
- "id": "reasoning-0",
1465
- "type": "reasoning-delta",
1466
- },
1467
- {
1468
- "delta": " at",
1469
- "id": "reasoning-0",
1470
- "type": "reasoning-delta",
1471
- },
1472
- {
1473
- "delta": " positions",
1474
- "id": "reasoning-0",
1475
- "type": "reasoning-delta",
1476
- },
1477
- {
1478
- "delta": " ",
1479
- "id": "reasoning-0",
1480
- "type": "reasoning-delta",
1481
- },
1482
- {
1483
- "delta": "3",
1484
- "id": "reasoning-0",
1485
- "type": "reasoning-delta",
1486
- },
1487
- {
1488
- "delta": ",",
1489
- "id": "reasoning-0",
1490
- "type": "reasoning-delta",
1491
- },
1492
- {
1493
- "delta": " ",
1494
- "id": "reasoning-0",
1495
- "type": "reasoning-delta",
1496
- },
1497
- {
1498
- "delta": "8",
1499
- "id": "reasoning-0",
1500
- "type": "reasoning-delta",
1501
- },
1502
- {
1503
- "delta": ",",
1504
- "id": "reasoning-0",
1505
- "type": "reasoning-delta",
1506
- },
1507
- {
1508
- "delta": " and",
1509
- "id": "reasoning-0",
1510
- "type": "reasoning-delta",
1511
- },
1512
- {
1513
- "delta": " ",
1514
- "id": "reasoning-0",
1515
- "type": "reasoning-delta",
1516
- },
1517
- {
1518
- "delta": "9",
1519
- "id": "reasoning-0",
1520
- "type": "reasoning-delta",
1521
- },
1522
- {
1523
- "delta": ".",
1524
- "id": "reasoning-0",
1525
- "type": "reasoning-delta",
1526
- },
1527
- {
1528
- "delta": " So",
1529
- "id": "reasoning-0",
1530
- "type": "reasoning-delta",
1531
- },
1532
- {
1533
- "delta": " yes",
1534
- "id": "reasoning-0",
1535
- "type": "reasoning-delta",
1536
- },
1537
- {
1538
- "delta": ",",
1539
- "id": "reasoning-0",
1540
- "type": "reasoning-delta",
1541
- },
1542
- {
1543
- "delta": " ",
1544
- "id": "reasoning-0",
1545
- "type": "reasoning-delta",
1546
- },
1547
- {
1548
- "delta": "3",
1549
- "id": "reasoning-0",
1550
- "type": "reasoning-delta",
1551
- },
1552
- {
1553
- "delta": ".
1554
-
1555
- ",
1556
- "id": "reasoning-0",
1557
- "type": "reasoning-delta",
1558
- },
1559
- {
1560
- "delta": "Thus",
1561
- "id": "reasoning-0",
1562
- "type": "reasoning-delta",
1563
- },
1564
- {
1565
- "delta": ",",
1566
- "id": "reasoning-0",
1567
- "type": "reasoning-delta",
1568
- },
1569
- {
1570
- "delta": " the",
1571
- "id": "reasoning-0",
1572
- "type": "reasoning-delta",
1573
- },
1574
- {
1575
- "delta": " answer",
1576
- "id": "reasoning-0",
1577
- "type": "reasoning-delta",
1578
- },
1579
- {
1580
- "delta": " is",
1581
- "id": "reasoning-0",
1582
- "type": "reasoning-delta",
1583
- },
1584
- {
1585
- "delta": " ",
1586
- "id": "reasoning-0",
1587
- "type": "reasoning-delta",
1588
- },
1589
- {
1590
- "delta": "3",
1591
- "id": "reasoning-0",
1592
- "type": "reasoning-delta",
1593
- },
1594
- {
1595
- "delta": ".",
1596
- "id": "reasoning-0",
1597
- "type": "reasoning-delta",
1598
- },
1599
- {
1600
- "id": "txt-0",
1601
- "type": "text-start",
1602
- },
1603
- {
1604
- "id": "reasoning-0",
1605
- "type": "reasoning-end",
1606
- },
1607
- {
1608
- "delta": "The",
1609
- "id": "txt-0",
1610
- "type": "text-delta",
1611
- },
1612
- {
1613
- "delta": " word",
1614
- "id": "txt-0",
1615
- "type": "text-delta",
1616
- },
1617
- {
1618
- "delta": " "",
1619
- "id": "txt-0",
1620
- "type": "text-delta",
1621
- },
1622
- {
1623
- "delta": "st",
1624
- "id": "txt-0",
1625
- "type": "text-delta",
1626
- },
1627
- {
1628
- "delta": "raw",
1629
- "id": "txt-0",
1630
- "type": "text-delta",
1631
- },
1632
- {
1633
- "delta": "berry",
1634
- "id": "txt-0",
1635
- "type": "text-delta",
1636
- },
1637
- {
1638
- "delta": """,
1639
- "id": "txt-0",
1640
- "type": "text-delta",
1641
- },
1642
- {
1643
- "delta": " contains",
1644
- "id": "txt-0",
1645
- "type": "text-delta",
1646
- },
1647
- {
1648
- "delta": " three",
1649
- "id": "txt-0",
1650
- "type": "text-delta",
1651
- },
1652
- {
1653
- "delta": " "",
1654
- "id": "txt-0",
1655
- "type": "text-delta",
1656
- },
1657
- {
1658
- "delta": "r",
1659
- "id": "txt-0",
1660
- "type": "text-delta",
1661
- },
1662
- {
1663
- "delta": ""s",
1664
- "id": "txt-0",
1665
- "type": "text-delta",
1666
- },
1667
- {
1668
- "delta": ".",
1669
- "id": "txt-0",
1670
- "type": "text-delta",
1671
- },
1672
- {
1673
- "id": "txt-0",
1674
- "type": "text-end",
1675
- },
1676
- {
1677
- "finishReason": {
1678
- "raw": "stop",
1679
- "unified": "stop",
1680
- },
1681
- "providerMetadata": {
1682
- "deepseek": {
1683
- "promptCacheHitTokens": 0,
1684
- "promptCacheMissTokens": 18,
1685
- },
1686
- },
1687
- "type": "finish",
1688
- "usage": {
1689
- "inputTokens": {
1690
- "cacheRead": 0,
1691
- "cacheWrite": undefined,
1692
- "noCache": 18,
1693
- "total": 18,
1694
- },
1695
- "outputTokens": {
1696
- "reasoning": 205,
1697
- "text": 14,
1698
- "total": 219,
1699
- },
1700
- "raw": {
1701
- "completion_tokens": 219,
1702
- "completion_tokens_details": {
1703
- "reasoning_tokens": 205,
1704
- },
1705
- "prompt_cache_hit_tokens": 0,
1706
- "prompt_cache_miss_tokens": 18,
1707
- "prompt_tokens": 18,
1708
- "total_tokens": 237,
1709
- },
1710
- },
1711
- },
1712
- ]
1713
- `;
1714
-
1715
- exports[`DeepSeekChatLanguageModel > doStream > text > should stream text 1`] = `
1716
- [
1717
- {
1718
- "type": "stream-start",
1719
- "warnings": [],
1720
- },
1721
- {
1722
- "id": "f6117a0b-129d-46fa-b239-78f01c2c5df9",
1723
- "modelId": "deepseek-chat",
1724
- "timestamp": 2025-12-02T06:46:33.000Z,
1725
- "type": "response-metadata",
1726
- },
1727
- {
1728
- "id": "txt-0",
1729
- "type": "text-start",
1730
- },
1731
- {
1732
- "delta": "##",
1733
- "id": "txt-0",
1734
- "type": "text-delta",
1735
- },
1736
- {
1737
- "delta": " **",
1738
- "id": "txt-0",
1739
- "type": "text-delta",
1740
- },
1741
- {
1742
- "delta": "H",
1743
- "id": "txt-0",
1744
- "type": "text-delta",
1745
- },
1746
- {
1747
- "delta": "olid",
1748
- "id": "txt-0",
1749
- "type": "text-delta",
1750
- },
1751
- {
1752
- "delta": "ay",
1753
- "id": "txt-0",
1754
- "type": "text-delta",
1755
- },
1756
- {
1757
- "delta": " Name",
1758
- "id": "txt-0",
1759
- "type": "text-delta",
1760
- },
1761
- {
1762
- "delta": ":**",
1763
- "id": "txt-0",
1764
- "type": "text-delta",
1765
- },
1766
- {
1767
- "delta": " St",
1768
- "id": "txt-0",
1769
- "type": "text-delta",
1770
- },
1771
- {
1772
- "delta": "arl",
1773
- "id": "txt-0",
1774
- "type": "text-delta",
1775
- },
1776
- {
1777
- "delta": "ight",
1778
- "id": "txt-0",
1779
- "type": "text-delta",
1780
- },
1781
- {
1782
- "delta": " Rem",
1783
- "id": "txt-0",
1784
- "type": "text-delta",
1785
- },
1786
- {
1787
- "delta": "embrance",
1788
- "id": "txt-0",
1789
- "type": "text-delta",
1790
- },
1791
- {
1792
- "delta": "
1793
-
1794
- ",
1795
- "id": "txt-0",
1796
- "type": "text-delta",
1797
- },
1798
- {
1799
- "delta": "**",
1800
- "id": "txt-0",
1801
- "type": "text-delta",
1802
- },
1803
- {
1804
- "delta": "Date",
1805
- "id": "txt-0",
1806
- "type": "text-delta",
1807
- },
1808
- {
1809
- "delta": ":**",
1810
- "id": "txt-0",
1811
- "type": "text-delta",
1812
- },
1813
- {
1814
- "delta": " The",
1815
- "id": "txt-0",
1816
- "type": "text-delta",
1817
- },
1818
- {
1819
- "delta": " Saturday",
1820
- "id": "txt-0",
1821
- "type": "text-delta",
1822
- },
1823
- {
1824
- "delta": " nearest",
1825
- "id": "txt-0",
1826
- "type": "text-delta",
1827
- },
1828
- {
1829
- "delta": " the",
1830
- "id": "txt-0",
1831
- "type": "text-delta",
1832
- },
1833
- {
1834
- "delta": " new",
1835
- "id": "txt-0",
1836
- "type": "text-delta",
1837
- },
1838
- {
1839
- "delta": " moon",
1840
- "id": "txt-0",
1841
- "type": "text-delta",
1842
- },
1843
- {
1844
- "delta": " in",
1845
- "id": "txt-0",
1846
- "type": "text-delta",
1847
- },
1848
- {
1849
- "delta": " October",
1850
- "id": "txt-0",
1851
- "type": "text-delta",
1852
- },
1853
- {
1854
- "delta": ",",
1855
- "id": "txt-0",
1856
- "type": "text-delta",
1857
- },
1858
- {
1859
- "delta": " when",
1860
- "id": "txt-0",
1861
- "type": "text-delta",
1862
- },
1863
- {
1864
- "delta": " the",
1865
- "id": "txt-0",
1866
- "type": "text-delta",
1867
- },
1868
- {
1869
- "delta": " night",
1870
- "id": "txt-0",
1871
- "type": "text-delta",
1872
- },
1873
- {
1874
- "delta": " sky",
1875
- "id": "txt-0",
1876
- "type": "text-delta",
1877
- },
1878
- {
1879
- "delta": " is",
1880
- "id": "txt-0",
1881
- "type": "text-delta",
1882
- },
1883
- {
1884
- "delta": " at",
1885
- "id": "txt-0",
1886
- "type": "text-delta",
1887
- },
1888
- {
1889
- "delta": " its",
1890
- "id": "txt-0",
1891
- "type": "text-delta",
1892
- },
1893
- {
1894
- "delta": " darkest",
1895
- "id": "txt-0",
1896
- "type": "text-delta",
1897
- },
1898
- {
1899
- "delta": " and",
1900
- "id": "txt-0",
1901
- "type": "text-delta",
1902
- },
1903
- {
1904
- "delta": " the",
1905
- "id": "txt-0",
1906
- "type": "text-delta",
1907
- },
1908
- {
1909
- "delta": " stars",
1910
- "id": "txt-0",
1911
- "type": "text-delta",
1912
- },
1913
- {
1914
- "delta": " are",
1915
- "id": "txt-0",
1916
- "type": "text-delta",
1917
- },
1918
- {
1919
- "delta": " most",
1920
- "id": "txt-0",
1921
- "type": "text-delta",
1922
- },
1923
- {
1924
- "delta": " vivid",
1925
- "id": "txt-0",
1926
- "type": "text-delta",
1927
- },
1928
- {
1929
- "delta": ".
1930
-
1931
- ",
1932
- "id": "txt-0",
1933
- "type": "text-delta",
1934
- },
1935
- {
1936
- "delta": "**",
1937
- "id": "txt-0",
1938
- "type": "text-delta",
1939
- },
1940
- {
1941
- "delta": "Origin",
1942
- "id": "txt-0",
1943
- "type": "text-delta",
1944
- },
1945
- {
1946
- "delta": " &",
1947
- "id": "txt-0",
1948
- "type": "text-delta",
1949
- },
1950
- {
1951
- "delta": " Meaning",
1952
- "id": "txt-0",
1953
- "type": "text-delta",
1954
- },
1955
- {
1956
- "delta": ":",
1957
- "id": "txt-0",
1958
- "type": "text-delta",
1959
- },
1960
- {
1961
- "delta": "**
1962
- ",
1963
- "id": "txt-0",
1964
- "type": "text-delta",
1965
- },
1966
- {
1967
- "delta": "St",
1968
- "id": "txt-0",
1969
- "type": "text-delta",
1970
- },
1971
- {
1972
- "delta": "arl",
1973
- "id": "txt-0",
1974
- "type": "text-delta",
1975
- },
1976
- {
1977
- "delta": "ight",
1978
- "id": "txt-0",
1979
- "type": "text-delta",
1980
- },
1981
- {
1982
- "delta": " Rem",
1983
- "id": "txt-0",
1984
- "type": "text-delta",
1985
- },
1986
- {
1987
- "delta": "embrance",
1988
- "id": "txt-0",
1989
- "type": "text-delta",
1990
- },
1991
- {
1992
- "delta": " emerged",
1993
- "id": "txt-0",
1994
- "type": "text-delta",
1995
- },
1996
- {
1997
- "delta": " from",
1998
- "id": "txt-0",
1999
- "type": "text-delta",
2000
- },
2001
- {
2002
- "delta": " a",
2003
- "id": "txt-0",
2004
- "type": "text-delta",
2005
- },
2006
- {
2007
- "delta": " modern",
2008
- "id": "txt-0",
2009
- "type": "text-delta",
2010
- },
2011
- {
2012
- "delta": ",",
2013
- "id": "txt-0",
2014
- "type": "text-delta",
2015
- },
2016
- {
2017
- "delta": " collective",
2018
- "id": "txt-0",
2019
- "type": "text-delta",
2020
- },
2021
- {
2022
- "delta": " yearning",
2023
- "id": "txt-0",
2024
- "type": "text-delta",
2025
- },
2026
- {
2027
- "delta": " to",
2028
- "id": "txt-0",
2029
- "type": "text-delta",
2030
- },
2031
- {
2032
- "delta": " honor",
2033
- "id": "txt-0",
2034
- "type": "text-delta",
2035
- },
2036
- {
2037
- "delta": " personal",
2038
- "id": "txt-0",
2039
- "type": "text-delta",
2040
- },
2041
- {
2042
- "delta": " loss",
2043
- "id": "txt-0",
2044
- "type": "text-delta",
2045
- },
2046
- {
2047
- "delta": " while",
2048
- "id": "txt-0",
2049
- "type": "text-delta",
2050
- },
2051
- {
2052
- "delta": " celebrating",
2053
- "id": "txt-0",
2054
- "type": "text-delta",
2055
- },
2056
- {
2057
- "delta": " the",
2058
- "id": "txt-0",
2059
- "type": "text-delta",
2060
- },
2061
- {
2062
- "delta": " enduring",
2063
- "id": "txt-0",
2064
- "type": "text-delta",
2065
- },
2066
- {
2067
- "delta": " connections",
2068
- "id": "txt-0",
2069
- "type": "text-delta",
2070
- },
2071
- {
2072
- "delta": " that",
2073
- "id": "txt-0",
2074
- "type": "text-delta",
2075
- },
2076
- {
2077
- "delta": " transcend",
2078
- "id": "txt-0",
2079
- "type": "text-delta",
2080
- },
2081
- {
2082
- "delta": " it",
2083
- "id": "txt-0",
2084
- "type": "text-delta",
2085
- },
2086
- {
2087
- "delta": ".",
2088
- "id": "txt-0",
2089
- "type": "text-delta",
2090
- },
2091
- {
2092
- "delta": " It",
2093
- "id": "txt-0",
2094
- "type": "text-delta",
2095
- },
2096
- {
2097
- "delta": " is",
2098
- "id": "txt-0",
2099
- "type": "text-delta",
2100
- },
2101
- {
2102
- "delta": " not",
2103
- "id": "txt-0",
2104
- "type": "text-delta",
2105
- },
2106
- {
2107
- "delta": " tied",
2108
- "id": "txt-0",
2109
- "type": "text-delta",
2110
- },
2111
- {
2112
- "delta": " to",
2113
- "id": "txt-0",
2114
- "type": "text-delta",
2115
- },
2116
- {
2117
- "delta": " any",
2118
- "id": "txt-0",
2119
- "type": "text-delta",
2120
- },
2121
- {
2122
- "delta": " one",
2123
- "id": "txt-0",
2124
- "type": "text-delta",
2125
- },
2126
- {
2127
- "delta": " religion",
2128
- "id": "txt-0",
2129
- "type": "text-delta",
2130
- },
2131
- {
2132
- "delta": " or",
2133
- "id": "txt-0",
2134
- "type": "text-delta",
2135
- },
2136
- {
2137
- "delta": " culture",
2138
- "id": "txt-0",
2139
- "type": "text-delta",
2140
- },
2141
- {
2142
- "delta": ",",
2143
- "id": "txt-0",
2144
- "type": "text-delta",
2145
- },
2146
- {
2147
- "delta": " but",
2148
- "id": "txt-0",
2149
- "type": "text-delta",
2150
- },
2151
- {
2152
- "delta": " to",
2153
- "id": "txt-0",
2154
- "type": "text-delta",
2155
- },
2156
- {
2157
- "delta": " a",
2158
- "id": "txt-0",
2159
- "type": "text-delta",
2160
- },
2161
- {
2162
- "delta": " universal",
2163
- "id": "txt-0",
2164
- "type": "text-delta",
2165
- },
2166
- {
2167
- "delta": " human",
2168
- "id": "txt-0",
2169
- "type": "text-delta",
2170
- },
2171
- {
2172
- "delta": " experience",
2173
- "id": "txt-0",
2174
- "type": "text-delta",
2175
- },
2176
- {
2177
- "delta": ".",
2178
- "id": "txt-0",
2179
- "type": "text-delta",
2180
- },
2181
- {
2182
- "delta": " The",
2183
- "id": "txt-0",
2184
- "type": "text-delta",
2185
- },
2186
- {
2187
- "delta": " core",
2188
- "id": "txt-0",
2189
- "type": "text-delta",
2190
- },
2191
- {
2192
- "delta": " philosophy",
2193
- "id": "txt-0",
2194
- "type": "text-delta",
2195
- },
2196
- {
2197
- "delta": " is",
2198
- "id": "txt-0",
2199
- "type": "text-delta",
2200
- },
2201
- {
2202
- "delta": " that",
2203
- "id": "txt-0",
2204
- "type": "text-delta",
2205
- },
2206
- {
2207
- "delta": " people",
2208
- "id": "txt-0",
2209
- "type": "text-delta",
2210
- },
2211
- {
2212
- "delta": " we",
2213
- "id": "txt-0",
2214
- "type": "text-delta",
2215
- },
2216
- {
2217
- "delta": " love",
2218
- "id": "txt-0",
2219
- "type": "text-delta",
2220
- },
2221
- {
2222
- "delta": ",",
2223
- "id": "txt-0",
2224
- "type": "text-delta",
2225
- },
2226
- {
2227
- "delta": " ideas",
2228
- "id": "txt-0",
2229
- "type": "text-delta",
2230
- },
2231
- {
2232
- "delta": " that",
2233
- "id": "txt-0",
2234
- "type": "text-delta",
2235
- },
2236
- {
2237
- "delta": " inspired",
2238
- "id": "txt-0",
2239
- "type": "text-delta",
2240
- },
2241
- {
2242
- "delta": " us",
2243
- "id": "txt-0",
2244
- "type": "text-delta",
2245
- },
2246
- {
2247
- "delta": ",",
2248
- "id": "txt-0",
2249
- "type": "text-delta",
2250
- },
2251
- {
2252
- "delta": " and",
2253
- "id": "txt-0",
2254
- "type": "text-delta",
2255
- },
2256
- {
2257
- "delta": " even",
2258
- "id": "txt-0",
2259
- "type": "text-delta",
2260
- },
2261
- {
2262
- "delta": " versions",
2263
- "id": "txt-0",
2264
- "type": "text-delta",
2265
- },
2266
- {
2267
- "delta": " of",
2268
- "id": "txt-0",
2269
- "type": "text-delta",
2270
- },
2271
- {
2272
- "delta": " ourselves",
2273
- "id": "txt-0",
2274
- "type": "text-delta",
2275
- },
2276
- {
2277
- "delta": " that",
2278
- "id": "txt-0",
2279
- "type": "text-delta",
2280
- },
2281
- {
2282
- "delta": " are",
2283
- "id": "txt-0",
2284
- "type": "text-delta",
2285
- },
2286
- {
2287
- "delta": " gone",
2288
- "id": "txt-0",
2289
- "type": "text-delta",
2290
- },
2291
- {
2292
- "delta": " are",
2293
- "id": "txt-0",
2294
- "type": "text-delta",
2295
- },
2296
- {
2297
- "delta": " not",
2298
- "id": "txt-0",
2299
- "type": "text-delta",
2300
- },
2301
- {
2302
- "delta": " vanished",
2303
- "id": "txt-0",
2304
- "type": "text-delta",
2305
- },
2306
- {
2307
- "delta": ",",
2308
- "id": "txt-0",
2309
- "type": "text-delta",
2310
- },
2311
- {
2312
- "delta": " but",
2313
- "id": "txt-0",
2314
- "type": "text-delta",
2315
- },
2316
- {
2317
- "delta": " have",
2318
- "id": "txt-0",
2319
- "type": "text-delta",
2320
- },
2321
- {
2322
- "delta": " become",
2323
- "id": "txt-0",
2324
- "type": "text-delta",
2325
- },
2326
- {
2327
- "delta": " part",
2328
- "id": "txt-0",
2329
- "type": "text-delta",
2330
- },
2331
- {
2332
- "delta": " of",
2333
- "id": "txt-0",
2334
- "type": "text-delta",
2335
- },
2336
- {
2337
- "delta": " the",
2338
- "id": "txt-0",
2339
- "type": "text-delta",
2340
- },
2341
- {
2342
- "delta": " universe",
2343
- "id": "txt-0",
2344
- "type": "text-delta",
2345
- },
2346
- {
2347
- "delta": "'s",
2348
- "id": "txt-0",
2349
- "type": "text-delta",
2350
- },
2351
- {
2352
- "delta": " fabric",
2353
- "id": "txt-0",
2354
- "type": "text-delta",
2355
- },
2356
- {
2357
- "delta": "—",
2358
- "id": "txt-0",
2359
- "type": "text-delta",
2360
- },
2361
- {
2362
- "delta": "like",
2363
- "id": "txt-0",
2364
- "type": "text-delta",
2365
- },
2366
- {
2367
- "delta": " st",
2368
- "id": "txt-0",
2369
- "type": "text-delta",
2370
- },
2371
- {
2372
- "delta": "ard",
2373
- "id": "txt-0",
2374
- "type": "text-delta",
2375
- },
2376
- {
2377
- "delta": "ust",
2378
- "id": "txt-0",
2379
- "type": "text-delta",
2380
- },
2381
- {
2382
- "delta": ".",
2383
- "id": "txt-0",
2384
- "type": "text-delta",
2385
- },
2386
- {
2387
- "delta": " The",
2388
- "id": "txt-0",
2389
- "type": "text-delta",
2390
- },
2391
- {
2392
- "delta": " holiday",
2393
- "id": "txt-0",
2394
- "type": "text-delta",
2395
- },
2396
- {
2397
- "delta": " asks",
2398
- "id": "txt-0",
2399
- "type": "text-delta",
2400
- },
2401
- {
2402
- "delta": " participants",
2403
- "id": "txt-0",
2404
- "type": "text-delta",
2405
- },
2406
- {
2407
- "delta": " to",
2408
- "id": "txt-0",
2409
- "type": "text-delta",
2410
- },
2411
- {
2412
- "delta": " look",
2413
- "id": "txt-0",
2414
- "type": "text-delta",
2415
- },
2416
- {
2417
- "delta": " up",
2418
- "id": "txt-0",
2419
- "type": "text-delta",
2420
- },
2421
- {
2422
- "delta": " at",
2423
- "id": "txt-0",
2424
- "type": "text-delta",
2425
- },
2426
- {
2427
- "delta": " the",
2428
- "id": "txt-0",
2429
- "type": "text-delta",
2430
- },
2431
- {
2432
- "delta": " vast",
2433
- "id": "txt-0",
2434
- "type": "text-delta",
2435
- },
2436
- {
2437
- "delta": ",",
2438
- "id": "txt-0",
2439
- "type": "text-delta",
2440
- },
2441
- {
2442
- "delta": " shared",
2443
- "id": "txt-0",
2444
- "type": "text-delta",
2445
- },
2446
- {
2447
- "delta": " sky",
2448
- "id": "txt-0",
2449
- "type": "text-delta",
2450
- },
2451
- {
2452
- "delta": " and",
2453
- "id": "txt-0",
2454
- "type": "text-delta",
2455
- },
2456
- {
2457
- "delta": " find",
2458
- "id": "txt-0",
2459
- "type": "text-delta",
2460
- },
2461
- {
2462
- "delta": " comfort",
2463
- "id": "txt-0",
2464
- "type": "text-delta",
2465
- },
2466
- {
2467
- "delta": " in",
2468
- "id": "txt-0",
2469
- "type": "text-delta",
2470
- },
2471
- {
2472
- "delta": " both",
2473
- "id": "txt-0",
2474
- "type": "text-delta",
2475
- },
2476
- {
2477
- "delta": " the",
2478
- "id": "txt-0",
2479
- "type": "text-delta",
2480
- },
2481
- {
2482
- "delta": " darkness",
2483
- "id": "txt-0",
2484
- "type": "text-delta",
2485
- },
2486
- {
2487
- "delta": " (",
2488
- "id": "txt-0",
2489
- "type": "text-delta",
2490
- },
2491
- {
2492
- "delta": "the",
2493
- "id": "txt-0",
2494
- "type": "text-delta",
2495
- },
2496
- {
2497
- "delta": " loss",
2498
- "id": "txt-0",
2499
- "type": "text-delta",
2500
- },
2501
- {
2502
- "delta": ")",
2503
- "id": "txt-0",
2504
- "type": "text-delta",
2505
- },
2506
- {
2507
- "delta": " and",
2508
- "id": "txt-0",
2509
- "type": "text-delta",
2510
- },
2511
- {
2512
- "delta": " the",
2513
- "id": "txt-0",
2514
- "type": "text-delta",
2515
- },
2516
- {
2517
- "delta": " enduring",
2518
- "id": "txt-0",
2519
- "type": "text-delta",
2520
- },
2521
- {
2522
- "delta": " points",
2523
- "id": "txt-0",
2524
- "type": "text-delta",
2525
- },
2526
- {
2527
- "delta": " of",
2528
- "id": "txt-0",
2529
- "type": "text-delta",
2530
- },
2531
- {
2532
- "delta": " light",
2533
- "id": "txt-0",
2534
- "type": "text-delta",
2535
- },
2536
- {
2537
- "delta": " (",
2538
- "id": "txt-0",
2539
- "type": "text-delta",
2540
- },
2541
- {
2542
- "delta": "the",
2543
- "id": "txt-0",
2544
- "type": "text-delta",
2545
- },
2546
- {
2547
- "delta": " memory",
2548
- "id": "txt-0",
2549
- "type": "text-delta",
2550
- },
2551
- {
2552
- "delta": ").
2553
-
2554
- ",
2555
- "id": "txt-0",
2556
- "type": "text-delta",
2557
- },
2558
- {
2559
- "delta": "---
2560
-
2561
- ",
2562
- "id": "txt-0",
2563
- "type": "text-delta",
2564
- },
2565
- {
2566
- "delta": "###",
2567
- "id": "txt-0",
2568
- "type": "text-delta",
2569
- },
2570
- {
2571
- "delta": " **",
2572
- "id": "txt-0",
2573
- "type": "text-delta",
2574
- },
2575
- {
2576
- "delta": "T",
2577
- "id": "txt-0",
2578
- "type": "text-delta",
2579
- },
2580
- {
2581
- "delta": "rad",
2582
- "id": "txt-0",
2583
- "type": "text-delta",
2584
- },
2585
- {
2586
- "delta": "itions",
2587
- "id": "txt-0",
2588
- "type": "text-delta",
2589
- },
2590
- {
2591
- "delta": " &",
2592
- "id": "txt-0",
2593
- "type": "text-delta",
2594
- },
2595
- {
2596
- "delta": " Rit",
2597
- "id": "txt-0",
2598
- "type": "text-delta",
2599
- },
2600
- {
2601
- "delta": "uals",
2602
- "id": "txt-0",
2603
- "type": "text-delta",
2604
- },
2605
- {
2606
- "delta": ":**
2607
-
2608
- ",
2609
- "id": "txt-0",
2610
- "type": "text-delta",
2611
- },
2612
- {
2613
- "delta": "**",
2614
- "id": "txt-0",
2615
- "type": "text-delta",
2616
- },
2617
- {
2618
- "delta": "1",
2619
- "id": "txt-0",
2620
- "type": "text-delta",
2621
- },
2622
- {
2623
- "delta": ".",
2624
- "id": "txt-0",
2625
- "type": "text-delta",
2626
- },
2627
- {
2628
- "delta": " The",
2629
- "id": "txt-0",
2630
- "type": "text-delta",
2631
- },
2632
- {
2633
- "delta": " Dim",
2634
- "id": "txt-0",
2635
- "type": "text-delta",
2636
- },
2637
- {
2638
- "delta": "ming",
2639
- "id": "txt-0",
2640
- "type": "text-delta",
2641
- },
2642
- {
2643
- "delta": " of",
2644
- "id": "txt-0",
2645
- "type": "text-delta",
2646
- },
2647
- {
2648
- "delta": " the",
2649
- "id": "txt-0",
2650
- "type": "text-delta",
2651
- },
2652
- {
2653
- "delta": " Lights",
2654
- "id": "txt-0",
2655
- "type": "text-delta",
2656
- },
2657
- {
2658
- "delta": ":",
2659
- "id": "txt-0",
2660
- "type": "text-delta",
2661
- },
2662
- {
2663
- "delta": "**
2664
- ",
2665
- "id": "txt-0",
2666
- "type": "text-delta",
2667
- },
2668
- {
2669
- "delta": "As",
2670
- "id": "txt-0",
2671
- "type": "text-delta",
2672
- },
2673
- {
2674
- "delta": " night",
2675
- "id": "txt-0",
2676
- "type": "text-delta",
2677
- },
2678
- {
2679
- "delta": " falls",
2680
- "id": "txt-0",
2681
- "type": "text-delta",
2682
- },
2683
- {
2684
- "delta": ",",
2685
- "id": "txt-0",
2686
- "type": "text-delta",
2687
- },
2688
- {
2689
- "delta": " households",
2690
- "id": "txt-0",
2691
- "type": "text-delta",
2692
- },
2693
- {
2694
- "delta": " and",
2695
- "id": "txt-0",
2696
- "type": "text-delta",
2697
- },
2698
- {
2699
- "delta": " communities",
2700
- "id": "txt-0",
2701
- "type": "text-delta",
2702
- },
2703
- {
2704
- "delta": " turn",
2705
- "id": "txt-0",
2706
- "type": "text-delta",
2707
- },
2708
- {
2709
- "delta": " off",
2710
- "id": "txt-0",
2711
- "type": "text-delta",
2712
- },
2713
- {
2714
- "delta": " non",
2715
- "id": "txt-0",
2716
- "type": "text-delta",
2717
- },
2718
- {
2719
- "delta": "-",
2720
- "id": "txt-0",
2721
- "type": "text-delta",
2722
- },
2723
- {
2724
- "delta": "essential",
2725
- "id": "txt-0",
2726
- "type": "text-delta",
2727
- },
2728
- {
2729
- "delta": " electric",
2730
- "id": "txt-0",
2731
- "type": "text-delta",
2732
- },
2733
- {
2734
- "delta": " lights",
2735
- "id": "txt-0",
2736
- "type": "text-delta",
2737
- },
2738
- {
2739
- "delta": ".",
2740
- "id": "txt-0",
2741
- "type": "text-delta",
2742
- },
2743
- {
2744
- "delta": " Streets",
2745
- "id": "txt-0",
2746
- "type": "text-delta",
2747
- },
2748
- {
2749
- "delta": " are",
2750
- "id": "txt-0",
2751
- "type": "text-delta",
2752
- },
2753
- {
2754
- "delta": " lit",
2755
- "id": "txt-0",
2756
- "type": "text-delta",
2757
- },
2758
- {
2759
- "delta": " only",
2760
- "id": "txt-0",
2761
- "type": "text-delta",
2762
- },
2763
- {
2764
- "delta": " by",
2765
- "id": "txt-0",
2766
- "type": "text-delta",
2767
- },
2768
- {
2769
- "delta": " subtle",
2770
- "id": "txt-0",
2771
- "type": "text-delta",
2772
- },
2773
- {
2774
- "delta": ",",
2775
- "id": "txt-0",
2776
- "type": "text-delta",
2777
- },
2778
- {
2779
- "delta": " blue",
2780
- "id": "txt-0",
2781
- "type": "text-delta",
2782
- },
2783
- {
2784
- "delta": "-ton",
2785
- "id": "txt-0",
2786
- "type": "text-delta",
2787
- },
2788
- {
2789
- "delta": "ed",
2790
- "id": "txt-0",
2791
- "type": "text-delta",
2792
- },
2793
- {
2794
- "delta": " lantern",
2795
- "id": "txt-0",
2796
- "type": "text-delta",
2797
- },
2798
- {
2799
- "delta": "s",
2800
- "id": "txt-0",
2801
- "type": "text-delta",
2802
- },
2803
- {
2804
- "delta": " (",
2805
- "id": "txt-0",
2806
- "type": "text-delta",
2807
- },
2808
- {
2809
- "delta": "symbol",
2810
- "id": "txt-0",
2811
- "type": "text-delta",
2812
- },
2813
- {
2814
- "delta": "izing",
2815
- "id": "txt-0",
2816
- "type": "text-delta",
2817
- },
2818
- {
2819
- "delta": " the",
2820
- "id": "txt-0",
2821
- "type": "text-delta",
2822
- },
2823
- {
2824
- "delta": " night",
2825
- "id": "txt-0",
2826
- "type": "text-delta",
2827
- },
2828
- {
2829
- "delta": " sky",
2830
- "id": "txt-0",
2831
- "type": "text-delta",
2832
- },
2833
- {
2834
- "delta": ").",
2835
- "id": "txt-0",
2836
- "type": "text-delta",
2837
- },
2838
- {
2839
- "delta": " This",
2840
- "id": "txt-0",
2841
- "type": "text-delta",
2842
- },
2843
- {
2844
- "delta": " collective",
2845
- "id": "txt-0",
2846
- "type": "text-delta",
2847
- },
2848
- {
2849
- "delta": " act",
2850
- "id": "txt-0",
2851
- "type": "text-delta",
2852
- },
2853
- {
2854
- "delta": " reduces",
2855
- "id": "txt-0",
2856
- "type": "text-delta",
2857
- },
2858
- {
2859
- "delta": " light",
2860
- "id": "txt-0",
2861
- "type": "text-delta",
2862
- },
2863
- {
2864
- "delta": " pollution",
2865
- "id": "txt-0",
2866
- "type": "text-delta",
2867
- },
2868
- {
2869
- "delta": ",",
2870
- "id": "txt-0",
2871
- "type": "text-delta",
2872
- },
2873
- {
2874
- "delta": " literally",
2875
- "id": "txt-0",
2876
- "type": "text-delta",
2877
- },
2878
- {
2879
- "delta": " and",
2880
- "id": "txt-0",
2881
- "type": "text-delta",
2882
- },
2883
- {
2884
- "delta": " metaphor",
2885
- "id": "txt-0",
2886
- "type": "text-delta",
2887
- },
2888
- {
2889
- "delta": "ically",
2890
- "id": "txt-0",
2891
- "type": "text-delta",
2892
- },
2893
- {
2894
- "delta": " making",
2895
- "id": "txt-0",
2896
- "type": "text-delta",
2897
- },
2898
- {
2899
- "delta": " space",
2900
- "id": "txt-0",
2901
- "type": "text-delta",
2902
- },
2903
- {
2904
- "delta": " for",
2905
- "id": "txt-0",
2906
- "type": "text-delta",
2907
- },
2908
- {
2909
- "delta": " the",
2910
- "id": "txt-0",
2911
- "type": "text-delta",
2912
- },
2913
- {
2914
- "delta": " stars",
2915
- "id": "txt-0",
2916
- "type": "text-delta",
2917
- },
2918
- {
2919
- "delta": "—",
2920
- "id": "txt-0",
2921
- "type": "text-delta",
2922
- },
2923
- {
2924
- "delta": "and",
2925
- "id": "txt-0",
2926
- "type": "text-delta",
2927
- },
2928
- {
2929
- "delta": " for",
2930
- "id": "txt-0",
2931
- "type": "text-delta",
2932
- },
2933
- {
2934
- "delta": " reflection",
2935
- "id": "txt-0",
2936
- "type": "text-delta",
2937
- },
2938
- {
2939
- "delta": ".
2940
-
2941
- ",
2942
- "id": "txt-0",
2943
- "type": "text-delta",
2944
- },
2945
- {
2946
- "delta": "**",
2947
- "id": "txt-0",
2948
- "type": "text-delta",
2949
- },
2950
- {
2951
- "delta": "2",
2952
- "id": "txt-0",
2953
- "type": "text-delta",
2954
- },
2955
- {
2956
- "delta": ".",
2957
- "id": "txt-0",
2958
- "type": "text-delta",
2959
- },
2960
- {
2961
- "delta": " Craft",
2962
- "id": "txt-0",
2963
- "type": "text-delta",
2964
- },
2965
- {
2966
- "delta": "ing",
2967
- "id": "txt-0",
2968
- "type": "text-delta",
2969
- },
2970
- {
2971
- "delta": " Constellation",
2972
- "id": "txt-0",
2973
- "type": "text-delta",
2974
- },
2975
- {
2976
- "delta": " J",
2977
- "id": "txt-0",
2978
- "type": "text-delta",
2979
- },
2980
- {
2981
- "delta": "ars",
2982
- "id": "txt-0",
2983
- "type": "text-delta",
2984
- },
2985
- {
2986
- "delta": ":",
2987
- "id": "txt-0",
2988
- "type": "text-delta",
2989
- },
2990
- {
2991
- "delta": "**
2992
- ",
2993
- "id": "txt-0",
2994
- "type": "text-delta",
2995
- },
2996
- {
2997
- "delta": "In",
2998
- "id": "txt-0",
2999
- "type": "text-delta",
3000
- },
3001
- {
3002
- "delta": " the",
3003
- "id": "txt-0",
3004
- "type": "text-delta",
3005
- },
3006
- {
3007
- "delta": " days",
3008
- "id": "txt-0",
3009
- "type": "text-delta",
3010
- },
3011
- {
3012
- "delta": " leading",
3013
- "id": "txt-0",
3014
- "type": "text-delta",
3015
- },
3016
- {
3017
- "delta": " up",
3018
- "id": "txt-0",
3019
- "type": "text-delta",
3020
- },
3021
- {
3022
- "delta": " to",
3023
- "id": "txt-0",
3024
- "type": "text-delta",
3025
- },
3026
- {
3027
- "delta": " the",
3028
- "id": "txt-0",
3029
- "type": "text-delta",
3030
- },
3031
- {
3032
- "delta": " holiday",
3033
- "id": "txt-0",
3034
- "type": "text-delta",
3035
- },
3036
- {
3037
- "delta": ",",
3038
- "id": "txt-0",
3039
- "type": "text-delta",
3040
- },
3041
- {
3042
- "delta": " people",
3043
- "id": "txt-0",
3044
- "type": "text-delta",
3045
- },
3046
- {
3047
- "delta": " create",
3048
- "id": "txt-0",
3049
- "type": "text-delta",
3050
- },
3051
- {
3052
- "delta": " "",
3053
- "id": "txt-0",
3054
- "type": "text-delta",
3055
- },
3056
- {
3057
- "delta": "Const",
3058
- "id": "txt-0",
3059
- "type": "text-delta",
3060
- },
3061
- {
3062
- "delta": "ellation",
3063
- "id": "txt-0",
3064
- "type": "text-delta",
3065
- },
3066
- {
3067
- "delta": " J",
3068
- "id": "txt-0",
3069
- "type": "text-delta",
3070
- },
3071
- {
3072
- "delta": "ars",
3073
- "id": "txt-0",
3074
- "type": "text-delta",
3075
- },
3076
- {
3077
- "delta": "."",
3078
- "id": "txt-0",
3079
- "type": "text-delta",
3080
- },
3081
- {
3082
- "delta": " They",
3083
- "id": "txt-0",
3084
- "type": "text-delta",
3085
- },
3086
- {
3087
- "delta": " take",
3088
- "id": "txt-0",
3089
- "type": "text-delta",
3090
- },
3091
- {
3092
- "delta": " a",
3093
- "id": "txt-0",
3094
- "type": "text-delta",
3095
- },
3096
- {
3097
- "delta": " clear",
3098
- "id": "txt-0",
3099
- "type": "text-delta",
3100
- },
3101
- {
3102
- "delta": " jar",
3103
- "id": "txt-0",
3104
- "type": "text-delta",
3105
- },
3106
- {
3107
- "delta": " and",
3108
- "id": "txt-0",
3109
- "type": "text-delta",
3110
- },
3111
- {
3112
- "delta": ",",
3113
- "id": "txt-0",
3114
- "type": "text-delta",
3115
- },
3116
- {
3117
- "delta": " using",
3118
- "id": "txt-0",
3119
- "type": "text-delta",
3120
- },
3121
- {
3122
- "delta": " a",
3123
- "id": "txt-0",
3124
- "type": "text-delta",
3125
- },
3126
- {
3127
- "delta": " small",
3128
- "id": "txt-0",
3129
- "type": "text-delta",
3130
- },
3131
- {
3132
- "delta": " drill",
3133
- "id": "txt-0",
3134
- "type": "text-delta",
3135
- },
3136
- {
3137
- "delta": " or",
3138
- "id": "txt-0",
3139
- "type": "text-delta",
3140
- },
3141
- {
3142
- "delta": " adhesive",
3143
- "id": "txt-0",
3144
- "type": "text-delta",
3145
- },
3146
- {
3147
- "delta": ",",
3148
- "id": "txt-0",
3149
- "type": "text-delta",
3150
- },
3151
- {
3152
- "delta": " create",
3153
- "id": "txt-0",
3154
- "type": "text-delta",
3155
- },
3156
- {
3157
- "delta": " a",
3158
- "id": "txt-0",
3159
- "type": "text-delta",
3160
- },
3161
- {
3162
- "delta": " pattern",
3163
- "id": "txt-0",
3164
- "type": "text-delta",
3165
- },
3166
- {
3167
- "delta": " of",
3168
- "id": "txt-0",
3169
- "type": "text-delta",
3170
- },
3171
- {
3172
- "delta": " holes",
3173
- "id": "txt-0",
3174
- "type": "text-delta",
3175
- },
3176
- {
3177
- "delta": " on",
3178
- "id": "txt-0",
3179
- "type": "text-delta",
3180
- },
3181
- {
3182
- "delta": " its",
3183
- "id": "txt-0",
3184
- "type": "text-delta",
3185
- },
3186
- {
3187
- "delta": " lid",
3188
- "id": "txt-0",
3189
- "type": "text-delta",
3190
- },
3191
- {
3192
- "delta": " representing",
3193
- "id": "txt-0",
3194
- "type": "text-delta",
3195
- },
3196
- {
3197
- "delta": " the",
3198
- "id": "txt-0",
3199
- "type": "text-delta",
3200
- },
3201
- {
3202
- "delta": " stars",
3203
- "id": "txt-0",
3204
- "type": "text-delta",
3205
- },
3206
- {
3207
- "delta": " of",
3208
- "id": "txt-0",
3209
- "type": "text-delta",
3210
- },
3211
- {
3212
- "delta": " a",
3213
- "id": "txt-0",
3214
- "type": "text-delta",
3215
- },
3216
- {
3217
- "delta": " specific",
3218
- "id": "txt-0",
3219
- "type": "text-delta",
3220
- },
3221
- {
3222
- "delta": " constellation",
3223
- "id": "txt-0",
3224
- "type": "text-delta",
3225
- },
3226
- {
3227
- "delta": ".",
3228
- "id": "txt-0",
3229
- "type": "text-delta",
3230
- },
3231
- {
3232
- "delta": " On",
3233
- "id": "txt-0",
3234
- "type": "text-delta",
3235
- },
3236
- {
3237
- "delta": " the",
3238
- "id": "txt-0",
3239
- "type": "text-delta",
3240
- },
3241
- {
3242
- "delta": " night",
3243
- "id": "txt-0",
3244
- "type": "text-delta",
3245
- },
3246
- {
3247
- "delta": " of",
3248
- "id": "txt-0",
3249
- "type": "text-delta",
3250
- },
3251
- {
3252
- "delta": " the",
3253
- "id": "txt-0",
3254
- "type": "text-delta",
3255
- },
3256
- {
3257
- "delta": " holiday",
3258
- "id": "txt-0",
3259
- "type": "text-delta",
3260
- },
3261
- {
3262
- "delta": ",",
3263
- "id": "txt-0",
3264
- "type": "text-delta",
3265
- },
3266
- {
3267
- "delta": " a",
3268
- "id": "txt-0",
3269
- "type": "text-delta",
3270
- },
3271
- {
3272
- "delta": " small",
3273
- "id": "txt-0",
3274
- "type": "text-delta",
3275
- },
3276
- {
3277
- "delta": ",",
3278
- "id": "txt-0",
3279
- "type": "text-delta",
3280
- },
3281
- {
3282
- "delta": " battery",
3283
- "id": "txt-0",
3284
- "type": "text-delta",
3285
- },
3286
- {
3287
- "delta": "-operated",
3288
- "id": "txt-0",
3289
- "type": "text-delta",
3290
- },
3291
- {
3292
- "delta": " tea",
3293
- "id": "txt-0",
3294
- "type": "text-delta",
3295
- },
3296
- {
3297
- "delta": " light",
3298
- "id": "txt-0",
3299
- "type": "text-delta",
3300
- },
3301
- {
3302
- "delta": " is",
3303
- "id": "txt-0",
3304
- "type": "text-delta",
3305
- },
3306
- {
3307
- "delta": " placed",
3308
- "id": "txt-0",
3309
- "type": "text-delta",
3310
- },
3311
- {
3312
- "delta": " inside",
3313
- "id": "txt-0",
3314
- "type": "text-delta",
3315
- },
3316
- {
3317
- "delta": ".",
3318
- "id": "txt-0",
3319
- "type": "text-delta",
3320
- },
3321
- {
3322
- "delta": " Each",
3323
- "id": "txt-0",
3324
- "type": "text-delta",
3325
- },
3326
- {
3327
- "delta": " jar",
3328
- "id": "txt-0",
3329
- "type": "text-delta",
3330
- },
3331
- {
3332
- "delta": " is",
3333
- "id": "txt-0",
3334
- "type": "text-delta",
3335
- },
3336
- {
3337
- "delta": " dedicated",
3338
- "id": "txt-0",
3339
- "type": "text-delta",
3340
- },
3341
- {
3342
- "delta": " to",
3343
- "id": "txt-0",
3344
- "type": "text-delta",
3345
- },
3346
- {
3347
- "delta": " someone",
3348
- "id": "txt-0",
3349
- "type": "text-delta",
3350
- },
3351
- {
3352
- "delta": " or",
3353
- "id": "txt-0",
3354
- "type": "text-delta",
3355
- },
3356
- {
3357
- "delta": " something",
3358
- "id": "txt-0",
3359
- "type": "text-delta",
3360
- },
3361
- {
3362
- "delta": " remembered",
3363
- "id": "txt-0",
3364
- "type": "text-delta",
3365
- },
3366
- {
3367
- "delta": ".",
3368
- "id": "txt-0",
3369
- "type": "text-delta",
3370
- },
3371
- {
3372
- "delta": " The",
3373
- "id": "txt-0",
3374
- "type": "text-delta",
3375
- },
3376
- {
3377
- "delta": " constellation",
3378
- "id": "txt-0",
3379
- "type": "text-delta",
3380
- },
3381
- {
3382
- "delta": " might",
3383
- "id": "txt-0",
3384
- "type": "text-delta",
3385
- },
3386
- {
3387
- "delta": " be",
3388
- "id": "txt-0",
3389
- "type": "text-delta",
3390
- },
3391
- {
3392
- "delta": " their",
3393
- "id": "txt-0",
3394
- "type": "text-delta",
3395
- },
3396
- {
3397
- "delta": " birth",
3398
- "id": "txt-0",
3399
- "type": "text-delta",
3400
- },
3401
- {
3402
- "delta": " sign",
3403
- "id": "txt-0",
3404
- "type": "text-delta",
3405
- },
3406
- {
3407
- "delta": ",",
3408
- "id": "txt-0",
3409
- "type": "text-delta",
3410
- },
3411
- {
3412
- "delta": " a",
3413
- "id": "txt-0",
3414
- "type": "text-delta",
3415
- },
3416
- {
3417
- "delta": " shape",
3418
- "id": "txt-0",
3419
- "type": "text-delta",
3420
- },
3421
- {
3422
- "delta": " that",
3423
- "id": "txt-0",
3424
- "type": "text-delta",
3425
- },
3426
- {
3427
- "delta": " reminds",
3428
- "id": "txt-0",
3429
- "type": "text-delta",
3430
- },
3431
- {
3432
- "delta": " the",
3433
- "id": "txt-0",
3434
- "type": "text-delta",
3435
- },
3436
- {
3437
- "delta": " maker",
3438
- "id": "txt-0",
3439
- "type": "text-delta",
3440
- },
3441
- {
3442
- "delta": " of",
3443
- "id": "txt-0",
3444
- "type": "text-delta",
3445
- },
3446
- {
3447
- "delta": " them",
3448
- "id": "txt-0",
3449
- "type": "text-delta",
3450
- },
3451
- {
3452
- "delta": ",",
3453
- "id": "txt-0",
3454
- "type": "text-delta",
3455
- },
3456
- {
3457
- "delta": " or",
3458
- "id": "txt-0",
3459
- "type": "text-delta",
3460
- },
3461
- {
3462
- "delta": " simply",
3463
- "id": "txt-0",
3464
- "type": "text-delta",
3465
- },
3466
- {
3467
- "delta": " the",
3468
- "id": "txt-0",
3469
- "type": "text-delta",
3470
- },
3471
- {
3472
- "delta": " pattern",
3473
- "id": "txt-0",
3474
- "type": "text-delta",
3475
- },
3476
- {
3477
- "delta": " of",
3478
- "id": "txt-0",
3479
- "type": "text-delta",
3480
- },
3481
- {
3482
- "delta": " the",
3483
- "id": "txt-0",
3484
- "type": "text-delta",
3485
- },
3486
- {
3487
- "delta": " sky",
3488
- "id": "txt-0",
3489
- "type": "text-delta",
3490
- },
3491
- {
3492
- "delta": " on",
3493
- "id": "txt-0",
3494
- "type": "text-delta",
3495
- },
3496
- {
3497
- "delta": " the",
3498
- "id": "txt-0",
3499
- "type": "text-delta",
3500
- },
3501
- {
3502
- "delta": " night",
3503
- "id": "txt-0",
3504
- "type": "text-delta",
3505
- },
3506
- {
3507
- "delta": " they",
3508
- "id": "txt-0",
3509
- "type": "text-delta",
3510
- },
3511
- {
3512
- "delta": " passed",
3513
- "id": "txt-0",
3514
- "type": "text-delta",
3515
- },
3516
- {
3517
- "delta": ".
3518
-
3519
- ",
3520
- "id": "txt-0",
3521
- "type": "text-delta",
3522
- },
3523
- {
3524
- "delta": "**",
3525
- "id": "txt-0",
3526
- "type": "text-delta",
3527
- },
3528
- {
3529
- "delta": "3",
3530
- "id": "txt-0",
3531
- "type": "text-delta",
3532
- },
3533
- {
3534
- "delta": ".",
3535
- "id": "txt-0",
3536
- "type": "text-delta",
3537
- },
3538
- {
3539
- "delta": " The",
3540
- "id": "txt-0",
3541
- "type": "text-delta",
3542
- },
3543
- {
3544
- "delta": " Silent",
3545
- "id": "txt-0",
3546
- "type": "text-delta",
3547
- },
3548
- {
3549
- "delta": " Vig",
3550
- "id": "txt-0",
3551
- "type": "text-delta",
3552
- },
3553
- {
3554
- "delta": "il",
3555
- "id": "txt-0",
3556
- "type": "text-delta",
3557
- },
3558
- {
3559
- "delta": " &",
3560
- "id": "txt-0",
3561
- "type": "text-delta",
3562
- },
3563
- {
3564
- "delta": " Story",
3565
- "id": "txt-0",
3566
- "type": "text-delta",
3567
- },
3568
- {
3569
- "delta": " Stars",
3570
- "id": "txt-0",
3571
- "type": "text-delta",
3572
- },
3573
- {
3574
- "delta": ":",
3575
- "id": "txt-0",
3576
- "type": "text-delta",
3577
- },
3578
- {
3579
- "delta": "**
3580
- ",
3581
- "id": "txt-0",
3582
- "type": "text-delta",
3583
- },
3584
- {
3585
- "delta": "At",
3586
- "id": "txt-0",
3587
- "type": "text-delta",
3588
- },
3589
- {
3590
- "delta": " a",
3591
- "id": "txt-0",
3592
- "type": "text-delta",
3593
- },
3594
- {
3595
- "delta": " designated",
3596
- "id": "txt-0",
3597
- "type": "text-delta",
3598
- },
3599
- {
3600
- "delta": " time",
3601
- "id": "txt-0",
3602
- "type": "text-delta",
3603
- },
3604
- {
3605
- "delta": " (",
3606
- "id": "txt-0",
3607
- "type": "text-delta",
3608
- },
3609
- {
3610
- "delta": "e",
3611
- "id": "txt-0",
3612
- "type": "text-delta",
3613
- },
3614
- {
3615
- "delta": ".g",
3616
- "id": "txt-0",
3617
- "type": "text-delta",
3618
- },
3619
- {
3620
- "delta": ".,",
3621
- "id": "txt-0",
3622
- "type": "text-delta",
3623
- },
3624
- {
3625
- "delta": " ",
3626
- "id": "txt-0",
3627
- "type": "text-delta",
3628
- },
3629
- {
3630
- "delta": "9",
3631
- "id": "txt-0",
3632
- "type": "text-delta",
3633
- },
3634
- {
3635
- "delta": " PM",
3636
- "id": "txt-0",
3637
- "type": "text-delta",
3638
- },
3639
- {
3640
- "delta": " local",
3641
- "id": "txt-0",
3642
- "type": "text-delta",
3643
- },
3644
- {
3645
- "delta": " time",
3646
- "id": "txt-0",
3647
- "type": "text-delta",
3648
- },
3649
- {
3650
- "delta": "),",
3651
- "id": "txt-0",
3652
- "type": "text-delta",
3653
- },
3654
- {
3655
- "delta": " people",
3656
- "id": "txt-0",
3657
- "type": "text-delta",
3658
- },
3659
- {
3660
- "delta": " step",
3661
- "id": "txt-0",
3662
- "type": "text-delta",
3663
- },
3664
- {
3665
- "delta": " outside",
3666
- "id": "txt-0",
3667
- "type": "text-delta",
3668
- },
3669
- {
3670
- "delta": ",",
3671
- "id": "txt-0",
3672
- "type": "text-delta",
3673
- },
3674
- {
3675
- "delta": " alone",
3676
- "id": "txt-0",
3677
- "type": "text-delta",
3678
- },
3679
- {
3680
- "delta": " or",
3681
- "id": "txt-0",
3682
- "type": "text-delta",
3683
- },
3684
- {
3685
- "delta": " in",
3686
- "id": "txt-0",
3687
- "type": "text-delta",
3688
- },
3689
- {
3690
- "delta": " quiet",
3691
- "id": "txt-0",
3692
- "type": "text-delta",
3693
- },
3694
- {
3695
- "delta": " groups",
3696
- "id": "txt-0",
3697
- "type": "text-delta",
3698
- },
3699
- {
3700
- "delta": ",",
3701
- "id": "txt-0",
3702
- "type": "text-delta",
3703
- },
3704
- {
3705
- "delta": " and",
3706
- "id": "txt-0",
3707
- "type": "text-delta",
3708
- },
3709
- {
3710
- "delta": " observe",
3711
- "id": "txt-0",
3712
- "type": "text-delta",
3713
- },
3714
- {
3715
- "delta": " ",
3716
- "id": "txt-0",
3717
- "type": "text-delta",
3718
- },
3719
- {
3720
- "delta": "15",
3721
- "id": "txt-0",
3722
- "type": "text-delta",
3723
- },
3724
- {
3725
- "delta": " minutes",
3726
- "id": "txt-0",
3727
- "type": "text-delta",
3728
- },
3729
- {
3730
- "delta": " of",
3731
- "id": "txt-0",
3732
- "type": "text-delta",
3733
- },
3734
- {
3735
- "delta": " silent",
3736
- "id": "txt-0",
3737
- "type": "text-delta",
3738
- },
3739
- {
3740
- "delta": " looking",
3741
- "id": "txt-0",
3742
- "type": "text-delta",
3743
- },
3744
- {
3745
- "delta": " at",
3746
- "id": "txt-0",
3747
- "type": "text-delta",
3748
- },
3749
- {
3750
- "id": "txt-0",
3751
- "type": "text-end",
3752
- },
3753
- {
3754
- "finishReason": {
3755
- "raw": "length",
3756
- "unified": "length",
3757
- },
3758
- "providerMetadata": {
3759
- "deepseek": {
3760
- "promptCacheHitTokens": 0,
3761
- "promptCacheMissTokens": 13,
3762
- },
3763
- },
3764
- "type": "finish",
3765
- "usage": {
3766
- "inputTokens": {
3767
- "cacheRead": 0,
3768
- "cacheWrite": undefined,
3769
- "noCache": 13,
3770
- "total": 13,
3771
- },
3772
- "outputTokens": {
3773
- "reasoning": 0,
3774
- "text": 400,
3775
- "total": 400,
3776
- },
3777
- "raw": {
3778
- "completion_tokens": 400,
3779
- "prompt_cache_hit_tokens": 0,
3780
- "prompt_cache_miss_tokens": 13,
3781
- "prompt_tokens": 13,
3782
- "total_tokens": 413,
3783
- },
3784
- },
3785
- },
3786
- ]
3787
- `;
3788
-
3789
- exports[`DeepSeekChatLanguageModel > doStream > tool call > should stream tool call 1`] = `
3790
- [
3791
- {
3792
- "type": "stream-start",
3793
- "warnings": [],
3794
- },
3795
- {
3796
- "id": "cca85624-4056-401f-b220-d77601d1f70d",
3797
- "modelId": "deepseek-reasoner",
3798
- "timestamp": 2025-12-02T08:36:08.000Z,
3799
- "type": "response-metadata",
3800
- },
3801
- {
3802
- "id": "reasoning-0",
3803
- "type": "reasoning-start",
3804
- },
3805
- {
3806
- "delta": "The",
3807
- "id": "reasoning-0",
3808
- "type": "reasoning-delta",
3809
- },
3810
- {
3811
- "delta": " user",
3812
- "id": "reasoning-0",
3813
- "type": "reasoning-delta",
3814
- },
3815
- {
3816
- "delta": " is",
3817
- "id": "reasoning-0",
3818
- "type": "reasoning-delta",
3819
- },
3820
- {
3821
- "delta": " asking",
3822
- "id": "reasoning-0",
3823
- "type": "reasoning-delta",
3824
- },
3825
- {
3826
- "delta": " for",
3827
- "id": "reasoning-0",
3828
- "type": "reasoning-delta",
3829
- },
3830
- {
3831
- "delta": " the",
3832
- "id": "reasoning-0",
3833
- "type": "reasoning-delta",
3834
- },
3835
- {
3836
- "delta": " weather",
3837
- "id": "reasoning-0",
3838
- "type": "reasoning-delta",
3839
- },
3840
- {
3841
- "delta": " in",
3842
- "id": "reasoning-0",
3843
- "type": "reasoning-delta",
3844
- },
3845
- {
3846
- "delta": " San",
3847
- "id": "reasoning-0",
3848
- "type": "reasoning-delta",
3849
- },
3850
- {
3851
- "delta": " Francisco",
3852
- "id": "reasoning-0",
3853
- "type": "reasoning-delta",
3854
- },
3855
- {
3856
- "delta": ".",
3857
- "id": "reasoning-0",
3858
- "type": "reasoning-delta",
3859
- },
3860
- {
3861
- "delta": " I",
3862
- "id": "reasoning-0",
3863
- "type": "reasoning-delta",
3864
- },
3865
- {
3866
- "delta": " need",
3867
- "id": "reasoning-0",
3868
- "type": "reasoning-delta",
3869
- },
3870
- {
3871
- "delta": " to",
3872
- "id": "reasoning-0",
3873
- "type": "reasoning-delta",
3874
- },
3875
- {
3876
- "delta": " use",
3877
- "id": "reasoning-0",
3878
- "type": "reasoning-delta",
3879
- },
3880
- {
3881
- "delta": " the",
3882
- "id": "reasoning-0",
3883
- "type": "reasoning-delta",
3884
- },
3885
- {
3886
- "delta": " weather",
3887
- "id": "reasoning-0",
3888
- "type": "reasoning-delta",
3889
- },
3890
- {
3891
- "delta": " tool",
3892
- "id": "reasoning-0",
3893
- "type": "reasoning-delta",
3894
- },
3895
- {
3896
- "delta": " to",
3897
- "id": "reasoning-0",
3898
- "type": "reasoning-delta",
3899
- },
3900
- {
3901
- "delta": " get",
3902
- "id": "reasoning-0",
3903
- "type": "reasoning-delta",
3904
- },
3905
- {
3906
- "delta": " this",
3907
- "id": "reasoning-0",
3908
- "type": "reasoning-delta",
3909
- },
3910
- {
3911
- "delta": " information",
3912
- "id": "reasoning-0",
3913
- "type": "reasoning-delta",
3914
- },
3915
- {
3916
- "delta": ".",
3917
- "id": "reasoning-0",
3918
- "type": "reasoning-delta",
3919
- },
3920
- {
3921
- "delta": " Let",
3922
- "id": "reasoning-0",
3923
- "type": "reasoning-delta",
3924
- },
3925
- {
3926
- "delta": " me",
3927
- "id": "reasoning-0",
3928
- "type": "reasoning-delta",
3929
- },
3930
- {
3931
- "delta": " invoke",
3932
- "id": "reasoning-0",
3933
- "type": "reasoning-delta",
3934
- },
3935
- {
3936
- "delta": " the",
3937
- "id": "reasoning-0",
3938
- "type": "reasoning-delta",
3939
- },
3940
- {
3941
- "delta": " weather",
3942
- "id": "reasoning-0",
3943
- "type": "reasoning-delta",
3944
- },
3945
- {
3946
- "delta": " tool",
3947
- "id": "reasoning-0",
3948
- "type": "reasoning-delta",
3949
- },
3950
- {
3951
- "delta": " with",
3952
- "id": "reasoning-0",
3953
- "type": "reasoning-delta",
3954
- },
3955
- {
3956
- "delta": " the",
3957
- "id": "reasoning-0",
3958
- "type": "reasoning-delta",
3959
- },
3960
- {
3961
- "delta": " location",
3962
- "id": "reasoning-0",
3963
- "type": "reasoning-delta",
3964
- },
3965
- {
3966
- "delta": " parameter",
3967
- "id": "reasoning-0",
3968
- "type": "reasoning-delta",
3969
- },
3970
- {
3971
- "delta": " set",
3972
- "id": "reasoning-0",
3973
- "type": "reasoning-delta",
3974
- },
3975
- {
3976
- "delta": " to",
3977
- "id": "reasoning-0",
3978
- "type": "reasoning-delta",
3979
- },
3980
- {
3981
- "delta": " "",
3982
- "id": "reasoning-0",
3983
- "type": "reasoning-delta",
3984
- },
3985
- {
3986
- "delta": "San",
3987
- "id": "reasoning-0",
3988
- "type": "reasoning-delta",
3989
- },
3990
- {
3991
- "delta": " Francisco",
3992
- "id": "reasoning-0",
3993
- "type": "reasoning-delta",
3994
- },
3995
- {
3996
- "delta": "".",
3997
- "id": "reasoning-0",
3998
- "type": "reasoning-delta",
3999
- },
4000
- {
4001
- "id": "reasoning-0",
4002
- "type": "reasoning-end",
4003
- },
4004
- {
4005
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4006
- "toolName": "weather",
4007
- "type": "tool-input-start",
4008
- },
4009
- {
4010
- "delta": "{",
4011
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4012
- "type": "tool-input-delta",
4013
- },
4014
- {
4015
- "delta": """,
4016
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4017
- "type": "tool-input-delta",
4018
- },
4019
- {
4020
- "delta": "location",
4021
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4022
- "type": "tool-input-delta",
4023
- },
4024
- {
4025
- "delta": """,
4026
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4027
- "type": "tool-input-delta",
4028
- },
4029
- {
4030
- "delta": ": ",
4031
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4032
- "type": "tool-input-delta",
4033
- },
4034
- {
4035
- "delta": """,
4036
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4037
- "type": "tool-input-delta",
4038
- },
4039
- {
4040
- "delta": "San",
4041
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4042
- "type": "tool-input-delta",
4043
- },
4044
- {
4045
- "delta": " Francisco",
4046
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4047
- "type": "tool-input-delta",
4048
- },
4049
- {
4050
- "delta": """,
4051
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4052
- "type": "tool-input-delta",
4053
- },
4054
- {
4055
- "delta": "}",
4056
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4057
- "type": "tool-input-delta",
4058
- },
4059
- {
4060
- "id": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4061
- "type": "tool-input-end",
4062
- },
4063
- {
4064
- "input": "{"location": "San Francisco"}",
4065
- "toolCallId": "call_00_ioIn7yN9p1ZOMNpDLwd4MgAF",
4066
- "toolName": "weather",
4067
- "type": "tool-call",
4068
- },
4069
- {
4070
- "finishReason": {
4071
- "raw": "tool_calls",
4072
- "unified": "tool-calls",
4073
- },
4074
- "providerMetadata": {
4075
- "deepseek": {
4076
- "promptCacheHitTokens": 320,
4077
- "promptCacheMissTokens": 19,
4078
- },
4079
- },
4080
- "type": "finish",
4081
- "usage": {
4082
- "inputTokens": {
4083
- "cacheRead": 320,
4084
- "cacheWrite": undefined,
4085
- "noCache": 19,
4086
- "total": 339,
4087
- },
4088
- "outputTokens": {
4089
- "reasoning": 39,
4090
- "text": 44,
4091
- "total": 83,
4092
- },
4093
- "raw": {
4094
- "completion_tokens": 83,
4095
- "completion_tokens_details": {
4096
- "reasoning_tokens": 39,
4097
- },
4098
- "prompt_cache_hit_tokens": 320,
4099
- "prompt_cache_miss_tokens": 19,
4100
- "prompt_tokens": 339,
4101
- "total_tokens": 422,
4102
- },
4103
- },
4104
- },
4105
- ]
4106
- `;