Official2026-07-08
DeepSeek Adds Streaming and Non-Streaming Thinking Samples
Checked on July 8, 2026: DeepSeek's official docs sitemap currently lists dedicated thinking-mode sample pages for both non-streaming and streaming chat completions, clarifying when `reasoning_content` is just captured, when it is ignored in ordinary follow-up turns, and how `delta.reasoning_content` should be accumulated separately from visible answer text.
What we verified on July 8, 2026
- DeepSeek's official docs sitemap currently lists dedicated non-streaming and streaming thinking-mode sample pages.
- The non-streaming sample shows a plain two-turn OpenAI-compatible flow: capture
reasoning_contentand finalcontent, append the assistant message, then send a second user turn. - The same non-streaming page explicitly notes that earlier
reasoning_contentwill be ignored by the API in that ordinary follow-up case, which is an important boundary for teams that over-engineer replay behavior. - The streaming sample shows
delta.reasoning_contentanddelta.contentarriving separately, and its code accumulates them into different buffers before constructing the next-turn assistant state. - This is protocol and support coverage only. It does not create any new plan card, stock promise, or pricing change in this repo.
Sources
- DeepSeek English homepage
- DeepSeek official docs sitemap
- DeepSeek official non-streaming thinking-mode sample
- DeepSeek official streaming thinking-mode sample
- DeepSeek official Thinking Mode guide
- DeepSeek official Create Chat Completion reference
- DeepSeek official status page
- DeepSeek official GitHub organization
- DeepSeek official Hugging Face organization
- DeepSeek official X account surface