diff options
| author | Adam Malczewski <[email protected]> | 2026-06-05 17:38:57 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-05 17:38:57 +0900 |
| commit | 74986a54093f6492cc4420f5917e5215f42a8f89 (patch) | |
| tree | 6a3aa746b722f4071864d1812000d449801ed885 | |
| parent | 5ae88d4e98b3b585526ab0534be8e4c12f1ac071 (diff) | |
| download | dispatch-74986a54093f6492cc4420f5917e5215f42a8f89.tar.gz dispatch-74986a54093f6492cc4420f5917e5215f42a8f89.zip | |
feat(observability): replace synthetic text-turn fixture with a real sanitized flash capture (D5)
Installed a real DISPATCH_RECORD_FIXTURE capture (200 text/event-stream, deepseek-v4-flash, finish_reason stop, reply 'Hello there friend') as src/__fixtures__/flash-text-turn.json, replacing the hand-authored one. Auth header masked (Bearer sk-…redacted…UN0); fixture re-verified secret-free before commit. Text-turn replay assertions updated to real values (inputTokens 665 / outputTokens 90); structural assertions kept (multi-chunk replay, getCapturedRequest deep-equals the outgoing request, finish/stop event, concatenated deltas). The provider's request-building + SSE parsing now run against genuine flash bytes.
Real-data finding (logged in tasks.md): flash reports cache tokens via DeepSeek's NESTED prompt_tokens_details.cached_tokens (384 cached of 665 prompt); the parser only maps the FLAT cache_read/creation form, so cache tokens don't surface — an observability gap vs the §3.1 cache-debugging goal. Deferred pending decision. 334 tests, typecheck + biome 0/0.
| -rw-r--r-- | packages/provider-openai-compat/src/__fixtures__/flash-text-turn.json | 25 | ||||
| -rw-r--r-- | packages/provider-openai-compat/src/stream.test.ts | 6 | ||||
| -rw-r--r-- | tasks.md | 24 |
3 files changed, 31 insertions, 24 deletions
diff --git a/packages/provider-openai-compat/src/__fixtures__/flash-text-turn.json b/packages/provider-openai-compat/src/__fixtures__/flash-text-turn.json index adab32b..d7e71cb 100644 --- a/packages/provider-openai-compat/src/__fixtures__/flash-text-turn.json +++ b/packages/provider-openai-compat/src/__fixtures__/flash-text-turn.json @@ -1,25 +1,26 @@ { "request": { "method": "POST", - "url": "https://api.example.com/v1/chat/completions", + "url": "https://opencode.ai/zen/go/v1/chat/completions", "headers": { - "content-type": "application/json", - "authorization": "Bearer sk-…redacted…xyz" + "Content-Type": "application/json", + "Authorization": "Bearer sk-…redacted…UN0" }, - "body": "{\"model\":\"deepseek-v4-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello, how are you?\"}],\"stream\":true}" + "body": "{\"model\":\"deepseek-v4-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Say hello in exactly three words.\"},{\"role\":\"assistant\",\"content\":\"The user asks: \\\"Say hello in exactly three words.\\\" So I need to respond with exactly three words. The obvious answer is \\\"Hello, how are you?\\\" But that's four words. Actually \\\"Hello there friend\\\" is three words. Or \\\"Hello, my friend\\\"? That's three words if we count \\\"Hello,\\\" as one word? Better to be simple: \\\"Hello, world!\\\" is two words. \\\"Hello everyone here\\\" is three. I'll go with \\\"Hello there friend.\\\" But let's make sure it's exactly three words. I'll respond: \\\"Hello, my friend.\\\" That's three words: Hello, my, friend. But includes a comma? Usually words mean space-separated tokens. So \\\"Hello my friend\\\" is three words. I'll respond with that.\\n\\nBut the instruction is to say hello in exactly three words. I'll just output: \\\"Hello my friend\\\"Hello my friend\"},{\"role\":\"user\",\"content\":\"Say hello in exactly three words.\"}],\"stream\":true,\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"read_file\",\"description\":\"Read the contents of a file. Returns lines with 1-indexed line numbers. Supports offset/limit for reading specific sections of large files.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"path\":{\"type\":\"string\",\"description\":\"Path to the file, relative to the working directory.\"},\"offset\":{\"type\":\"number\",\"description\":\"1-indexed start line number (default: 1).\",\"default\":1},\"limit\":{\"type\":\"number\",\"description\":\"Maximum number of lines to return (default: 500, hard cap: 5000).\",\"default\":500}},\"required\":[\"path\"]}}}]}" }, "response": { "status": 200, "statusText": "OK", "headers": { - "content-type": "text/event-stream", - "cache-control": "no-cache" + "cache-control": "no-cache", + "cf-placement": "remote-ORD", + "cf-ray": "a06dc6711bb51f51-DEN", + "connection": "keep-alive", + "content-type": "text/event-stream; charset=utf-8", + "date": "Fri, 05 Jun 2026 08:23:26 GMT", + "server": "cloudflare", + "transfer-encoding": "chunked" }, - "body": "data: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":\"\"},\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"I'm doing\"},\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\" well, thank\"},\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\" you! How can I\"},\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\" help you today?\"},\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fixture-001\",\"object\":\"chat.completion.chunk\",\"created\":1700000000,\"model\":\"deepseek-v4-flash\",\"choices\":[{\"index\":0,\"delta\":{},\"finish_reason\":\"stop\"}],\"usage\":{\"prompt_tokens\":12,\"completion_tokens\":16,\"cache_read_tokens\":0,\"cache_write_tokens\":0}}\n\ndata: [DONE]\n" - }, - "meta": { - "description": "Simple text-turn fixture: user greeting → short assistant reply with stop finish.", - "captured_by": "provider-openai-compat record mode", - "version": 1 + "body": "data: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"reasoning_content\":\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"The\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" user\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" asks\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" to\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Say\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" in\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" exactly\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" three\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" words\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" I\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" need\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" to\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" respond\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" with\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" exactly\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" three\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" words\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" I\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" already\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" said\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" my\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" friend\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" but\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" that\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" might\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" have\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" been\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" cut\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" off\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" Let\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" me\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" respond\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" again\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" with\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" exactly\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" three\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" words\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\":\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\",\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" world\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"!\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" is\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" two\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" words\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" there\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" friend\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" is\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" three\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" to\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" you\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" is\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" three\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" everyone\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" is\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" two\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" I\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"'ll\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" use\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" \\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\"Hello\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" there\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\" friend\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":null,\"reasoning_content\":\".\\\"\"},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"Hello\",\"reasoning_content\":null},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\" there\",\"reasoning_content\":null},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\" friend\",\"reasoning_content\":null},\"logprobs\":null,\"finish_reason\":null}],\"usage\":null}\n\ndata: {\"id\":\"c45495a0-befb-441f-9222-a3109fbbfa78\",\"object\":\"chat.completion.chunk\",\"created\":1780647805,\"model\":\"deepseek-v4-flash\",\"system_fingerprint\":\"fp_8b330d02d0_prod0820_fp8_kvcache_20260402\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"\",\"reasoning_content\":null},\"logprobs\":null,\"finish_reason\":\"stop\"}],\"usage\":{\"prompt_tokens\":665,\"completion_tokens\":90,\"total_tokens\":755,\"prompt_tokens_details\":{\"cached_tokens\":384},\"completion_tokens_details\":{\"reasoning_tokens\":86},\"prompt_cache_hit_tokens\":384,\"prompt_cache_miss_tokens\":281}}\n\ndata: [DONE]\n\ndata: {\"choices\":[],\"cost\":\"0\"}\n\n" } } diff --git a/packages/provider-openai-compat/src/stream.test.ts b/packages/provider-openai-compat/src/stream.test.ts index 25fd84e..3cea838 100644 --- a/packages/provider-openai-compat/src/stream.test.ts +++ b/packages/provider-openai-compat/src/stream.test.ts @@ -545,7 +545,7 @@ describe("streamChat — hermetic replay (trace-replay)", () => { (e): e is Extract<ProviderEvent, { type: "text-delta" }> => e.type === "text-delta", ); const fullText = textDeltas.map((e) => e.delta).join(""); - expect(fullText).toBe("I'm doing well, thank you! How can I help you today?"); + expect(fullText).toBe("Hello there friend"); const finishEvents = events.filter((e) => e.type === "finish"); expect(finishEvents).toHaveLength(1); @@ -555,8 +555,8 @@ describe("streamChat — hermetic replay (trace-replay)", () => { (e): e is Extract<ProviderEvent, { type: "usage" }> => e.type === "usage", ); expect(usageEvents).toHaveLength(1); - expect(usageEvents[0]?.usage.inputTokens).toBe(12); - expect(usageEvents[0]?.usage.outputTokens).toBe(16); + expect(usageEvents[0]?.usage.inputTokens).toBe(665); + expect(usageEvents[0]?.usage.outputTokens).toBe(90); const captured = getCapturedRequest(); assertDefined(captured); @@ -255,16 +255,22 @@ independent of the SQLite trace-store; the lib is redaction-free (caller self-re 44→48 tests → **331 vitest**, typecheck + biome 0/0. CR: none. prompts/provider-trace-replay.md, reports/provider-trace-replay.md. - [x] **Build wiring** (orchestrator): root tsconfig ref ✓; provider dep `@dispatch/trace-replay` ✓; `bun install` ✓. -- [~] **Live capture** (orchestrator): FOUND A BUG (the whole point of D5). The real +- [x] **Live capture** (orchestrator): FOUND A BUG (the whole point of D5). The first real capture leaked the live API key — record-mode self-redaction MISSED the `Authorization` - header (capital A + `Bearer ` prefix; redaction matched lowercase `authorization`). - Committed span/journal path is SAFE (journal + trace-DB = ZERO_LEAKS); only the - record-mode fixture path leaked, caught PRE-COMMIT (fixture was /tmp-only, scrubbed). -- [ ] **Record-mode redaction fix** (provider owner): case-insensitive auth-header mask + - a test using the REAL `Authorization: Bearer …` representation (must fail before, pass - after). prompts/provider-trace-replay-fix.md. -- [ ] **Re-capture + swap** (orchestrator): after the fix, re-run live capture → secret - check → re-summon to commit the clean real fixture + update assertions. + header (capital A + `Bearer ` prefix; redaction matched lowercase). Caught PRE-COMMIT + (fixture /tmp-only, scrubbed); committed span/journal path was SAFE (ZERO_LEAKS). After + the fix, a clean re-capture verified 0 leaks + masked `Bearer sk-…redacted…UN0`. +- [x] **Record-mode redaction fix** (provider owner): case-insensitive auth mask + 3 + regression tests (incl. one reproducing the exact capital-`Authorization` leak). `5ae88d4`. +- [x] **Re-capture + swap** (orchestrator): real flash text-turn fixture installed + (`src/__fixtures__/flash-text-turn.json`); reply "Hello there friend"; text-turn replay + assertions updated to real values (inputTokens 665 / outputTokens 90); secret-free + re-verified pre-commit. **334 tests**, typecheck + biome 0/0. +- [ ] **FINDING → decide** (real-data, D5): flash returns cache tokens in DeepSeek's NESTED + `prompt_tokens_details.cached_tokens` (665 prompt / 384 cached); the openai-compat SSE + parser only maps the FLAT `cache_read/creation` form, so cache tokens never surface — an + observability gap for the §3.1 cache-debugging goal. Surfaced to user: fix the parser + (provider unit) or defer? Summons: prompts/phase-a-{kernel-logging,journal-sink}.md; reports/phase-a-{kernel-logging,journal-sink}.md. |
