opencode-cmd-provider 1.5.0 → 1.5.1
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,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.1 - 2026-08-24
|
|
4
|
+
|
|
5
|
+
Fix: provider parsers now synthesize the full reasoning and text lifecycle —
|
|
6
|
+
`reasoning-start`/`reasoning-end` and `text-start`/`text-end` — for both
|
|
7
|
+
OpenAI-style and Anthropic-style streams, so AI SDK consumers see balanced
|
|
8
|
+
section boundaries instead of missing or duplicated end events.
|
|
9
|
+
|
|
10
|
+
### Fixes
|
|
11
|
+
|
|
12
|
+
- **OpenAI-style streams** now emit `reasoning-start` before the first
|
|
13
|
+
reasoning delta and `reasoning-end` before text, tool calls, or finish; the
|
|
14
|
+
same for `text-start`/`text-end`. Reasoning and text sections use stable ids
|
|
15
|
+
from the first chunk (instead of per-chunk ids), and unfinished sections are
|
|
16
|
+
closed when the stream finishes.
|
|
17
|
+
- **Anthropic-style streams** now recognize `thinking` blocks and emit
|
|
18
|
+
`reasoning-start`/`reasoning-delta`/`reasoning-end` for them. `content_block_stop`
|
|
19
|
+
closes each block with the correct end event per its type (`text-end`,
|
|
20
|
+
`reasoning-end`, or `tool-input-end` + a single `tool-call`), replacing the
|
|
21
|
+
previous "emit both text-end and tool-input-end" pair that left consumers to
|
|
22
|
+
ignore the spurious one.
|
|
23
|
+
- New `tests/stream.test.ts` cases cover the OpenAI reasoning→text ordering,
|
|
24
|
+
reasoning-only finishes, and the Anthropic thinking-block lifecycle;
|
|
25
|
+
`tests/provider-parity.test.ts` accepts `text-start` as the first text part.
|
|
26
|
+
|
|
3
27
|
## 1.5.0 - 2026-08-23
|
|
4
28
|
|
|
5
29
|
Feature: the `[CMD] ` display-name prefix for auto-registered models is now
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const FACTS_SOURCE_URL = "https://unpkg.com/command-code@1.32.1/dist/bundled/command-code-knowledge/reference/models.md";
|
|
2
2
|
export declare const MODALITIES_SOURCE_URL = "https://unpkg.com/command-code@1.32.1/dist/cli.mjs";
|
|
3
3
|
export declare const FACTS_PACKAGE_VERSION = "1.32.1";
|
|
4
|
-
export declare const FACTS_LAST_REFRESHED = "2026-08-
|
|
4
|
+
export declare const FACTS_LAST_REFRESHED = "2026-08-24";
|
|
5
5
|
export declare const MODEL_EFFORTS: Readonly<Record<string, readonly string[]>>;
|
|
6
6
|
export declare const MODEL_COSTS: Readonly<Record<string, {
|
|
7
7
|
input: number;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
export const FACTS_SOURCE_URL = "https://unpkg.com/command-code@1.32.1/dist/bundled/command-code-knowledge/reference/models.md";
|
|
8
8
|
export const MODALITIES_SOURCE_URL = "https://unpkg.com/command-code@1.32.1/dist/cli.mjs";
|
|
9
9
|
export const FACTS_PACKAGE_VERSION = "1.32.1";
|
|
10
|
-
export const FACTS_LAST_REFRESHED = "2026-08-
|
|
10
|
+
export const FACTS_LAST_REFRESHED = "2026-08-24";
|
|
11
11
|
export const MODEL_EFFORTS = {
|
|
12
12
|
"deepseek/deepseek-v4-pro": ["high", "max"],
|
|
13
13
|
"deepseek/deepseek-v4-flash": ["high", "max"],
|
|
@@ -51,5 +51,5 @@ export interface ModelDeals {
|
|
|
51
51
|
export declare const MODEL_DEALS: Readonly<Record<string, ModelDeals>>;
|
|
52
52
|
export declare const PLAN_CATALOG: Readonly<Record<PlanId, PlanInfo>>;
|
|
53
53
|
export declare const DEAL_SOURCE_URL = "https://commandcode.ai/docs/resources/pricing-limits";
|
|
54
|
-
export declare const DEAL_LAST_REFRESHED = "2026-08-
|
|
54
|
+
export declare const DEAL_LAST_REFRESHED = "2026-08-24";
|
|
55
55
|
export declare const DEAL_PACKAGE_VERSION = "docs";
|
|
@@ -74,5 +74,5 @@ export const PLAN_CATALOG = {
|
|
|
74
74
|
provider: { price: 15, credits: 0, window5h: 0, windowWeek: 0, display: "Provider" },
|
|
75
75
|
};
|
|
76
76
|
export const DEAL_SOURCE_URL = "https://commandcode.ai/docs/resources/pricing-limits";
|
|
77
|
-
export const DEAL_LAST_REFRESHED = "2026-08-
|
|
77
|
+
export const DEAL_LAST_REFRESHED = "2026-08-24";
|
|
78
78
|
export const DEAL_PACKAGE_VERSION = "docs";
|
|
@@ -338,6 +338,10 @@ export function anthropicEventToStreamPart(event) {
|
|
|
338
338
|
const id = `text-${index}`;
|
|
339
339
|
return [{ type: "text-start", id }];
|
|
340
340
|
}
|
|
341
|
+
if (blockType === "thinking") {
|
|
342
|
+
const id = stringValue(block?.id) ?? `thinking-${index}`;
|
|
343
|
+
return [{ type: "reasoning-start", id }];
|
|
344
|
+
}
|
|
341
345
|
if (blockType === "tool_use") {
|
|
342
346
|
const id = stringValue(block?.id) ?? `tool-${index}`;
|
|
343
347
|
const name = stringValue(block?.name) ?? "";
|
|
@@ -345,16 +349,32 @@ export function anthropicEventToStreamPart(event) {
|
|
|
345
349
|
}
|
|
346
350
|
return [];
|
|
347
351
|
}
|
|
352
|
+
if (type === "content_block_delta") {
|
|
353
|
+
const delta = asRecord(event.delta);
|
|
354
|
+
const index = numberValue(event.index) ?? 0;
|
|
355
|
+
const text = stringValue(delta?.text);
|
|
356
|
+
if (typeof text === "string" && text.length > 0) {
|
|
357
|
+
const id = `text-${index}`;
|
|
358
|
+
return [{ type: "text-delta", id, delta: text }];
|
|
359
|
+
}
|
|
360
|
+
const thinking = stringValue(delta?.thinking);
|
|
361
|
+
if (typeof thinking === "string" && thinking.length > 0) {
|
|
362
|
+
const id = `thinking-${index}`;
|
|
363
|
+
return [{ type: "reasoning-delta", id, delta: thinking }];
|
|
364
|
+
}
|
|
365
|
+
// Tool input delta: { type: "input_json_delta", partial_json: "..." }
|
|
366
|
+
const partial = stringValue(delta?.partial_json);
|
|
367
|
+
if (typeof partial === "string" && partial.length > 0) {
|
|
368
|
+
const id = `tool-${index}`;
|
|
369
|
+
// Emit as tool-input-delta; caller may have started tool
|
|
370
|
+
return [{ type: "tool-input-delta", id, delta: partial }];
|
|
371
|
+
}
|
|
372
|
+
return [];
|
|
373
|
+
}
|
|
348
374
|
if (type === "content_block_stop") {
|
|
349
375
|
// Stateless codec: the STOP event carries only `index`, not the block type.
|
|
350
|
-
// Anthropic streams either `text` or `tool_use` blocks; the AI SDK expects
|
|
351
|
-
// `text-end` for
|
|
352
|
-
// both is noisy (previous emitted two parts) but guarantees the right end
|
|
353
|
-
// is seen regardless of block type, and the consumer ignores the spurious
|
|
354
|
-
// one per AI SDK spec. Emit a single text-end here would break tool_use
|
|
355
|
-
// streams that rely on tool-input-end, so we keep the conservative pair
|
|
356
|
-
// with an explicit note referencing provider doc streaming (message_delta
|
|
357
|
-
// carries the final usage/finish; per-block ends are AI SDK concerns).
|
|
376
|
+
// Anthropic streams either `text`, `thinking` or `tool_use` blocks; the AI SDK expects
|
|
377
|
+
// `text-end` for text, `reasoning-end` for thinking, and `tool-input-end` for tool_use.
|
|
358
378
|
const index = numberValue(event.index) ?? 0;
|
|
359
379
|
const idText = `text-${index}`;
|
|
360
380
|
const idTool = `tool-${index}`;
|
|
@@ -395,6 +415,26 @@ export function createOpenAIStreamParser() {
|
|
|
395
415
|
// finish_reason here so the usage-only chunk's finish keeps the real reason
|
|
396
416
|
// (e.g. "length") instead of defaulting to "stop".
|
|
397
417
|
let lastFinishReason;
|
|
418
|
+
let reasoningStarted = false;
|
|
419
|
+
let reasoningEnded = false;
|
|
420
|
+
let reasoningId;
|
|
421
|
+
let textStarted = false;
|
|
422
|
+
let textEnded = false;
|
|
423
|
+
let textId;
|
|
424
|
+
function closeReasoning() {
|
|
425
|
+
if (reasoningStarted && !reasoningEnded && reasoningId) {
|
|
426
|
+
reasoningEnded = true;
|
|
427
|
+
return [{ type: "reasoning-end", id: reasoningId }];
|
|
428
|
+
}
|
|
429
|
+
return [];
|
|
430
|
+
}
|
|
431
|
+
function closeText() {
|
|
432
|
+
if (textStarted && !textEnded && textId) {
|
|
433
|
+
textEnded = true;
|
|
434
|
+
return [{ type: "text-end", id: textId }];
|
|
435
|
+
}
|
|
436
|
+
return [];
|
|
437
|
+
}
|
|
398
438
|
return (event) => {
|
|
399
439
|
if (!isRecord(event))
|
|
400
440
|
return [];
|
|
@@ -405,17 +445,42 @@ export function createOpenAIStreamParser() {
|
|
|
405
445
|
const parts = [];
|
|
406
446
|
const choice = firstChoice(event);
|
|
407
447
|
const delta = choice ? deltaFromChoice(choice) : undefined;
|
|
448
|
+
const eventId = stringValue(event.id);
|
|
408
449
|
if (delta) {
|
|
409
|
-
const content = stringValue(delta.content);
|
|
410
|
-
if (typeof content === "string" && content.length > 0) {
|
|
411
|
-
parts.push(textDeltaPart(event.id, content));
|
|
412
|
-
}
|
|
413
450
|
const reasoning = stringValue(delta.reasoning) ?? stringValue(delta.reasoning_content);
|
|
414
451
|
if (typeof reasoning === "string" && reasoning.length > 0) {
|
|
415
|
-
|
|
452
|
+
if (!reasoningStarted || reasoningEnded) {
|
|
453
|
+
if (textStarted && !textEnded) {
|
|
454
|
+
parts.push(...closeText());
|
|
455
|
+
}
|
|
456
|
+
reasoningStarted = true;
|
|
457
|
+
reasoningEnded = false;
|
|
458
|
+
reasoningId = eventId || "reasoning-0";
|
|
459
|
+
parts.push({ type: "reasoning-start", id: reasoningId });
|
|
460
|
+
}
|
|
461
|
+
parts.push(reasoningDeltaPart(reasoningId ?? eventId, reasoning));
|
|
462
|
+
}
|
|
463
|
+
const content = stringValue(delta.content);
|
|
464
|
+
if (typeof content === "string" && content.length > 0) {
|
|
465
|
+
if (reasoningStarted && !reasoningEnded) {
|
|
466
|
+
parts.push(...closeReasoning());
|
|
467
|
+
}
|
|
468
|
+
if (!textStarted || textEnded) {
|
|
469
|
+
textStarted = true;
|
|
470
|
+
textEnded = false;
|
|
471
|
+
textId = eventId || "text-0";
|
|
472
|
+
parts.push({ type: "text-start", id: textId });
|
|
473
|
+
}
|
|
474
|
+
parts.push(textDeltaPart(textId ?? eventId, content));
|
|
416
475
|
}
|
|
417
476
|
const toolCalls = delta.tool_calls ?? delta.toolCalls;
|
|
418
477
|
if (Array.isArray(toolCalls)) {
|
|
478
|
+
if (reasoningStarted && !reasoningEnded) {
|
|
479
|
+
parts.push(...closeReasoning());
|
|
480
|
+
}
|
|
481
|
+
if (textStarted && !textEnded) {
|
|
482
|
+
parts.push(...closeText());
|
|
483
|
+
}
|
|
419
484
|
for (const tc of toolCalls) {
|
|
420
485
|
if (!isRecord(tc))
|
|
421
486
|
continue;
|
|
@@ -475,6 +540,12 @@ export function createOpenAIStreamParser() {
|
|
|
475
540
|
if (finishReason)
|
|
476
541
|
lastFinishReason = finishReason;
|
|
477
542
|
if (lastFinishReason || hasUsage) {
|
|
543
|
+
if (reasoningStarted && !reasoningEnded) {
|
|
544
|
+
parts.push(...closeReasoning());
|
|
545
|
+
}
|
|
546
|
+
if (textStarted && !textEnded) {
|
|
547
|
+
parts.push(...closeText());
|
|
548
|
+
}
|
|
478
549
|
// Flush any tool call whose terminal args chunk never arrived.
|
|
479
550
|
for (const [index, buffer] of toolBuffers) {
|
|
480
551
|
if (buffer.started && !buffer.emitted) {
|
|
@@ -498,6 +569,7 @@ export function createOpenAIStreamParser() {
|
|
|
498
569
|
}
|
|
499
570
|
export function createAnthropicStreamParser() {
|
|
500
571
|
const toolBlocks = new Map();
|
|
572
|
+
const blockTypes = new Map();
|
|
501
573
|
return (event) => {
|
|
502
574
|
if (!isRecord(event))
|
|
503
575
|
return [];
|
|
@@ -507,13 +579,21 @@ export function createAnthropicStreamParser() {
|
|
|
507
579
|
const index = numberValue(event.index) ?? 0;
|
|
508
580
|
const blockType = stringValue(block?.type);
|
|
509
581
|
if (blockType === "tool_use") {
|
|
582
|
+
blockTypes.set(index, "tool_use");
|
|
510
583
|
const id = stringValue(block?.id) ?? `tool-${index}`;
|
|
511
584
|
const name = stringValue(block?.name) ?? "";
|
|
512
585
|
toolBlocks.set(index, { id, name, input: "", started: true, emitted: false });
|
|
513
586
|
return [{ type: "tool-input-start", id, toolName: name }];
|
|
514
587
|
}
|
|
515
|
-
if (blockType === "
|
|
588
|
+
if (blockType === "thinking") {
|
|
589
|
+
blockTypes.set(index, "thinking");
|
|
590
|
+
const id = stringValue(block?.id) ?? `thinking-${index}`;
|
|
591
|
+
return [{ type: "reasoning-start", id }];
|
|
592
|
+
}
|
|
593
|
+
if (blockType === "text") {
|
|
594
|
+
blockTypes.set(index, "text");
|
|
516
595
|
return [{ type: "text-start", id: `text-${index}` }];
|
|
596
|
+
}
|
|
517
597
|
return [];
|
|
518
598
|
}
|
|
519
599
|
if (type === "content_block_delta") {
|
|
@@ -523,6 +603,10 @@ export function createAnthropicStreamParser() {
|
|
|
523
603
|
if (typeof text === "string" && text.length > 0) {
|
|
524
604
|
return [{ type: "text-delta", id: `text-${index}`, delta: text }];
|
|
525
605
|
}
|
|
606
|
+
const thinking = stringValue(delta?.thinking);
|
|
607
|
+
if (typeof thinking === "string" && thinking.length > 0) {
|
|
608
|
+
return [{ type: "reasoning-delta", id: `thinking-${index}`, delta: thinking }];
|
|
609
|
+
}
|
|
526
610
|
const partial = stringValue(delta?.partial_json);
|
|
527
611
|
if (typeof partial === "string" && partial.length > 0) {
|
|
528
612
|
const block = toolBlocks.get(index);
|
|
@@ -557,6 +641,28 @@ export function createAnthropicStreamParser() {
|
|
|
557
641
|
}
|
|
558
642
|
if (type === "content_block_stop") {
|
|
559
643
|
const index = numberValue(event.index) ?? 0;
|
|
644
|
+
const bType = blockTypes.get(index);
|
|
645
|
+
blockTypes.delete(index);
|
|
646
|
+
if (bType === "tool_use") {
|
|
647
|
+
const block = toolBlocks.get(index);
|
|
648
|
+
if (block) {
|
|
649
|
+
toolBlocks.delete(index);
|
|
650
|
+
if (block.emitted)
|
|
651
|
+
return [];
|
|
652
|
+
return [
|
|
653
|
+
{ type: "tool-input-end", id: block.id },
|
|
654
|
+
{
|
|
655
|
+
type: "tool-call",
|
|
656
|
+
toolCallId: block.id,
|
|
657
|
+
toolName: block.name,
|
|
658
|
+
input: block.input,
|
|
659
|
+
},
|
|
660
|
+
];
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
else if (bType === "thinking") {
|
|
664
|
+
return [{ type: "reasoning-end", id: `thinking-${index}` }];
|
|
665
|
+
}
|
|
560
666
|
const block = toolBlocks.get(index);
|
|
561
667
|
if (block) {
|
|
562
668
|
toolBlocks.delete(index);
|