diff --git a/config.example.json b/config.example.json index 7871b6b..6cfbd73 100644 --- a/config.example.json +++ b/config.example.json @@ -28,7 +28,8 @@ "o3": "deepseek-reasoner" }, "compat": { - "wide_input_strict_output": true + "wide_input_strict_output": true, + "strip_reference_markers": true }, "toolcall": { "mode": "feature_match", diff --git a/docs/DeepSeekSSE流格式字段分析-2026-04-03.md b/docs/DeepSeekSSE流格式字段分析-2026-04-03.md index 689f3f8..e7f31e0 100644 --- a/docs/DeepSeekSSE流格式字段分析-2026-04-03.md +++ b/docs/DeepSeekSSE流格式字段分析-2026-04-03.md @@ -1,8 +1,10 @@ -# DeepSeek SSE 流格式字段分析(2026-04-03) +# DeepSeek SSE 流格式字段分析(永久默认样本) -> 日期:2026-04-03(UTC) +> 日期:2026-04-05(UTC) > -> 样本:`tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/upstream.stream.sse` +> 默认样本: +> - `tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/upstream.stream.sse` +> - `tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/upstream.stream.sse` > > 模型:`deepseek-reasoner-search`(搜索 + 思考) @@ -69,13 +71,28 @@ data: 1. 跳过所有 `response/fragments/-?\d+/status`。 2. 继续保留 `response/status=FINISHED` 作为真正结束判定。 -3. 通过独立仿真工具持续回放全部样本,作为回归门禁: +3. 通过独立仿真工具持续回放 manifest 声明的 canonical 默认样本,作为回归门禁: ```bash ./tests/scripts/run-raw-stream-sim.sh ``` -## 6. 后续扩展建议 +## 6. `CONTENT_FILTER` 终态样本 + +在 `content-filter-trigger-20260405-jwt3` 样本中,末尾会出现一组明确的风控终态字段: + +- `response.status = CONTENT_FILTER` +- `response.quasi_status = CONTENT_FILTER` +- `response.fragments` 里包含 `TEMPLATE_RESPONSE` 拒答文案 +- 后续仍会有 `event: finish` + +这说明: + +1. 风控不是“没有结束信号”,而是“正常流式输出后在尾部切换到风控终态”。 +2. 适配层不能把 `TEMPLATE_RESPONSE` 当普通正文输出。 +3. 回放工具需要把这种终态保留下来,用于后续回归和字段分析。 + +## 7. 后续扩展建议 - 增加不同模型(`deepseek-chat-search` / 非 search / 非 thinking)样本。 - 增加异常样本(限流、中断、content_filter、空结果)。 diff --git a/docs/TESTING.md b/docs/TESTING.md index de940f0..af1bd25 100644 --- a/docs/TESTING.md +++ b/docs/TESTING.md @@ -233,7 +233,7 @@ go run ./cmd/ds2api-tests --no-preflight ``` 说明: -- 该工具会重放 `tests/raw_stream_samples` 下全部样本,按上游 SSE 顺序做 1:1 仿真解析。 +- 该工具默认重放 `tests/raw_stream_samples/manifest.json` 声明的 canonical 样本,按上游 SSE 顺序做 1:1 仿真解析。 - 默认校验不出现 `FINISHED` 文本泄露,并要求存在结束信号。 - 结果会写入 `artifacts/raw-stream-sim/*.json`,可供其他测试脚本或排障流程复用。 diff --git a/internal/adapter/claude/deps.go b/internal/adapter/claude/deps.go index a6398b3..0088e81 100644 --- a/internal/adapter/claude/deps.go +++ b/internal/adapter/claude/deps.go @@ -22,6 +22,7 @@ type DeepSeekCaller interface { type ConfigReader interface { ClaudeMapping() map[string]string + CompatStripReferenceMarkers() bool } type OpenAIChatRunner interface { diff --git a/internal/adapter/claude/deps_injection_test.go b/internal/adapter/claude/deps_injection_test.go index 39dfc2f..ae0c38f 100644 --- a/internal/adapter/claude/deps_injection_test.go +++ b/internal/adapter/claude/deps_injection_test.go @@ -7,6 +7,7 @@ type mockClaudeConfig struct { } func (m mockClaudeConfig) ClaudeMapping() map[string]string { return m.m } +func (mockClaudeConfig) CompatStripReferenceMarkers() bool { return true } func TestNormalizeClaudeRequestUsesConfigInterfaceMapping(t *testing.T) { req := map[string]any{ diff --git a/internal/adapter/claude/handler_messages.go b/internal/adapter/claude/handler_messages.go index c066ac8..5bfa839 100644 --- a/internal/adapter/claude/handler_messages.go +++ b/internal/adapter/claude/handler_messages.go @@ -149,6 +149,7 @@ func (h *Handler) handleClaudeStreamRealtime(w http.ResponseWriter, r *http.Requ messages, thinkingEnabled, searchEnabled, + h.compatStripReferenceMarkers(), toolNames, ) streamRuntime.sendMessageStart() diff --git a/internal/adapter/claude/handler_routes.go b/internal/adapter/claude/handler_routes.go index 483ade7..3683456 100644 --- a/internal/adapter/claude/handler_routes.go +++ b/internal/adapter/claude/handler_routes.go @@ -21,6 +21,13 @@ type Handler struct { OpenAI OpenAIChatRunner } +func (h *Handler) compatStripReferenceMarkers() bool { + if h == nil || h.Store == nil { + return true + } + return h.Store.CompatStripReferenceMarkers() +} + var ( claudeStreamPingInterval = time.Duration(deepseek.KeepAliveTimeout) * time.Second claudeStreamIdleTimeout = time.Duration(deepseek.StreamIdleTimeout) * time.Second diff --git a/internal/adapter/claude/output_clean.go b/internal/adapter/claude/output_clean.go new file mode 100644 index 0000000..60217f2 --- /dev/null +++ b/internal/adapter/claude/output_clean.go @@ -0,0 +1,13 @@ +package claude + +import textclean "ds2api/internal/textclean" + +func cleanVisibleOutput(text string, stripReferenceMarkers bool) string { + if text == "" { + return text + } + if stripReferenceMarkers { + text = textclean.StripReferenceMarkers(text) + } + return text +} diff --git a/internal/adapter/claude/proxy_vercel_test.go b/internal/adapter/claude/proxy_vercel_test.go index 4a7736b..9a441e9 100644 --- a/internal/adapter/claude/proxy_vercel_test.go +++ b/internal/adapter/claude/proxy_vercel_test.go @@ -16,6 +16,8 @@ func (s claudeProxyStoreStub) ClaudeMapping() map[string]string { return s.mapping } +func (claudeProxyStoreStub) CompatStripReferenceMarkers() bool { return true } + type openAIProxyStub struct { status int body string diff --git a/internal/adapter/claude/stream_runtime_core.go b/internal/adapter/claude/stream_runtime_core.go index e5be865..241c093 100644 --- a/internal/adapter/claude/stream_runtime_core.go +++ b/internal/adapter/claude/stream_runtime_core.go @@ -19,13 +19,14 @@ type claudeStreamRuntime struct { toolNames []string messages []any - thinkingEnabled bool - searchEnabled bool - bufferToolContent bool + thinkingEnabled bool + searchEnabled bool + bufferToolContent bool + stripReferenceMarkers bool - messageID string - thinking strings.Builder - text strings.Builder + messageID string + thinking strings.Builder + text strings.Builder outputTokens int nextBlockIndex int @@ -45,21 +46,23 @@ func newClaudeStreamRuntime( messages []any, thinkingEnabled bool, searchEnabled bool, + stripReferenceMarkers bool, toolNames []string, ) *claudeStreamRuntime { return &claudeStreamRuntime{ - w: w, - rc: rc, - canFlush: canFlush, - model: model, - messages: messages, - thinkingEnabled: thinkingEnabled, - searchEnabled: searchEnabled, - bufferToolContent: len(toolNames) > 0, - toolNames: toolNames, - messageID: fmt.Sprintf("msg_%d", time.Now().UnixNano()), - thinkingBlockIndex: -1, - textBlockIndex: -1, + w: w, + rc: rc, + canFlush: canFlush, + model: model, + messages: messages, + thinkingEnabled: thinkingEnabled, + searchEnabled: searchEnabled, + bufferToolContent: len(toolNames) > 0, + stripReferenceMarkers: stripReferenceMarkers, + toolNames: toolNames, + messageID: fmt.Sprintf("msg_%d", time.Now().UnixNano()), + thinkingBlockIndex: -1, + textBlockIndex: -1, } } @@ -80,10 +83,11 @@ func (s *claudeStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse contentSeen := false for _, p := range parsed.Parts { - if p.Text == "" { + cleanedText := cleanVisibleOutput(p.Text, s.stripReferenceMarkers) + if cleanedText == "" { continue } - if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(p.Text) { + if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(cleanedText) { continue } contentSeen = true @@ -92,7 +96,7 @@ func (s *claudeStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse if !s.thinkingEnabled { continue } - s.thinking.WriteString(p.Text) + s.thinking.WriteString(cleanedText) s.closeTextBlock() if !s.thinkingBlockOpen { s.thinkingBlockIndex = s.nextBlockIndex @@ -112,13 +116,13 @@ func (s *claudeStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse "index": s.thinkingBlockIndex, "delta": map[string]any{ "type": "thinking_delta", - "thinking": p.Text, + "thinking": cleanedText, }, }) continue } - s.text.WriteString(p.Text) + s.text.WriteString(cleanedText) if s.bufferToolContent { if hasUnclosedCodeFence(s.text.String()) { continue @@ -144,7 +148,7 @@ func (s *claudeStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse "index": s.textBlockIndex, "delta": map[string]any{ "type": "text_delta", - "text": p.Text, + "text": cleanedText, }, }) } diff --git a/internal/adapter/claude/stream_runtime_finalize.go b/internal/adapter/claude/stream_runtime_finalize.go index 6a020ef..50655bd 100644 --- a/internal/adapter/claude/stream_runtime_finalize.go +++ b/internal/adapter/claude/stream_runtime_finalize.go @@ -43,7 +43,7 @@ func (s *claudeStreamRuntime) finalize(stopReason string) { s.closeTextBlock() finalThinking := s.thinking.String() - finalText := s.text.String() + finalText := cleanVisibleOutput(s.text.String(), s.stripReferenceMarkers) if s.bufferToolContent { detected := util.ParseStandaloneToolCalls(finalText, s.toolNames) @@ -64,7 +64,7 @@ func (s *claudeStreamRuntime) finalize(stopReason string) { "input": map[string]any{}, }, }) - + inputBytes, _ := json.Marshal(tc.Input) s.send("content_block_delta", map[string]any{ "type": "content_block_delta", diff --git a/internal/adapter/claude/stream_status_test.go b/internal/adapter/claude/stream_status_test.go index 8743c44..7577792 100644 --- a/internal/adapter/claude/stream_status_test.go +++ b/internal/adapter/claude/stream_status_test.go @@ -28,6 +28,8 @@ func (streamStatusClaudeStoreStub) ClaudeMapping() map[string]string { } } +func (streamStatusClaudeStoreStub) CompatStripReferenceMarkers() bool { return true } + func captureClaudeStatusMiddleware(statuses *[]int) func(http.Handler) http.Handler { return func(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { diff --git a/internal/adapter/gemini/deps.go b/internal/adapter/gemini/deps.go index 2d12249..9a9e658 100644 --- a/internal/adapter/gemini/deps.go +++ b/internal/adapter/gemini/deps.go @@ -22,6 +22,7 @@ type DeepSeekCaller interface { type ConfigReader interface { ModelAliases() map[string]string + CompatStripReferenceMarkers() bool } type OpenAIChatRunner interface { diff --git a/internal/adapter/gemini/handler_generate.go b/internal/adapter/gemini/handler_generate.go index a7de92d..f662d66 100644 --- a/internal/adapter/gemini/handler_generate.go +++ b/internal/adapter/gemini/handler_generate.go @@ -140,7 +140,15 @@ func (h *Handler) handleNonStreamGenerateContent(w http.ResponseWriter, resp *ht } result := sse.CollectStream(resp, thinkingEnabled, true) - writeJSON(w, http.StatusOK, buildGeminiGenerateContentResponse(model, finalPrompt, result.Thinking, result.Text, toolNames, result.OutputTokens)) + stripReferenceMarkers := h.compatStripReferenceMarkers() + writeJSON(w, http.StatusOK, buildGeminiGenerateContentResponse( + model, + finalPrompt, + cleanVisibleOutput(result.Thinking, stripReferenceMarkers), + cleanVisibleOutput(result.Text, stripReferenceMarkers), + toolNames, + result.OutputTokens, + )) } func buildGeminiGenerateContentResponse(model, finalPrompt, finalThinking, finalText string, toolNames []string, outputTokens int) map[string]any { @@ -179,7 +187,7 @@ func buildGeminiUsage(finalPrompt, finalThinking, finalText string, outputTokens func buildGeminiPartsFromFinal(finalText, finalThinking string, toolNames []string) []map[string]any { detected := util.ParseToolCalls(finalText, toolNames) - if len(detected) == 0 && strings.TrimSpace(finalThinking) != "" { + if len(detected) == 0 && finalThinking != "" { detected = util.ParseToolCalls(finalThinking, toolNames) } if len(detected) > 0 { @@ -196,7 +204,7 @@ func buildGeminiPartsFromFinal(finalText, finalThinking string, toolNames []stri } text := finalText - if strings.TrimSpace(text) == "" { + if text == "" { text = finalThinking } return []map[string]any{{"text": text}} diff --git a/internal/adapter/gemini/handler_routes.go b/internal/adapter/gemini/handler_routes.go index 1355689..28338a6 100644 --- a/internal/adapter/gemini/handler_routes.go +++ b/internal/adapter/gemini/handler_routes.go @@ -17,6 +17,13 @@ type Handler struct { OpenAI OpenAIChatRunner } +func (h *Handler) compatStripReferenceMarkers() bool { + if h == nil || h.Store == nil { + return true + } + return h.Store.CompatStripReferenceMarkers() +} + func RegisterRoutes(r chi.Router, h *Handler) { r.Post("/v1beta/models/{model}:generateContent", h.GenerateContent) r.Post("/v1beta/models/{model}:streamGenerateContent", h.StreamGenerateContent) diff --git a/internal/adapter/gemini/handler_stream_runtime.go b/internal/adapter/gemini/handler_stream_runtime.go index 1fd9021..601517a 100644 --- a/internal/adapter/gemini/handler_stream_runtime.go +++ b/internal/adapter/gemini/handler_stream_runtime.go @@ -27,7 +27,7 @@ func (h *Handler) handleStreamGenerateContent(w http.ResponseWriter, r *http.Req rc := http.NewResponseController(w) _, canFlush := w.(http.Flusher) - runtime := newGeminiStreamRuntime(w, rc, canFlush, model, finalPrompt, thinkingEnabled, searchEnabled, toolNames) + runtime := newGeminiStreamRuntime(w, rc, canFlush, model, finalPrompt, thinkingEnabled, searchEnabled, h.compatStripReferenceMarkers(), toolNames) initialType := "text" if thinkingEnabled { @@ -57,13 +57,14 @@ type geminiStreamRuntime struct { model string finalPrompt string - thinkingEnabled bool - searchEnabled bool - bufferContent bool - toolNames []string + thinkingEnabled bool + searchEnabled bool + bufferContent bool + stripReferenceMarkers bool + toolNames []string - thinking strings.Builder - text strings.Builder + thinking strings.Builder + text strings.Builder outputTokens int } @@ -75,18 +76,20 @@ func newGeminiStreamRuntime( finalPrompt string, thinkingEnabled bool, searchEnabled bool, + stripReferenceMarkers bool, toolNames []string, ) *geminiStreamRuntime { return &geminiStreamRuntime{ - w: w, - rc: rc, - canFlush: canFlush, - model: model, - finalPrompt: finalPrompt, - thinkingEnabled: thinkingEnabled, - searchEnabled: searchEnabled, - bufferContent: len(toolNames) > 0, - toolNames: toolNames, + w: w, + rc: rc, + canFlush: canFlush, + model: model, + finalPrompt: finalPrompt, + thinkingEnabled: thinkingEnabled, + searchEnabled: searchEnabled, + bufferContent: len(toolNames) > 0, + stripReferenceMarkers: stripReferenceMarkers, + toolNames: toolNames, } } @@ -113,20 +116,21 @@ func (s *geminiStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse contentSeen := false for _, p := range parsed.Parts { - if p.Text == "" { + cleanedText := cleanVisibleOutput(p.Text, s.stripReferenceMarkers) + if cleanedText == "" { continue } - if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(p.Text) { + if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(cleanedText) { continue } contentSeen = true if p.Type == "thinking" { if s.thinkingEnabled { - s.thinking.WriteString(p.Text) + s.thinking.WriteString(cleanedText) } continue } - s.text.WriteString(p.Text) + s.text.WriteString(cleanedText) if s.bufferContent { continue } @@ -136,7 +140,7 @@ func (s *geminiStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse "index": 0, "content": map[string]any{ "role": "model", - "parts": []map[string]any{{"text": p.Text}}, + "parts": []map[string]any{{"text": cleanedText}}, }, }, }, @@ -148,7 +152,7 @@ func (s *geminiStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Parse func (s *geminiStreamRuntime) finalize() { finalThinking := s.thinking.String() - finalText := s.text.String() + finalText := cleanVisibleOutput(s.text.String(), s.stripReferenceMarkers) if s.bufferContent { parts := buildGeminiPartsFromFinal(finalText, finalThinking, s.toolNames) diff --git a/internal/adapter/gemini/handler_test.go b/internal/adapter/gemini/handler_test.go index fdb4b79..20eed21 100644 --- a/internal/adapter/gemini/handler_test.go +++ b/internal/adapter/gemini/handler_test.go @@ -17,7 +17,8 @@ import ( type testGeminiConfig struct{} -func (testGeminiConfig) ModelAliases() map[string]string { return nil } +func (testGeminiConfig) ModelAliases() map[string]string { return nil } +func (testGeminiConfig) CompatStripReferenceMarkers() bool { return true } type testGeminiAuth struct { a *auth.RequestAuth @@ -62,8 +63,8 @@ func (m testGeminiDS) CallCompletion(_ context.Context, _ *auth.RequestAuth, _ m } type geminiOpenAIErrorStub struct { - status int - body string + status int + body string headers map[string]string } @@ -247,7 +248,7 @@ func TestStreamGenerateContentEmitsSSE(t *testing.T) { func TestGenerateContentOpenAIProxyErrorUsesGeminiEnvelope(t *testing.T) { h := &Handler{ - Store: testGeminiConfig{}, + Store: testGeminiConfig{}, OpenAI: geminiOpenAIErrorStub{ status: http.StatusUnauthorized, body: `{"error":{"message":"invalid api key"}}`, diff --git a/internal/adapter/gemini/output_clean.go b/internal/adapter/gemini/output_clean.go new file mode 100644 index 0000000..56b2545 --- /dev/null +++ b/internal/adapter/gemini/output_clean.go @@ -0,0 +1,13 @@ +package gemini + +import textclean "ds2api/internal/textclean" + +func cleanVisibleOutput(text string, stripReferenceMarkers bool) string { + if text == "" { + return text + } + if stripReferenceMarkers { + text = textclean.StripReferenceMarkers(text) + } + return text +} diff --git a/internal/adapter/openai/chat_stream_runtime.go b/internal/adapter/openai/chat_stream_runtime.go index 563b0f2..fb6943f 100644 --- a/internal/adapter/openai/chat_stream_runtime.go +++ b/internal/adapter/openai/chat_stream_runtime.go @@ -22,8 +22,9 @@ type chatStreamRuntime struct { finalPrompt string toolNames []string - thinkingEnabled bool - searchEnabled bool + thinkingEnabled bool + searchEnabled bool + stripReferenceMarkers bool firstChunkSent bool bufferToolContent bool @@ -49,25 +50,27 @@ func newChatStreamRuntime( finalPrompt string, thinkingEnabled bool, searchEnabled bool, + stripReferenceMarkers bool, toolNames []string, bufferToolContent bool, emitEarlyToolDeltas bool, ) *chatStreamRuntime { return &chatStreamRuntime{ - w: w, - rc: rc, - canFlush: canFlush, - completionID: completionID, - created: created, - model: model, - finalPrompt: finalPrompt, - toolNames: toolNames, - thinkingEnabled: thinkingEnabled, - searchEnabled: searchEnabled, - bufferToolContent: bufferToolContent, - emitEarlyToolDeltas: emitEarlyToolDeltas, - streamToolCallIDs: map[int]string{}, - streamToolNames: map[int]string{}, + w: w, + rc: rc, + canFlush: canFlush, + completionID: completionID, + created: created, + model: model, + finalPrompt: finalPrompt, + toolNames: toolNames, + thinkingEnabled: thinkingEnabled, + searchEnabled: searchEnabled, + stripReferenceMarkers: stripReferenceMarkers, + bufferToolContent: bufferToolContent, + emitEarlyToolDeltas: emitEarlyToolDeltas, + streamToolCallIDs: map[int]string{}, + streamToolNames: map[int]string{}, } } @@ -98,7 +101,7 @@ func (s *chatStreamRuntime) sendDone() { func (s *chatStreamRuntime) finalize(finishReason string) { finalThinking := s.thinking.String() - finalText := sanitizeLeakedOutput(s.text.String()) + finalText := cleanVisibleOutput(s.text.String(), s.stripReferenceMarkers) detected := util.ParseStandaloneToolCallsDetailed(finalText, s.toolNames) if len(detected.Calls) > 0 && !s.toolCallsDoneEmitted { finishReason = "tool_calls" @@ -142,7 +145,7 @@ func (s *chatStreamRuntime) finalize(finishReason string) { if evt.Content == "" { continue } - cleaned := sanitizeLeakedOutput(evt.Content) + cleaned := cleanVisibleOutput(evt.Content, s.stripReferenceMarkers) if cleaned == "" { continue } @@ -203,10 +206,11 @@ func (s *chatStreamRuntime) onParsed(parsed sse.LineResult) streamengine.ParsedD newChoices := make([]map[string]any, 0, len(parsed.Parts)) contentSeen := false for _, p := range parsed.Parts { - if s.searchEnabled && sse.IsCitation(p.Text) { + cleanedText := cleanVisibleOutput(p.Text, s.stripReferenceMarkers) + if s.searchEnabled && sse.IsCitation(cleanedText) { continue } - if p.Text == "" { + if cleanedText == "" { continue } contentSeen = true @@ -217,15 +221,15 @@ func (s *chatStreamRuntime) onParsed(parsed sse.LineResult) streamengine.ParsedD } if p.Type == "thinking" { if s.thinkingEnabled { - s.thinking.WriteString(p.Text) - delta["reasoning_content"] = p.Text + s.thinking.WriteString(cleanedText) + delta["reasoning_content"] = cleanedText } } else { - s.text.WriteString(p.Text) + s.text.WriteString(cleanedText) if !s.bufferToolContent { - delta["content"] = p.Text + delta["content"] = cleanedText } else { - events := processToolSieveChunk(&s.toolSieve, p.Text, s.toolNames) + events := processToolSieveChunk(&s.toolSieve, cleanedText, s.toolNames) for _, evt := range events { if len(evt.ToolCallDeltas) > 0 { if !s.emitEarlyToolDeltas { @@ -264,7 +268,7 @@ func (s *chatStreamRuntime) onParsed(parsed sse.LineResult) streamengine.ParsedD continue } if evt.Content != "" { - cleaned := sanitizeLeakedOutput(evt.Content) + cleaned := cleanVisibleOutput(evt.Content, s.stripReferenceMarkers) if cleaned == "" { continue } diff --git a/internal/adapter/openai/deps.go b/internal/adapter/openai/deps.go index b2270c7..7883916 100644 --- a/internal/adapter/openai/deps.go +++ b/internal/adapter/openai/deps.go @@ -25,6 +25,7 @@ type DeepSeekCaller interface { type ConfigReader interface { ModelAliases() map[string]string CompatWideInputStrictOutput() bool + CompatStripReferenceMarkers() bool ToolcallMode() string ToolcallEarlyEmitConfidence() string ResponsesStoreTTLSeconds() int diff --git a/internal/adapter/openai/deps_injection_test.go b/internal/adapter/openai/deps_injection_test.go index 9025ef3..126a18a 100644 --- a/internal/adapter/openai/deps_injection_test.go +++ b/internal/adapter/openai/deps_injection_test.go @@ -15,6 +15,7 @@ func (m mockOpenAIConfig) ModelAliases() map[string]string { return m.aliases } func (m mockOpenAIConfig) CompatWideInputStrictOutput() bool { return m.wideInput } +func (m mockOpenAIConfig) CompatStripReferenceMarkers() bool { return true } func (m mockOpenAIConfig) ToolcallMode() string { return m.toolMode } func (m mockOpenAIConfig) ToolcallEarlyEmitConfidence() string { return m.earlyEmit } func (m mockOpenAIConfig) ResponsesStoreTTLSeconds() int { return m.responsesTTL } diff --git a/internal/adapter/openai/handler_chat.go b/internal/adapter/openai/handler_chat.go index 2bf13a2..18d9fae 100644 --- a/internal/adapter/openai/handler_chat.go +++ b/internal/adapter/openai/handler_chat.go @@ -104,9 +104,10 @@ func (h *Handler) handleNonStream(w http.ResponseWriter, ctx context.Context, re _ = ctx result := sse.CollectStream(resp, thinkingEnabled, true) - finalThinking := result.Thinking - finalText := sanitizeLeakedOutput(result.Text) - if writeUpstreamEmptyOutputError(w, result) { + stripReferenceMarkers := h.compatStripReferenceMarkers() + finalThinking := cleanVisibleOutput(result.Thinking, stripReferenceMarkers) + finalText := cleanVisibleOutput(result.Text, stripReferenceMarkers) + if writeUpstreamEmptyOutputError(w, finalThinking, finalText, result.ContentFilter) { return } respBody := openaifmt.BuildChatCompletion(completionID, model, finalPrompt, finalThinking, finalText, toolNames) @@ -141,6 +142,7 @@ func (h *Handler) handleStream(w http.ResponseWriter, r *http.Request, resp *htt created := time.Now().Unix() bufferToolContent := len(toolNames) > 0 emitEarlyToolDeltas := h.toolcallFeatureMatchEnabled() && h.toolcallEarlyEmitHighConfidence() + stripReferenceMarkers := h.compatStripReferenceMarkers() initialType := "text" if thinkingEnabled { initialType = "thinking" @@ -156,6 +158,7 @@ func (h *Handler) handleStream(w http.ResponseWriter, r *http.Request, resp *htt finalPrompt, thinkingEnabled, searchEnabled, + stripReferenceMarkers, toolNames, bufferToolContent, emitEarlyToolDeltas, diff --git a/internal/adapter/openai/handler_routes.go b/internal/adapter/openai/handler_routes.go index a0cfcd6..1f8366a 100644 --- a/internal/adapter/openai/handler_routes.go +++ b/internal/adapter/openai/handler_routes.go @@ -28,6 +28,13 @@ type Handler struct { responses *responseStore } +func (h *Handler) compatStripReferenceMarkers() bool { + if h == nil || h.Store == nil { + return true + } + return h.Store.CompatStripReferenceMarkers() +} + type streamLease struct { Auth *auth.RequestAuth ExpiresAt time.Time diff --git a/internal/adapter/openai/output_clean.go b/internal/adapter/openai/output_clean.go new file mode 100644 index 0000000..b749876 --- /dev/null +++ b/internal/adapter/openai/output_clean.go @@ -0,0 +1,13 @@ +package openai + +import textclean "ds2api/internal/textclean" + +func cleanVisibleOutput(text string, stripReferenceMarkers bool) string { + if text == "" { + return text + } + if stripReferenceMarkers { + text = textclean.StripReferenceMarkers(text) + } + return sanitizeLeakedOutput(text) +} diff --git a/internal/adapter/openai/responses_handler.go b/internal/adapter/openai/responses_handler.go index bcbed0a..3c799e5 100644 --- a/internal/adapter/openai/responses_handler.go +++ b/internal/adapter/openai/responses_handler.go @@ -113,8 +113,10 @@ func (h *Handler) handleResponsesNonStream(w http.ResponseWriter, resp *http.Res return } result := sse.CollectStream(resp, thinkingEnabled, true) - sanitizedText := sanitizeLeakedOutput(result.Text) - if writeUpstreamEmptyOutputError(w, result) { + stripReferenceMarkers := h.compatStripReferenceMarkers() + sanitizedThinking := cleanVisibleOutput(result.Thinking, stripReferenceMarkers) + sanitizedText := cleanVisibleOutput(result.Text, stripReferenceMarkers) + if writeUpstreamEmptyOutputError(w, sanitizedThinking, sanitizedText, result.ContentFilter) { return } textParsed := util.ParseStandaloneToolCallsDetailed(sanitizedText, toolNames) @@ -126,7 +128,7 @@ func (h *Handler) handleResponsesNonStream(w http.ResponseWriter, resp *http.Res return } - responseObj := openaifmt.BuildResponseObject(responseID, model, finalPrompt, result.Thinking, sanitizedText, toolNames) + responseObj := openaifmt.BuildResponseObject(responseID, model, finalPrompt, sanitizedThinking, sanitizedText, toolNames) if result.OutputTokens > 0 { if usage, ok := responseObj["usage"].(map[string]any); ok { usage["output_tokens"] = result.OutputTokens @@ -159,6 +161,7 @@ func (h *Handler) handleResponsesStream(w http.ResponseWriter, r *http.Request, } bufferToolContent := len(toolNames) > 0 emitEarlyToolDeltas := h.toolcallFeatureMatchEnabled() && h.toolcallEarlyEmitHighConfidence() + stripReferenceMarkers := h.compatStripReferenceMarkers() streamRuntime := newResponsesStreamRuntime( w, @@ -169,6 +172,7 @@ func (h *Handler) handleResponsesStream(w http.ResponseWriter, r *http.Request, finalPrompt, thinkingEnabled, searchEnabled, + stripReferenceMarkers, toolNames, bufferToolContent, emitEarlyToolDeltas, diff --git a/internal/adapter/openai/responses_stream_runtime_core.go b/internal/adapter/openai/responses_stream_runtime_core.go index eaae51b..55fc7be 100644 --- a/internal/adapter/openai/responses_stream_runtime_core.go +++ b/internal/adapter/openai/responses_stream_runtime_core.go @@ -23,8 +23,9 @@ type responsesStreamRuntime struct { traceID string toolChoice util.ToolChoicePolicy - thinkingEnabled bool - searchEnabled bool + thinkingEnabled bool + searchEnabled bool + stripReferenceMarkers bool bufferToolContent bool emitEarlyToolDeltas bool @@ -63,6 +64,7 @@ func newResponsesStreamRuntime( finalPrompt string, thinkingEnabled bool, searchEnabled bool, + stripReferenceMarkers bool, toolNames []string, bufferToolContent bool, emitEarlyToolDeltas bool, @@ -71,34 +73,35 @@ func newResponsesStreamRuntime( persistResponse func(obj map[string]any), ) *responsesStreamRuntime { return &responsesStreamRuntime{ - w: w, - rc: rc, - canFlush: canFlush, - responseID: responseID, - model: model, - finalPrompt: finalPrompt, - thinkingEnabled: thinkingEnabled, - searchEnabled: searchEnabled, - toolNames: toolNames, - bufferToolContent: bufferToolContent, - emitEarlyToolDeltas: emitEarlyToolDeltas, - streamToolCallIDs: map[int]string{}, - functionItemIDs: map[int]string{}, - functionOutputIDs: map[int]int{}, - functionArgs: map[int]string{}, - functionDone: map[int]bool{}, - functionAdded: map[int]bool{}, - functionNames: map[int]string{}, - messageOutputID: -1, - toolChoice: toolChoice, - traceID: traceID, - persistResponse: persistResponse, + w: w, + rc: rc, + canFlush: canFlush, + responseID: responseID, + model: model, + finalPrompt: finalPrompt, + thinkingEnabled: thinkingEnabled, + searchEnabled: searchEnabled, + stripReferenceMarkers: stripReferenceMarkers, + toolNames: toolNames, + bufferToolContent: bufferToolContent, + emitEarlyToolDeltas: emitEarlyToolDeltas, + streamToolCallIDs: map[int]string{}, + functionItemIDs: map[int]string{}, + functionOutputIDs: map[int]int{}, + functionArgs: map[int]string{}, + functionDone: map[int]bool{}, + functionAdded: map[int]bool{}, + functionNames: map[int]string{}, + messageOutputID: -1, + toolChoice: toolChoice, + traceID: traceID, + persistResponse: persistResponse, } } func (s *responsesStreamRuntime) finalize() { finalThinking := s.thinking.String() - finalText := sanitizeLeakedOutput(s.text.String()) + finalText := cleanVisibleOutput(s.text.String(), s.stripReferenceMarkers) if s.bufferToolContent { s.processToolStreamEvents(flushToolSieve(&s.sieve, s.toolNames), true) @@ -190,10 +193,11 @@ func (s *responsesStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Pa contentSeen := false for _, p := range parsed.Parts { - if p.Text == "" { + cleanedText := cleanVisibleOutput(p.Text, s.stripReferenceMarkers) + if cleanedText == "" { continue } - if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(p.Text) { + if p.Type != "thinking" && s.searchEnabled && sse.IsCitation(cleanedText) { continue } contentSeen = true @@ -201,15 +205,11 @@ func (s *responsesStreamRuntime) onParsed(parsed sse.LineResult) streamengine.Pa if !s.thinkingEnabled { continue } - s.thinking.WriteString(p.Text) - s.sendEvent("response.reasoning.delta", openaifmt.BuildResponsesReasoningDeltaPayload(s.responseID, p.Text)) + s.thinking.WriteString(cleanedText) + s.sendEvent("response.reasoning.delta", openaifmt.BuildResponsesReasoningDeltaPayload(s.responseID, cleanedText)) continue } - cleanedText := sanitizeLeakedOutput(p.Text) - if cleanedText == "" { - continue - } s.text.WriteString(cleanedText) if !s.bufferToolContent { s.emitTextDelta(cleanedText) diff --git a/internal/adapter/openai/responses_stream_runtime_toolcalls.go b/internal/adapter/openai/responses_stream_runtime_toolcalls.go index ad354d4..ebd8004 100644 --- a/internal/adapter/openai/responses_stream_runtime_toolcalls.go +++ b/internal/adapter/openai/responses_stream_runtime_toolcalls.go @@ -69,7 +69,7 @@ func (s *responsesStreamRuntime) ensureMessageContentPartAdded() { } func (s *responsesStreamRuntime) emitTextDelta(content string) { - if strings.TrimSpace(content) == "" { + if content == "" { return } s.ensureMessageContentPartAdded() diff --git a/internal/adapter/openai/responses_stream_runtime_toolcalls_finalize.go b/internal/adapter/openai/responses_stream_runtime_toolcalls_finalize.go index 46104a1..d3348d7 100644 --- a/internal/adapter/openai/responses_stream_runtime_toolcalls_finalize.go +++ b/internal/adapter/openai/responses_stream_runtime_toolcalls_finalize.go @@ -83,13 +83,13 @@ func (s *responsesStreamRuntime) buildCompletedResponseObject(finalThinking, fin }) } else if len(calls) == 0 { content := make([]map[string]any, 0, 2) - if strings.TrimSpace(finalThinking) != "" { + if finalThinking != "" { content = append(content, map[string]any{ "type": "reasoning", "text": finalThinking, }) } - if strings.TrimSpace(finalText) != "" { + if finalText != "" { content = append(content, map[string]any{ "type": "output_text", "text": finalText, @@ -136,10 +136,10 @@ func (s *responsesStreamRuntime) buildCompletedResponseObject(finalThinking, fin } outputText := s.visibleText.String() - if strings.TrimSpace(outputText) == "" && len(calls) == 0 { - if strings.TrimSpace(finalText) != "" { + if outputText == "" && len(calls) == 0 { + if finalText != "" { outputText = finalText - } else if strings.TrimSpace(finalThinking) != "" { + } else if finalThinking != "" { outputText = finalThinking } } diff --git a/internal/adapter/openai/tool_sieve_state.go b/internal/adapter/openai/tool_sieve_state.go index 60370e9..6d16878 100644 --- a/internal/adapter/openai/tool_sieve_state.go +++ b/internal/adapter/openai/tool_sieve_state.go @@ -48,7 +48,7 @@ func (s *toolStreamSieveState) resetIncrementalToolState() { } func (s *toolStreamSieveState) noteText(content string) { - if strings.TrimSpace(content) == "" { + if content == "" { return } s.recentTextTail = appendTail(s.recentTextTail, content, toolSieveContextTailLimit) diff --git a/internal/adapter/openai/upstream_empty.go b/internal/adapter/openai/upstream_empty.go index 8f39cd6..f9401ed 100644 --- a/internal/adapter/openai/upstream_empty.go +++ b/internal/adapter/openai/upstream_empty.go @@ -1,17 +1,12 @@ package openai -import ( - "net/http" - "strings" +import "net/http" - "ds2api/internal/sse" -) - -func writeUpstreamEmptyOutputError(w http.ResponseWriter, result sse.CollectResult) bool { - if strings.TrimSpace(result.Thinking) != "" || strings.TrimSpace(sanitizeLeakedOutput(result.Text)) != "" { +func writeUpstreamEmptyOutputError(w http.ResponseWriter, thinking, text string, contentFilter bool) bool { + if thinking != "" || text != "" { return false } - if result.ContentFilter { + if contentFilter { writeOpenAIErrorWithCode(w, http.StatusBadRequest, "Upstream content filtered the response and returned no output.", "content_filter") return true } diff --git a/internal/adapter/openai/vercel_stream.go b/internal/adapter/openai/vercel_stream.go index 55555ce..2ef8d36 100644 --- a/internal/adapter/openai/vercel_stream.go +++ b/internal/adapter/openai/vercel_stream.go @@ -99,10 +99,13 @@ func (h *Handler) handleVercelStreamPrepare(w http.ResponseWriter, r *http.Reque "final_prompt": stdReq.FinalPrompt, "thinking_enabled": stdReq.Thinking, "search_enabled": stdReq.Search, - "tool_names": stdReq.ToolNames, - "deepseek_token": a.DeepSeekToken, - "pow_header": powHeader, - "payload": payload, + "compat": map[string]any{ + "strip_reference_markers": h.compatStripReferenceMarkers(), + }, + "tool_names": stdReq.ToolNames, + "deepseek_token": a.DeepSeekToken, + "pow_header": powHeader, + "payload": payload, }) } diff --git a/internal/admin/deps.go b/internal/admin/deps.go index 054deb0..d61a67d 100644 --- a/internal/admin/deps.go +++ b/internal/admin/deps.go @@ -32,6 +32,7 @@ type ConfigStore interface { RuntimeAccountMaxQueue(defaultSize int) int RuntimeGlobalMaxInflight(defaultSize int) int RuntimeTokenRefreshIntervalHours() int + CompatStripReferenceMarkers() bool AutoDeleteSessions() bool } diff --git a/internal/admin/handler_settings_parse.go b/internal/admin/handler_settings_parse.go index 46a92bc..695dc73 100644 --- a/internal/admin/handler_settings_parse.go +++ b/internal/admin/handler_settings_parse.go @@ -21,10 +21,11 @@ func boolFrom(v any) bool { } } -func parseSettingsUpdateRequest(req map[string]any) (*config.AdminConfig, *config.RuntimeConfig, *config.ResponsesConfig, *config.EmbeddingsConfig, *config.AutoDeleteConfig, map[string]string, map[string]string, error) { +func parseSettingsUpdateRequest(req map[string]any) (*config.AdminConfig, *config.RuntimeConfig, *config.CompatConfig, *config.ResponsesConfig, *config.EmbeddingsConfig, *config.AutoDeleteConfig, map[string]string, map[string]string, error) { var ( adminCfg *config.AdminConfig runtimeCfg *config.RuntimeConfig + compatCfg *config.CompatConfig respCfg *config.ResponsesConfig embCfg *config.EmbeddingsConfig autoDeleteCfg *config.AutoDeleteConfig @@ -37,7 +38,7 @@ func parseSettingsUpdateRequest(req map[string]any) (*config.AdminConfig, *confi if v, exists := raw["jwt_expire_hours"]; exists { n := intFrom(v) if n < 1 || n > 720 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("admin.jwt_expire_hours must be between 1 and 720") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("admin.jwt_expire_hours must be between 1 and 720") } cfg.JWTExpireHours = n } @@ -49,43 +50,56 @@ func parseSettingsUpdateRequest(req map[string]any) (*config.AdminConfig, *confi if v, exists := raw["account_max_inflight"]; exists { n := intFrom(v) if n < 1 || n > 256 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.account_max_inflight must be between 1 and 256") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.account_max_inflight must be between 1 and 256") } cfg.AccountMaxInflight = n } if v, exists := raw["account_max_queue"]; exists { n := intFrom(v) if n < 1 || n > 200000 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.account_max_queue must be between 1 and 200000") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.account_max_queue must be between 1 and 200000") } cfg.AccountMaxQueue = n } if v, exists := raw["global_max_inflight"]; exists { n := intFrom(v) if n < 1 || n > 200000 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.global_max_inflight must be between 1 and 200000") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.global_max_inflight must be between 1 and 200000") } cfg.GlobalMaxInflight = n } if v, exists := raw["token_refresh_interval_hours"]; exists { n := intFrom(v) if n < 1 || n > 720 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.token_refresh_interval_hours must be between 1 and 720") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.token_refresh_interval_hours must be between 1 and 720") } cfg.TokenRefreshIntervalHours = n } if cfg.AccountMaxInflight > 0 && cfg.GlobalMaxInflight > 0 && cfg.GlobalMaxInflight < cfg.AccountMaxInflight { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.global_max_inflight must be >= runtime.account_max_inflight") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("runtime.global_max_inflight must be >= runtime.account_max_inflight") } runtimeCfg = cfg } + if raw, ok := req["compat"].(map[string]any); ok { + cfg := &config.CompatConfig{} + if v, exists := raw["wide_input_strict_output"]; exists { + b := boolFrom(v) + cfg.WideInputStrictOutput = &b + } + if v, exists := raw["strip_reference_markers"]; exists { + b := boolFrom(v) + cfg.StripReferenceMarkers = &b + } + compatCfg = cfg + } + if raw, ok := req["responses"].(map[string]any); ok { cfg := &config.ResponsesConfig{} if v, exists := raw["store_ttl_seconds"]; exists { n := intFrom(v) if n < 30 || n > 86400 { - return nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("responses.store_ttl_seconds must be between 30 and 86400") + return nil, nil, nil, nil, nil, nil, nil, nil, fmt.Errorf("responses.store_ttl_seconds must be between 30 and 86400") } cfg.StoreTTLSeconds = n } @@ -133,5 +147,5 @@ func parseSettingsUpdateRequest(req map[string]any) (*config.AdminConfig, *confi autoDeleteCfg = cfg } - return adminCfg, runtimeCfg, respCfg, embCfg, autoDeleteCfg, claudeMap, aliasMap, nil + return adminCfg, runtimeCfg, compatCfg, respCfg, embCfg, autoDeleteCfg, claudeMap, aliasMap, nil } diff --git a/internal/admin/handler_settings_read.go b/internal/admin/handler_settings_read.go index 7556cc9..d881148 100644 --- a/internal/admin/handler_settings_read.go +++ b/internal/admin/handler_settings_read.go @@ -26,6 +26,7 @@ func (h *Handler) getSettings(w http.ResponseWriter, _ *http.Request) { "global_max_inflight": h.Store.RuntimeGlobalMaxInflight(recommended), "token_refresh_interval_hours": h.Store.RuntimeTokenRefreshIntervalHours(), }, + "compat": snap.Compat, "responses": snap.Responses, "embeddings": snap.Embeddings, "auto_delete": snap.AutoDelete, diff --git a/internal/admin/handler_settings_write.go b/internal/admin/handler_settings_write.go index 8339b0c..e4751bc 100644 --- a/internal/admin/handler_settings_write.go +++ b/internal/admin/handler_settings_write.go @@ -17,7 +17,7 @@ func (h *Handler) updateSettings(w http.ResponseWriter, r *http.Request) { return } - adminCfg, runtimeCfg, responsesCfg, embeddingsCfg, autoDeleteCfg, claudeMap, aliasMap, err := parseSettingsUpdateRequest(req) + adminCfg, runtimeCfg, compatCfg, responsesCfg, embeddingsCfg, autoDeleteCfg, claudeMap, aliasMap, err := parseSettingsUpdateRequest(req) if err != nil { writeJSON(w, http.StatusBadRequest, map[string]any{"detail": err.Error()}) return @@ -49,6 +49,14 @@ func (h *Handler) updateSettings(w http.ResponseWriter, r *http.Request) { c.Runtime.TokenRefreshIntervalHours = runtimeCfg.TokenRefreshIntervalHours } } + if compatCfg != nil { + if compatCfg.WideInputStrictOutput != nil { + c.Compat.WideInputStrictOutput = compatCfg.WideInputStrictOutput + } + if compatCfg.StripReferenceMarkers != nil { + c.Compat.StripReferenceMarkers = compatCfg.StripReferenceMarkers + } + } if responsesCfg != nil && responsesCfg.StoreTTLSeconds > 0 { c.Responses.StoreTTLSeconds = responsesCfg.StoreTTLSeconds } diff --git a/internal/config/codec.go b/internal/config/codec.go index 1e0b711..66a1e3c 100644 --- a/internal/config/codec.go +++ b/internal/config/codec.go @@ -35,7 +35,7 @@ func (c Config) MarshalJSON() ([]byte, error) { if c.Runtime.AccountMaxInflight > 0 || c.Runtime.AccountMaxQueue > 0 || c.Runtime.GlobalMaxInflight > 0 || c.Runtime.TokenRefreshIntervalHours > 0 { m["runtime"] = c.Runtime } - if c.Compat.WideInputStrictOutput != nil { + if c.Compat.WideInputStrictOutput != nil || c.Compat.StripReferenceMarkers != nil { m["compat"] = c.Compat } if c.Responses.StoreTTLSeconds > 0 { @@ -137,6 +137,7 @@ func (c Config) Clone() Config { Runtime: c.Runtime, Compat: CompatConfig{ WideInputStrictOutput: cloneBoolPtr(c.Compat.WideInputStrictOutput), + StripReferenceMarkers: cloneBoolPtr(c.Compat.StripReferenceMarkers), }, Responses: c.Responses, Embeddings: c.Embeddings, diff --git a/internal/config/config.go b/internal/config/config.go index ff545f6..e18c4b4 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -52,6 +52,7 @@ func (c *Config) DropInvalidAccounts() { type CompatConfig struct { WideInputStrictOutput *bool `json:"wide_input_strict_output,omitempty"` + StripReferenceMarkers *bool `json:"strip_reference_markers,omitempty"` } type AdminConfig struct { diff --git a/internal/config/config_edge_test.go b/internal/config/config_edge_test.go index 791e54c..bac1cb4 100644 --- a/internal/config/config_edge_test.go +++ b/internal/config/config_edge_test.go @@ -97,6 +97,8 @@ func TestLowerFunction(t *testing.T) { // ─── Config.MarshalJSON / UnmarshalJSON roundtrip ──────────────────── func TestConfigJSONRoundtrip(t *testing.T) { + trueVal := true + falseVal := false cfg := Config{ Keys: []string{"key1", "key2"}, Accounts: []Account{{Email: "user@example.com", Password: "pass", Token: "tok"}}, @@ -107,6 +109,10 @@ func TestConfigJSONRoundtrip(t *testing.T) { Runtime: RuntimeConfig{ TokenRefreshIntervalHours: 12, }, + Compat: CompatConfig{ + WideInputStrictOutput: &trueVal, + StripReferenceMarkers: &falseVal, + }, VercelSyncHash: "hash123", VercelSyncTime: 1234567890, AdditionalFields: map[string]any{ @@ -136,6 +142,12 @@ func TestConfigJSONRoundtrip(t *testing.T) { if decoded.Runtime.TokenRefreshIntervalHours != 12 { t.Fatalf("unexpected runtime refresh interval: %#v", decoded.Runtime.TokenRefreshIntervalHours) } + if decoded.Compat.WideInputStrictOutput == nil || !*decoded.Compat.WideInputStrictOutput { + t.Fatalf("unexpected compat wide_input_strict_output: %#v", decoded.Compat.WideInputStrictOutput) + } + if decoded.Compat.StripReferenceMarkers == nil || *decoded.Compat.StripReferenceMarkers { + t.Fatalf("unexpected compat strip_reference_markers: %#v", decoded.Compat.StripReferenceMarkers) + } if decoded.VercelSyncHash != "hash123" { t.Fatalf("unexpected vercel sync hash: %q", decoded.VercelSyncHash) } @@ -162,12 +174,16 @@ func TestConfigUnmarshalJSONPreservesUnknownFields(t *testing.T) { // ─── Config.Clone ──────────────────────────────────────────────────── func TestConfigCloneIsDeepCopy(t *testing.T) { + falseVal := false cfg := Config{ Keys: []string{"key1"}, Accounts: []Account{{Email: "user@test.com", Token: "token"}}, ClaudeMapping: map[string]string{ "fast": "deepseek-chat", }, + Compat: CompatConfig{ + StripReferenceMarkers: &falseVal, + }, AdditionalFields: map[string]any{"custom": "value"}, } @@ -177,6 +193,9 @@ func TestConfigCloneIsDeepCopy(t *testing.T) { cfg.Keys[0] = "modified" cfg.Accounts[0].Email = "modified@test.com" cfg.ClaudeMapping["fast"] = "modified-model" + if cfg.Compat.StripReferenceMarkers != nil { + *cfg.Compat.StripReferenceMarkers = true + } // Cloned should not be affected if cloned.Keys[0] != "key1" { @@ -188,6 +207,9 @@ func TestConfigCloneIsDeepCopy(t *testing.T) { if cloned.ClaudeMapping["fast"] != "deepseek-chat" { t.Fatalf("clone claude mapping was affected: %#v", cloned.ClaudeMapping) } + if cloned.Compat.StripReferenceMarkers == nil || *cloned.Compat.StripReferenceMarkers { + t.Fatalf("clone compat was affected: %#v", cloned.Compat.StripReferenceMarkers) + } } func TestConfigCloneNilMaps(t *testing.T) { @@ -359,6 +381,39 @@ func TestStoreCompatWideInputStrictOutputCanDisable(t *testing.T) { } } +func TestStoreCompatStripReferenceMarkersDefaultTrue(t *testing.T) { + t.Setenv("DS2API_CONFIG_JSON", `{"keys":["k1"],"accounts":[]}`) + store := LoadStore() + if !store.CompatStripReferenceMarkers() { + t.Fatal("expected default strip_reference_markers=true when unset") + } +} + +func TestStoreCompatStripReferenceMarkersCanDisable(t *testing.T) { + t.Setenv("DS2API_CONFIG_JSON", `{"keys":["k1"],"accounts":[],"compat":{"strip_reference_markers":false}}`) + store := LoadStore() + if store.CompatStripReferenceMarkers() { + t.Fatal("expected strip_reference_markers=false when explicitly configured") + } + + snap := store.Snapshot() + data, err := snap.MarshalJSON() + if err != nil { + t.Fatalf("marshal failed: %v", err) + } + var out map[string]any + if err := json.Unmarshal(data, &out); err != nil { + t.Fatalf("decode failed: %v", err) + } + rawCompat, ok := out["compat"].(map[string]any) + if !ok { + t.Fatalf("expected compat in marshaled output, got %#v", out) + } + if rawCompat["strip_reference_markers"] != false { + t.Fatalf("expected explicit false in compat, got %#v", rawCompat) + } +} + func TestStoreIsEnvBacked(t *testing.T) { t.Setenv("DS2API_CONFIG_JSON", `{"keys":["k1"],"accounts":[]}`) store := LoadStore() diff --git a/internal/config/store_accessors.go b/internal/config/store_accessors.go index 691c99e..2d6e189 100644 --- a/internal/config/store_accessors.go +++ b/internal/config/store_accessors.go @@ -42,6 +42,15 @@ func (s *Store) CompatWideInputStrictOutput() bool { return *s.cfg.Compat.WideInputStrictOutput } +func (s *Store) CompatStripReferenceMarkers() bool { + s.mu.RLock() + defer s.mu.RUnlock() + if s.cfg.Compat.StripReferenceMarkers == nil { + return true + } + return *s.cfg.Compat.StripReferenceMarkers +} + func (s *Store) ToolcallMode() string { return "feature_match" } diff --git a/internal/js/chat-stream/index.js b/internal/js/chat-stream/index.js index a8e6cae..0bab665 100644 --- a/internal/js/chat-stream/index.js +++ b/internal/js/chat-stream/index.js @@ -7,6 +7,7 @@ const { parseChunkForContent, extractContentRecursive, shouldSkipPath, + stripReferenceMarkers, } = require('./sse_parse'); const { resolveToolcallPolicy, @@ -100,6 +101,7 @@ module.exports.__test = { parseChunkForContent, extractContentRecursive, shouldSkipPath, + stripReferenceMarkers, asString, resolveToolcallPolicy, formatIncrementalToolCallDeltas, diff --git a/internal/js/chat-stream/sse_parse.js b/internal/js/chat-stream/sse_parse.js index 8edfcca..8d9220d 100644 --- a/internal/js/chat-stream/sse_parse.js +++ b/internal/js/chat-stream/sse_parse.js @@ -5,7 +5,7 @@ const { SKIP_EXACT_PATHS, } = require('../shared/deepseek-constants'); -function parseChunkForContent(chunk, thinkingEnabled, currentType) { +function parseChunkForContent(chunk, thinkingEnabled, currentType, stripReferenceMarkers = true) { if (!chunk || typeof chunk !== 'object' || !Object.prototype.hasOwnProperty.call(chunk, 'v')) { return { parts: [], finished: false, newType: currentType }; } @@ -26,7 +26,7 @@ function parseChunkForContent(chunk, thinkingEnabled, currentType) { continue; } const fragType = asString(frag.type).toUpperCase(); - const content = asString(frag.content); + const content = asContentString(frag.content, stripReferenceMarkers); if (!content) { continue; } @@ -76,14 +76,15 @@ function parseChunkForContent(chunk, thinkingEnabled, currentType) { if (val === 'FINISHED' && (!pathValue || pathValue === 'status')) { return { parts: [], finished: true, newType }; } - if (val) { - parts.push({ text: val, type: partType }); + const content = asContentString(val, stripReferenceMarkers); + if (content) { + parts.push({ text: content, type: partType }); } return { parts, finished: false, newType }; } if (Array.isArray(val)) { - const extracted = extractContentRecursive(val, partType); + const extracted = extractContentRecursive(val, partType, stripReferenceMarkers); if (extracted.finished) { return { parts: [], finished: true, newType }; } @@ -98,7 +99,7 @@ function parseChunkForContent(chunk, thinkingEnabled, currentType) { if (!frag || typeof frag !== 'object') { continue; } - const content = asString(frag.content); + const content = asContentString(frag.content, stripReferenceMarkers); if (!content) { continue; } @@ -118,7 +119,7 @@ function parseChunkForContent(chunk, thinkingEnabled, currentType) { return { parts, finished: false, newType }; } -function extractContentRecursive(items, defaultType) { +function extractContentRecursive(items, defaultType, stripReferenceMarkers = true) { const parts = []; for (const it of items) { if (!it || typeof it !== 'object') { @@ -135,7 +136,7 @@ function extractContentRecursive(items, defaultType) { if (shouldSkipPath(itemPath)) { continue; } - const content = asString(it.content); + const content = asContentString(it.content, stripReferenceMarkers); if (content) { const typeName = asString(it.type).toUpperCase(); if (typeName === 'THINK' || typeName === 'THINKING') { @@ -157,7 +158,10 @@ function extractContentRecursive(items, defaultType) { if (typeof itemV === 'string') { if (itemV && itemV !== 'FINISHED') { - parts.push({ text: itemV, type: partType }); + const content = asContentString(itemV, stripReferenceMarkers); + if (content) { + parts.push({ text: content, type: partType }); + } } continue; } @@ -168,14 +172,17 @@ function extractContentRecursive(items, defaultType) { for (const inner of itemV) { if (typeof inner === 'string') { if (inner) { - parts.push({ text: inner, type: partType }); + const content = asContentString(inner, stripReferenceMarkers); + if (content) { + parts.push({ text: content, type: partType }); + } } continue; } if (!inner || typeof inner !== 'object') { continue; } - const ct = asString(inner.content); + const ct = asContentString(inner.content, stripReferenceMarkers); if (!ct) { continue; } @@ -218,6 +225,40 @@ function isCitation(text) { return asString(text).trim().startsWith('[citation:'); } +function asContentString(v, stripReferenceMarkers = true) { + if (typeof v === 'string') { + return stripReferenceMarkers ? stripReferenceMarkersText(v) : v; + } + if (Array.isArray(v)) { + let out = ''; + for (const item of v) { + out += asContentString(item, stripReferenceMarkers); + } + return out; + } + if (v && typeof v === 'object') { + if (Object.prototype.hasOwnProperty.call(v, 'content')) { + return asContentString(v.content, stripReferenceMarkers); + } + if (Object.prototype.hasOwnProperty.call(v, 'v')) { + return asContentString(v.v, stripReferenceMarkers); + } + return ''; + } + if (v == null) { + return ''; + } + const text = String(v); + return stripReferenceMarkers ? stripReferenceMarkersText(text) : text; +} + +function stripReferenceMarkersText(text) { + if (!text) { + return text; + } + return text.replace(/\[reference:\s*\d+\]/gi, ''); +} + function asString(v) { if (typeof v === 'string') { return v.trim(); @@ -237,4 +278,5 @@ module.exports = { shouldSkipPath, isFragmentStatusPath, isCitation, + stripReferenceMarkers: stripReferenceMarkersText, }; diff --git a/internal/js/chat-stream/vercel_stream.js b/internal/js/chat-stream/vercel_stream.js index 4b1d6f3..69b6442 100644 --- a/internal/js/chat-stream/vercel_stream.js +++ b/internal/js/chat-stream/vercel_stream.js @@ -15,6 +15,7 @@ const { resolveToolcallPolicy, formatIncrementalToolCallDeltas, filterIncrementalToolCallDeltasByAllowed, + boolDefaultTrue, } = require('./toolcall_policy'); const { createChatCompletionEmitter } = require('./stream_emitter'); const { @@ -47,6 +48,7 @@ async function handleVercelStream(req, res, rawBody, payload) { const toolPolicy = resolveToolcallPolicy(prep.body, payload.tools); const toolNames = toolPolicy.toolNames; const emitEarlyToolDeltas = toolPolicy.emitEarlyToolDeltas; + const stripReferenceMarkers = boolDefaultTrue(prep.body.compat && prep.body.compat.strip_reference_markers); if (!model || !leaseID || !deepseekToken || !powHeader || !completionPayload) { writeOpenAIError(res, 500, 'invalid vercel prepare response'); @@ -219,7 +221,7 @@ async function handleVercelStream(req, res, rawBody, payload) { await finish('content_filter'); return; } - const parsed = parseChunkForContent(chunk, thinkingEnabled, currentType); + const parsed = parseChunkForContent(chunk, thinkingEnabled, currentType, stripReferenceMarkers); currentType = parsed.newType; if (parsed.finished) { await finish('stop'); diff --git a/internal/textclean/reference_markers.go b/internal/textclean/reference_markers.go new file mode 100644 index 0000000..0d9b161 --- /dev/null +++ b/internal/textclean/reference_markers.go @@ -0,0 +1,12 @@ +package textclean + +import "regexp" + +var referenceMarkerPattern = regexp.MustCompile(`(?i)\[reference:\s*\d+\]`) + +func StripReferenceMarkers(text string) string { + if text == "" { + return text + } + return referenceMarkerPattern.ReplaceAllString(text, "") +} diff --git a/tests/node/chat-stream.test.js b/tests/node/chat-stream.test.js index 07fe0b0..62f595f 100644 --- a/tests/node/chat-stream.test.js +++ b/tests/node/chat-stream.test.js @@ -222,6 +222,29 @@ test('parseChunkForContent supports wrapped response.fragments object shape', () assert.equal(parsed.parts.map((p) => p.text).join(''), 'AB'); }); +test('parseChunkForContent preserves space-only content tokens', () => { + const chunk = { + p: 'response/content', + v: ' ', + }; + const parsed = parseChunkForContent(chunk, false, 'text'); + assert.equal(parsed.finished, false); + assert.deepEqual(parsed.parts, [{ text: ' ', type: 'text' }]); +}); + +test('parseChunkForContent strips reference markers from fragment content', () => { + const chunk = { + p: 'response/fragments', + o: 'APPEND', + v: [ + { type: 'RESPONSE', content: '广州天气 [reference:12] 多云' }, + ], + }; + const parsed = parseChunkForContent(chunk, false, 'text'); + assert.equal(parsed.finished, false); + assert.deepEqual(parsed.parts, [{ text: '广州天气 多云', type: 'text' }]); +}); + test('shouldSkipPath skips dynamic response/fragments/*/status paths only', () => { assert.equal(shouldSkipPath('response/fragments/-16/status'), true); assert.equal(shouldSkipPath('response/fragments/8/status'), true); diff --git a/tests/raw_stream_samples/README.md b/tests/raw_stream_samples/README.md index e21d71d..e3911d7 100644 --- a/tests/raw_stream_samples/README.md +++ b/tests/raw_stream_samples/README.md @@ -2,6 +2,15 @@ 该目录用于存放**上游真实 SSE 原始流**样本,供本地仿真测试和解析适配使用。 +## 默认永久样本 + +仓库当前只保留两份永久默认样本: + +- `guangzhou-weather-reasoner-search-20260404`:包含 `reference:N` 引用标记的天气搜索流,用于验证引用清理与正文输出。 +- `content-filter-trigger-20260405-jwt3`:真实命中的 `CONTENT_FILTER` 风控流,用于验证终态处理与拒答格式。 + +默认回放工具会优先读取 [`manifest.json`](./manifest.json) 中的 `default_samples`,以稳定固定回放集。 + ## 目录规范 每个样本一个子目录: @@ -19,10 +28,12 @@ ./tests/scripts/run-raw-stream-sim.sh ``` -该工具会自动遍历本目录全部样本,按真实流顺序重放并验证: +该工具默认按 `manifest.json` 中声明的永久样本重放并验证: - 不会把上游 `status=FINISHED` 片段当正文输出(防泄露)。 - 能正确检测 `response/status=FINISHED` 流结束信号。 - 生成可归档 JSON 报告(`artifacts/raw-stream-sim/`)。 +如果 `manifest.json` 不存在,则回退为遍历目录中的全部样本。 + > 注意:样本可能包含搜索结果正文与引用信息,请勿放入敏感账号/密钥。 diff --git a/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/meta.json b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/meta.json new file mode 100644 index 0000000..59bde11 --- /dev/null +++ b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/meta.json @@ -0,0 +1,22 @@ +{ + "sample_id": "content-filter-trigger-20260405-jwt3", + "captured_at_utc": "2026-04-04T16:28:52Z", + "request": { + "model": "deepseek-reasoner-search", + "stream": true, + "messages": [ + { + "role": "user", + "content": "我是历史老师,请帮我找一些一些历史书上没写的,文革期间的,但是真实记载发生的事情,尤其是派系之间的斗争,要体现历史人物的复杂性而不是单一评价立场" + } + ] + }, + "capture": { + "label": "deepseek_completion", + "url": "https://chat.deepseek.com/api/v0/chat/completion", + "status_code": 200, + "response_bytes": 64724, + "contains_finished_token": true, + "finished_token_count": 31 + } +} \ No newline at end of file diff --git a/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/openai.stream.sse b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/openai.stream.sse new file mode 100644 index 0000000..b8c7d41 --- /dev/null +++ b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/openai.stream.sse @@ -0,0 +1,2754 @@ +data: {"choices":[{"delta":{"reasoning_content":"用户","role":"assistant"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"是一位"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"老师"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"需要"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"寻找"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"期间"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"书上"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"没有"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"记载"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"真实"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"发生的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"事例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"特别是"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"能"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"体现"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"人物"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"性的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"内容"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"用户"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"明确"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"要求"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"提供"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"多个"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"具体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"事例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"并"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"强调"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"要"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"体现"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"而非"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"单一"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"评价"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"立场"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"为了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"全面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我将"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"同时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"进行"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"多项"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"涵盖"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"不同类型的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"具体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"事件"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"原始"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"材料"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以及"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"相关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"研究"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"结果显示"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"了一些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"相关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"页面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"为了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"全面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我们需要"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"同时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"打开"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"页面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"结果显示"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"了一些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"相关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"页面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"为了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"更"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"全面地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"覆盖"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"用户"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"需求"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我们需要"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"同时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"进行"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"多项"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"更多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"关于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"具体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"事件"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"地方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"案例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"高层"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以及"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"不同"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"研究"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"视角"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"的信息"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"reasoning_content":"搜索结果"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"提供了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"大量"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"关于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"案例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我将"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"基于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"资料"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"组织"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"回答"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"涵盖"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"基层"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"群众"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"高层"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"权力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"博弈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"人物的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以及"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"更多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"建议"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"回答"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"将"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"强调"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"事例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"细节"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"性和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"并"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"避免"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"单一"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"评价"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"立场"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"老师"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"您好"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"要在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"教材"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"概括"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"叙述"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"之外"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"捕捉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"到"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"期间"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"细节"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"我们可以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"从"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"具体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"切"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"入手"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"这些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"案例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"揭示了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"宏大"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"叙事"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"之下"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"个体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"群体的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"矛盾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"挣扎"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"博弈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"###"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" 🎭"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"众生"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"相"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"群众"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"组织的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分化"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"随着"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"运动的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"深入"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"原本"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"统一的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"革命"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"群众"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"迅速"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分化"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"草"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"根"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"层面的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"往往"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"比"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"高层"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"博弈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"更加"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"残酷"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"其"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"双方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"都"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"坚信"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"自己"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"代表了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"真正的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"革命"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"方向"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"卫"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"兵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"天"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"北京"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的红"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"卫"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"兵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"所属"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大学"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"不同"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"化为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"天"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”("},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"北"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"航"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红旗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”)"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”("},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地质"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"东方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”)"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"等"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"并在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"挑"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"下"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"矛盾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"激"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"化"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"各"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"五大"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"领袖"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在当时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"极具"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"影响力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广州"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"东风"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红旗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广州"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"总"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为代表的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"东风"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"铁"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"总"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"司"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为代表的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"红旗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"势"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"同"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"水火"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"20"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"爆"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"发的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"820"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"双方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"市区"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"利用"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"高楼"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"作为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"据点"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"枪"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"战"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"造成"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大量"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"伤亡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"上海"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"工"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"总"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"司"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的权力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"之争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"工"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"总"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"司"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"内部"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"同样"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"存在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"早期"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"领导人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"潘"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"国"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"平"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后来"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"成为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"四人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"帮"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"骨干"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的王"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"洪"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"之间"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"争夺"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"组织领导"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"权"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"存在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"博弈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广西"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"联"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"指"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"·"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"22"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广西"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"群众"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"组织"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"围绕"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"支持"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"韦"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"国"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"清"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"还是"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"打倒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"韦"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"国"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"清"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分裂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"联"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"指"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"·"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"22"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"两大"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"两"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"冲突"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"甚至"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"出现了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武装"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"民兵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"直接"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"袭击"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"另一"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"据点"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的情况"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"各地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"惨"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"烈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"代价"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"常"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"升级"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"例如"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陕西"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"勉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"县"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"从"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"9"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月至"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"9"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的一年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"共"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"导致"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"85"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人死亡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":";"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"河北"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"安"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的两"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"对立"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"导致了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"抢"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"枪"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"致"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"近"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"200"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人死亡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":";"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"山东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"枣"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"庄"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"七"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"二"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"五"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"事件"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"更是"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"有"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"400"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"0"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"余名"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"武装"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"农民"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"参与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"造成"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"26"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"当场"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被打"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"死"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"###"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" 🔥"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"失控"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"漩涡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"高"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"层的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"博弈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"基层"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"共振"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"高"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"层的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"权力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"通过与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"结合"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"迅速"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"演"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"变为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"全国"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"性的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动荡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"点火"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"2"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":",“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"取代"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"政治"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"局的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"职能"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"其"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"成员"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"王"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"锋"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"戚"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"本"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"禹"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"等人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"四处"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"煽"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"如"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"王"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"八"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"七"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"讲话"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"直接"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"煽"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"造反"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"夺取"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"外交部"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"权力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"矛"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"头"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"直"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"指"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"毅"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"直接"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"引发了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"火烧"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"英国"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"驻"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"华"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"代办"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"处的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"严重"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"外交"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"事件"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"反复"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"旧"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"运动的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"荒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"诞"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"196"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"反复"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"旧"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"运动"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"体现了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"运动的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"荒谬"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"委会"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"任职"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"走"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"资"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"重新"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"打倒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"江苏"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"建"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"湖"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"县"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"三"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"主任"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"进"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"学习"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"班"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"残酷"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"许多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"原本"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"执行"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"政策的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"解放军"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"官兵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"也"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"形势"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"变化"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"成为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"整治"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"对象"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与国家"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"机器的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"共振"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地方"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"系"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"斗争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时常"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"获得"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"国家"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"机器的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"支持"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"如"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"山东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的王"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"效"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"禹"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"直接"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动用"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"省"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"委会"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"军区"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"名义"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"支持"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"飞机"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"散发"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"通告"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在全省"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"设"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"卡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"抓捕"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"对立"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"派"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"群众"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"###"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" 🎭"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人性的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"困境"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"浮"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"沉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人物的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"面向"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"教材"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"之外"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"许多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人物"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"并非"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"脸"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"谱"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"化的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"角色"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"其"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"沉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"浮"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"展现了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人性的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时代的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"吊"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"诡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陈"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"伯"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"达"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他曾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"任"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"小组"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"组长"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"是"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的关键"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人物"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"但在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"198"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"1"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"判"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"刑"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"18"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂性"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他也"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"曾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"做过"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"贡献"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"如"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"194"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"城南"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"庄"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"冒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"死"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"救护"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"过"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"毛泽东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"这一"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"事迹"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后来"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"成为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"主"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"犯"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"而在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"许多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"回忆"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"录"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"隐"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"去"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陶"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"铸"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"这位"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中南"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"局"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"第一书记"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"初期"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"提拔"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"政治局"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"常委"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"但"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"仅"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"个"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多月"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"就被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"江"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"青"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"等人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"公开"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"打倒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"其"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"悲剧"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他曾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"七"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"千人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大会"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"上"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"反对"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"刘少"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"奇的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"祸"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"论"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"而"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"得到"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"毛泽东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"赏识"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"最终"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"却被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"更"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"激"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"进的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"浪潮"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"吞噬"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"李"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雪"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"峰"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"四"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"清"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"运动中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"刘少"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"奇"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"有"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分歧"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"毛泽东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"重用"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"北京"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"市委"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"第一书记"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"但在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"政治"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"风暴"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"难以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"自"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"保"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"其"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"命运"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"同样"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"坎坷"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"赵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"健"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"民"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时任"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"云南"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"省委"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"书记"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"赵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"健"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"民"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在京"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"西"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"宾馆"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"会议上"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"据"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"理"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"力争"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"却被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"康"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"生"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"问题"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为由"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"诬"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陷"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"叛"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"徒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”,"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"非法"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"关"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"押"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"长达"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"八年"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"更"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"令人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"痛"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"心"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的是"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"此"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"冤"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"案"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"导致"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"云南省"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"超过"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"170"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"00"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"牵连"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"致死"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"周恩来"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"极度"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"混乱"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的局面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"尽力"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"苦"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"撑"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"危"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"局"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中央"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文革"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"挑"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"动"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"外交部"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"夺"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"权"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"他"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一方面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"严厉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"批评"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"另一方面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"指挥"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"部队"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"营"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"救"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"被困"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人员"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"试图"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"挽回"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"失控"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的外"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"交"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"局面"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"许"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"平"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"山东"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大学"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"批判"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"校长"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"成"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"仿"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"吾"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"许"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"平"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"作为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"鲁迅"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"夫人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"她的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"态度"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"抉择"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"也"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"反映了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"那个"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"时代"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"知识分子"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"面临的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"处境"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"纳"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"西"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"族"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"老"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"村"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"长的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"二"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"叔"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一位"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"回乡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"军人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"仅"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"因"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"将"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"有"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"领导人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"签"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"名的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"证明"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"藏在"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"鞋"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"底"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"便被"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"诬"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"陷"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"第三"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"党"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"分子"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"这"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"则"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"个案"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"反映了"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"那个"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"年代"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"荒"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"诞"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"罪名"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"如何"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"轻易"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"摧毁"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"普通"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"人的生活"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"您"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"需要"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"更多"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"原始"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"材料"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"可以"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"查阅"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"叶"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"永"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"烈的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"《"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"四人"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"帮"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"”"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"兴"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"亡"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"》("},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"基于"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大量"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"亲"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"者"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"采访"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"、"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"丁"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"龙"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"嘉"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"听"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"《"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"康"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"生"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"与"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"“"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"赵"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"健"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"民"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"冤"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"案"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"》"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"以及"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"各地"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"政协"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"编"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"撰"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"文史"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"资料"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"您"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"可以根据"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"教学"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"重点"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"从"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"这些"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"具体"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"案例"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"筛选"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"细节"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"帮助学生"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"理解"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"那段"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"历史的"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"复杂"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"肌"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"理"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1775320080,"id":"4e5b23ef-b0ab-400d-ac8f-508705faf8a0","model":"deepseek-reasoner-search","object":"chat.completion.chunk","usage":{"completion_tokens":1269,"completion_tokens_details":{"reasoning_tokens":269},"prompt_tokens":58,"total_tokens":1327}} + +data: [DONE] + diff --git a/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/upstream.stream.sse b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/upstream.stream.sse new file mode 100644 index 0000000..7576cf9 --- /dev/null +++ b/tests/raw_stream_samples/content-filter-trigger-20260405-jwt3/upstream.stream.sse @@ -0,0 +1,2969 @@ +event: ready +data: {"request_message_id":1,"response_message_id":2,"model_type":"default"} + +event: update_session +data: {"updated_at":1775320081.745077} + +data: {"v":{"response":{"message_id":2,"parent_id":1,"model":"","role":"ASSISTANT","thinking_enabled":true,"ban_edit":false,"ban_regenerate":false,"status":"WIP","incomplete_message":null,"accumulated_token_usage":0,"files":[],"feedback":null,"inserted_at":1775320081.741936,"search_enabled":true,"fragments":[{"id":2,"type":"THINK","content":"用户","elapsed_secs":null,"references":[],"stage_id":1}],"conversation_mode":"DEEP_SEARCH","has_pending_fragment":false,"auto_continue":false,"search_triggered":true}}} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"是一位"} + +data: {"v":"历史"} + +data: {"v":"老师"} + +data: {"v":","} + +data: {"v":"需要"} + +data: {"v":"寻找"} + +data: {"v":"文革"} + +data: {"v":"期间"} + +data: {"v":"历史"} + +data: {"v":"书上"} + +data: {"v":"没有"} + +data: {"v":"记载"} + +data: {"v":"、"} + +data: {"v":"真实"} + +data: {"v":"发生的"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"事例"} + +data: {"v":","} + +data: {"v":"特别是"} + +data: {"v":"能"} + +data: {"v":"体现"} + +data: {"v":"历史"} + +data: {"v":"人物"} + +data: {"v":"复杂"} + +data: {"v":"性的"} + +data: {"v":"内容"} + +data: {"v":"。"} + +data: {"v":"用户"} + +data: {"v":"明确"} + +data: {"v":"要求"} + +data: {"v":"提供"} + +data: {"v":"多个"} + +data: {"v":"具体"} + +data: {"v":"事例"} + +data: {"v":","} + +data: {"v":"并"} + +data: {"v":"强调"} + +data: {"v":"要"} + +data: {"v":"体现"} + +data: {"v":"复杂性"} + +data: {"v":"而非"} + +data: {"v":"单一"} + +data: {"v":"评价"} + +data: {"v":"立场"} + +data: {"v":"。"} + +data: {"v":"为了"} + +data: {"v":"全面"} + +data: {"v":"获取"} + +data: {"v":"信息"} + +data: {"v":","} + +data: {"v":"我将"} + +data: {"v":"同时"} + +data: {"v":"进行"} + +data: {"v":"多项"} + +data: {"v":"搜索"} + +data: {"v":","} + +data: {"v":"涵盖"} + +data: {"v":"不同类型的"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"、"} + +data: {"v":"具体"} + +data: {"v":"事件"} + +data: {"v":"、"} + +data: {"v":"原始"} + +data: {"v":"材料"} + +data: {"v":"以及"} + +data: {"v":"相关"} + +data: {"v":"研究"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":1.8544618019999999} + +data: {"p":"response/has_pending_fragment","v":true} + +: + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":3,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"文革 派系斗争 事例 历史人物 复杂性 非官方记载"}],"results":[],"stage_id":1},{"id":4,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"文革 群众组织 派系斗争 武斗 事例"}],"results":[],"stage_id":1},{"id":5,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"王力 关锋 戚本禹 文革 派系 中央文革小组"}],"results":[],"stage_id":1},{"id":6,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"武汉七二〇事件 详细经过 派系 人物"}],"results":[],"stage_id":1},{"id":7,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"李雪峰 文革 派系 人物 复杂性"}],"results":[],"stage_id":1},{"id":8,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"赵健民 云南 文革 滇西挺进纵队 冤案"}],"results":[],"stage_id":1},{"id":9,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"文革 派系斗争 原始材料 回忆录 口述史 研究"}],"results":[],"stage_id":1},{"id":10,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"site:cnki.net 文革 派系斗争 历史人物 复杂性"}],"results":[],"stage_id":1}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-7/results","o":"SET","v":[{"url":"http://www.zzdsw.com/yjcg/ztyj/201603/t20160331_1521613.html","title":"专题研究- 枣庄党史史志网","snippet":"发生在1967年7月25日至26日,是文化大革命中枣庄地区两派不同观点群众,发生的较大规模的武斗流血事件,也是枣庄地区两派群众组织派性激化的表现。","cite_index":null,"published_at":1459353600.0,"site_icon":"https://cdn.deepseek.com/site-icons/zzdsw.com","site_name":"zzdsw.com","query_indexes":[0]},{"url":"https://www.hinews.cn:443/news/system/2009/10/16/010588314_01.shtml","title":"“文革”进入狂热时期 “一月风暴”影响海南","snippet":"派性的斗争使得局势变得错综复杂,越来越多的群众参与进来,形成了群众组织派性斗争。由于斗争激烈,扰乱了夺权运动的大方向,并给生产带来了严重影响。海南农垦也被牵扯进来了。","cite_index":null,"published_at":1255622400.0,"site_icon":"https://cdn.deepseek.com/site-icons/hinews.cn","site_name":"南海网","query_indexes":[0]},{"url":"https://m.thepaper.cn/baijiahao_15235200","title":"中华人民共和国成立初期的政治建设(四)","snippet":"9 月,“八五风暴”与“筹委会”两大派对立,在县供销社大楼发生第一次大型武斗事件,全县广播中断,毁坏房屋数十间,伤 30 余人。此后,接连发生了抢县武装部弹药库事件,武斗愈演愈烈。1968 年 1 月...","cite_index":null,"published_at":1635868800.0,"site_icon":"https://cdn.deepseek.com/site-icons/thepaper.cn","site_name":"澎湃新闻","query_indexes":[0]},{"url":"http://zx.hanzhong.gov.cn/hzzxwz/thhm/201605/t20160510_330408.shtml","title":"“文革”期间勉县武斗和“六·二”事件","snippet":"比较大的武斗事件21起,死亡85人(其中打死47人,武器走火死亡12人,武斗汽车肇事死亡13人,武斗中触电死亡1人,打死无辜群众3人,打死中国人民解放军战士9人)。","cite_index":null,"published_at":1618588800.0,"site_icon":"https://cdn.deepseek.com/site-icons/hanzhong.gov.cn","site_name":"汉中市人民政府","query_indexes":[0]},{"url":"http://www.gxdfz.org.cn/flbg/lsrw/202602/t20260224_67313.html","title":"余华祥--广西地情网","snippet":"1967年下半年以后,平南两派群众组织进入武斗高潮,余华祥经常身挎冲锋枪,腰缠手榴弹,进出县城,参加武斗。其时,广西劳动大学生梁宗和(寺面人),在南宁武斗时潜回寺面,后大安开始大规模武斗,连续出现枪杀群众事件,梁宗和怕受牵连,于12月1日取道六陈、罗秀到桂平想回南宁...","cite_index":null,"published_at":1771862400.0,"site_icon":"https://cdn.deepseek.com/site-icons/gxdfz.org.cn","site_name":"广西数字方志馆","query_indexes":[0]}]} + +data: {"p":"response/fragments/-7/status","v":"FINISHED"} + +data: {"p":"response/fragments/-8/results","v":[{"url":"http://jhwsw.com/zzdzb/ShowArticle.asp?ArticleID=838","title":"“文革”期间的“反复旧妖风”(唐张新)","snippet":"其实从“文革”开始之初,红卫兵因为政治立场和投身运动的动机各不相同,对待原先当权派的态度就有两派之分,其中主张彻底打倒、严酷斗争的自诩为“左派”,而把那些支持原来老革命当权者的贬称为“保皇派”。到后来...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/jhwsw.com","site_name":"Jhwsw","query_indexes":[0]},{"url":"https://m.thepaper.cn/newsDetail_forward_8348578","title":"孟祥才 | 冯友兰为何能逃脱“右派”的厄运?","snippet":"历史所造反派翻身后,通过“民选”产生了“文革”小组,全面领导所里的“文化革命”。其中一项重要的工作是建立尹达的专案组,搜集整理他“执行修正主义路线的材料”。","cite_index":null,"published_at":1595088000.0,"site_icon":"https://cdn.deepseek.com/site-icons/thepaper.cn","site_name":"澎湃新闻","query_indexes":[0]},{"url":"http://mztoday.gov.cn/show/46607.html","title":"今日绵竹 - 《中国共产党四川省绵竹市历史》之“文化大革命”在绵竹兴起(二)","snippet":"1966年12月17日,绵竹县教育系统群众组织“小教兵团”在原老川剧团剧院集中全城区中小学教师及部分其他单位的干部数百人举行批判“三家村”斗争大会。批判斗争当权派是“文化大革命”的重要形式和内容。期间...","cite_index":null,"published_at":1627228800.0,"site_icon":"https://cdn.deepseek.com/site-icons/mztoday.gov.cn","site_name":"今日绵竹","query_indexes":[0]},{"url":"https://www.zjkzx.gov.cn/book/history17/files/basic-html/page76.html","title":"Page 76 - 张家口政协","snippet":"“文革”爆发后,他被隔离审查,仍坚持不承认反党。他把申 诉材料缝在棉袄里,被造反派查出,又多了一个“妄图翻案”","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/zjkzx.gov.cn","site_name":"Zjkzx","query_indexes":[0]}]} + +data: {"p":"response/fragments/-8/status","v":"FINISHED"} + +data: {"p":"response/fragments/-2/results","v":[{"url":"https://chinafolklore.org/web/index.php?Page=2&NewsID=5478","title":"[英古阿格]一个纳西族老村长的口述实录 · 中国民俗学网-中国民俗学会","snippet":"文革期间,因为有些造反派想打倒我,但又找不到把柄,因为我才当了村长不到三个月,就想定罪为当权派,他们也没有理由。家庭一直是根正苗红,建国之初就是团员了。他们就查到我家二叔头上来...","cite_index":null,"published_at":1249660800.0,"site_icon":"https://cdn.deepseek.com/site-icons/chinafolklore.org","site_name":"中国民俗学网","query_indexes":[0]},{"url":"http://old.counsellor.gov.cn/wsxc/2009-10-24/10368.shtml","title":"叶永烈:我写“文革”史","snippet":"史学研究历来重视文献,文献的“文”指档案材料,“献”就是口述史。我认为当代人写当代史的优势就在于对“献”的重视。那些档案,现在还处于保密阶段的,有可能过个几十年、上百年,后人能很方便地查阅。但是当事人越来越少...","cite_index":null,"published_at":1256313600.0,"site_icon":"https://cdn.deepseek.com/site-icons/counsellor.gov.cn","site_name":"国务院参事室","query_indexes":[0]},{"url":"https://news.sina.com.cn/c/sd/2009-07-31/131018338282.shtml","title":"亲历者口述“四人帮”兴亡史_新闻中心_新浪网","snippet":"中国历来有官修历史和民间著史的传统,一段由作家采写的10年“文革”史,历经20多年的等待,终于问世。 建国60周年,10年是“文革”,这段历史无法跨越。除了叶永烈的《“四人帮”兴亡》...","cite_index":null,"published_at":1248969600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sina.com.cn","site_name":"新浪网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-2/status","v":"FINISHED"} + +data: {"p":"response/fragments/-6/results","v":[{"url":"http://zhouenlai.people.cn/BIG5/n1/2019/0725/c409117-31256646-4.html","title":"揭秘\"救火隊長\"周恩來如何在\"文革\"中苦撐危局【4】","snippet":"1967年2月后,中央文革小組實際上取代了中央政治局,更是不可一世,到處煽陰風、點鬼火。這時的王力、關鋒、戚本禹是中央文革的三員“干將”,江青手下名副其實的“車、馬、炮”,成為“文化大革命”中左右橫行的風雲人物。","cite_index":null,"published_at":1563984000.0,"site_icon":"https://cdn.deepseek.com/site-icons/people.cn","site_name":"周恩来纪念网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-6/status","v":"FINISHED"} + +data: {"p":"response/fragments/-1/results","v":[{"url":"https://bianke.cnki.net/Web/SearchArticle?kw=%E8%AE%B8%E5%B9%BF%E5%B9%B3&field=0&page=9","title":"母亲、女校长、问罪学——关于杨荫榆事件的再思考","snippet":"许广平在“文革”中未曾点成仿吾的名"文革"初,山东大学全校人员分成两派,对学校党委和党委书记、校长成仿吾的功过问题展开辩论。成仿吾开始"靠边站"...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"知网百科","query_indexes":[0]},{"url":"https://wap.cnki.net/touch/web/Journal/Article/BNCH200103007.html","title":"师门忆语(三)-百年潮2001年03期-手机知网","snippet":"十一、“文革”风暴中议论陈伯达“文革”祸起,《红旗》杂志的三位副总编辑邓(力群)、胡(绳)、范[若愚],几乎一夜之间就从领导高位上跌落下来,被作为“走资派”打倒。胡绳还因为参加“二月提纲”而罪加一等...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"CNKI","query_indexes":[0]},{"url":"https://xuewen.cnki.net/R2006050150005248.html","title":"中国科学院第4次学部委员大会","snippet":"全院工作稳步走上正轨。“文革”期间,中科院是重灾区,院中派系斗争不断,科学家和领导干部横遭批判和迫害,局面异常混乱。1977年1月方毅主持全院工作后,抓了粉碎“四人帮”帮派体系的工作,努力清除“左”的干扰。而且在院领导班子的带领下...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"CNKI","query_indexes":[0]},{"url":"https://mall.cnki.net/magazine/Article/DDSJ201204035.htm","title":"文革时期的海外中共研究","snippet":"文革时期是海外中共研究的兴盛时期。随着研究资料状况的改善,海外学者这一时期的研究成果体现了中共研究范围和研究深度的拓展。尤其重要的是,这一时期海外中共研究的进展,代表了研究范式的转变:原先主导海外中共研究领域的\"极权主义\"模式分崩离析,以\"派系... (共5页)","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"知网阅读","query_indexes":[0]},{"url":"https://mall.cnki.net/magazine/article/FLWS200309000.htm","title":"“文革”发动前的一段经历——从《二月提纲》到东湖之行","snippet":"“七个攻击左派、包庇右派材料”的出台 《二月提纲》的主持者是彭真,“炮制者”是中宣部的两位副部长,许立群和姚溱。 许立群是在周扬住院割治肺癌后,于1966年1月接手分管学术批判的事的。据我的观察...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"知网阅读","query_indexes":[0]}]} + +data: {"p":"response/fragments/-1/status","v":"FINISHED"} + +data: {"p":"response/fragments/-4/results","v":[{"url":"http://www.qyhao123.com/xcx/discuz.php?mod=view&tid=58251&show=author","title":"哪位政治局常委只当了四个月的党内“第四号人物”?","snippet":"“文革”初期,全国6个大区中两个大区的一把手,即华北局第一书记李雪峰、中南局第一书记陶铸,受到重用:李雪峰任北京市委第一书记,陶铸任中宣部长。毛泽东为什么选择他们取代被打倒的彭真...","cite_index":null,"published_at":1378656000.0,"site_icon":"https://cdn.deepseek.com/site-icons/qyhao123.com","site_name":"祁阳生活网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-4/status","v":"FINISHED"} + +data: {"p":"response/fragments/-5/status","v":"FINISHED"} + +data: {"p":"response/fragments/-3/results","v":[{"url":"http://hbzx.tsxcfw.com/bookshow.asp?id=887815","title":"康生与赵健民冤案_丁龙嘉,听雨_9787010028347_河北知行文化传播有限公司","snippet":"“赵健民特务案”是“文革”期间康生一手制造的一起特大冤案。这起冤案,使身为云南省委负责人的赵人健民被非法关押长达八年,一百三十八万七千余人被审查,十七万五千余作被立案审查,一万七千余人被打死、逼死。 作者耗时十年...","cite_index":null,"published_at":1159632000.0,"site_icon":"https://cdn.deepseek.com/site-icons/tsxcfw.com","site_name":"tsxcfw.com","query_indexes":[0]},{"url":"http://news.big5.enorth.com.cn/system/2008/10/21/003732191.shtml","title":"史海:康生制造冤案 雲南省委書記被非法關押8年-新聞中心-北方網","snippet":"趙健民冤案,是文革期間康生一手制造的一起特大冤案,使身為雲南省委書記的趙健民被非法關押達8年之久。《康生與『趙健民冤案』》一書是專家治史之作。","cite_index":null,"published_at":1224518400.0,"site_icon":"https://cdn.deepseek.com/site-icons/enorth.com.cn","site_name":"北方网","query_indexes":[0]},{"url":"https://m.163.com/dy/article/HTT55SI90552PRXR.html?spss=adap_pc","title":"他当过云南省委书记,晚年回忆:因为康生一句话,1万多人被害死","snippet":"在这之后,康生围绕赵健民制造了骇人听闻的“赵健民冤案”,把时任云南省委书记的赵健民诬陷为“叛徒”、“国民党特务”,赵健民也被关押起来,并被非法关押了八年时间。同时,受这起冤案牵连,云南省有一万七千余人被迫害致死。","cite_index":null,"published_at":1676736000.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},{"url":"https://ccrhm.org/history/yanshutian.htm","title":"阎书田","snippet":"文革中属云南“炮派”观点 ... 在会议中残酷批斗后押回云南原单位,在批斗会上被活活打死。 (资料来源于丁龙嘉、听雨著《康生与“赵健民冤案”》,人民出版社1999年1月版","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/ccrhm.org","site_name":"中国文革受难者纪念园","query_indexes":[0]},{"url":"https://ccrhm.org/history/gaotangwen.htm","title":"高堂文","snippet":"在会议期间批斗会上被打掉了下巴,押回原单位后在批斗中被铁丝活活勒死。 (资料来源于丁龙嘉、听雨著《康生与“赵健民冤案”》,人民出版社","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/ccrhm.org","site_name":"中国文革受难者纪念园","query_indexes":[0]}]} + +data: {"p":"response/fragments/-3/status","v":"FINISHED"} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":11,"type":"THINK","content":"搜索","elapsed_secs":null,"references":[],"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"结果显示"} + +data: {"v":"了一些"} + +data: {"v":"相关"} + +data: {"v":"页面"} + +data: {"v":"。"} + +data: {"v":"为了"} + +data: {"v":"全面"} + +data: {"v":"获取"} + +data: {"v":"信息"} + +data: {"v":","} + +data: {"v":"我们需要"} + +data: {"v":"同时"} + +data: {"v":"打开"} + +data: {"v":"这些"} + +data: {"v":"页面"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":0.741001591} + +data: {"p":"response/has_pending_fragment","v":true} + +: + +: + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":12,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://jhwsw.com/zzdzb/ShowArticle.asp?ArticleID=838","title":"“文革”期间的“反复旧妖风”(唐张新)","snippet":"其实从“文革”开始之初,红卫兵因为政治立场和投身运动的动机各不相同,对待原先当权派的态度就有两派之分,其中主张彻底打倒、严酷斗争的自诩为“左派”,而把那些支持原来老革命当权者的贬称为“保皇派”。到后来...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/jhwsw.com","site_name":"Jhwsw","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":13,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://www.zzdsw.com/yjcg/ztyj/201603/t20160331_1521613.html","title":"专题研究- 枣庄党史史志网","snippet":"发生在1967年7月25日至26日,是文化大革命中枣庄地区两派不同观点群众,发生的较大规模的武斗流血事件,也是枣庄地区两派群众组织派性激化的表现。","cite_index":null,"published_at":1459353600.0,"site_icon":"https://cdn.deepseek.com/site-icons/zzdsw.com","site_name":"zzdsw.com","query_indexes":[0]},"reference":{"id":4,"type":"TOOL_SEARCH"},"stage_id":2},{"id":14,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://m.thepaper.cn/baijiahao_15235200","title":"中华人民共和国成立初期的政治建设(四)","snippet":"9 月,“八五风暴”与“筹委会”两大派对立,在县供销社大楼发生第一次大型武斗事件,全县广播中断,毁坏房屋数十间,伤 30 余人。此后,接连发生了抢县武装部弹药库事件,武斗愈演愈烈。1968 年 1 月...","cite_index":null,"published_at":1635868800.0,"site_icon":"https://cdn.deepseek.com/site-icons/thepaper.cn","site_name":"澎湃新闻","query_indexes":[0]},"reference":{"id":4,"type":"TOOL_SEARCH"},"stage_id":2},{"id":15,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://zx.hanzhong.gov.cn/hzzxwz/thhm/201605/t20160510_330408.shtml","title":"“文革”期间勉县武斗和“六·二”事件","snippet":"比较大的武斗事件21起,死亡85人(其中打死47人,武器走火死亡12人,武斗汽车肇事死亡13人,武斗中触电死亡1人,打死无辜群众3人,打死中国人民解放军战士9人)。","cite_index":null,"published_at":1618588800.0,"site_icon":"https://cdn.deepseek.com/site-icons/hanzhong.gov.cn","site_name":"汉中市人民政府","query_indexes":[0]},"reference":{"id":4,"type":"TOOL_SEARCH"},"stage_id":2},{"id":16,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://zhouenlai.people.cn/BIG5/n1/2019/0725/c409117-31256646-4.html","title":"揭秘\"救火隊長\"周恩來如何在\"文革\"中苦撐危局【4】","snippet":"1967年2月后,中央文革小組實際上取代了中央政治局,更是不可一世,到處煽陰風、點鬼火。這時的王力、關鋒、戚本禹是中央文革的三員“干將”,江青手下名副其實的“車、馬、炮”,成為“文化大革命”中左右橫行的風雲人物。","cite_index":null,"published_at":1563984000.0,"site_icon":"https://cdn.deepseek.com/site-icons/people.cn","site_name":"周恩来纪念网","query_indexes":[0]},"reference":{"id":5,"type":"TOOL_SEARCH"},"stage_id":2},{"id":17,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://www.qyhao123.com/xcx/discuz.php?mod=view&tid=58251&show=author","title":"哪位政治局常委只当了四个月的党内“第四号人物”?","snippet":"“文革”初期,全国6个大区中两个大区的一把手,即华北局第一书记李雪峰、中南局第一书记陶铸,受到重用:李雪峰任北京市委第一书记,陶铸任中宣部长。毛泽东为什么选择他们取代被打倒的彭真...","cite_index":null,"published_at":1378656000.0,"site_icon":"https://cdn.deepseek.com/site-icons/qyhao123.com","site_name":"祁阳生活网","query_indexes":[0]},"reference":{"id":7,"type":"TOOL_SEARCH"},"stage_id":2},{"id":18,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://hbzx.tsxcfw.com/bookshow.asp?id=887815","title":"康生与赵健民冤案_丁龙嘉,听雨_9787010028347_河北知行文化传播有限公司","snippet":"“赵健民特务案”是“文革”期间康生一手制造的一起特大冤案。这起冤案,使身为云南省委负责人的赵人健民被非法关押长达八年,一百三十八万七千余人被审查,十七万五千余作被立案审查,一万七千余人被打死、逼死。 作者耗时十年...","cite_index":null,"published_at":1159632000.0,"site_icon":"https://cdn.deepseek.com/site-icons/tsxcfw.com","site_name":"tsxcfw.com","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":19,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://news.big5.enorth.com.cn/system/2008/10/21/003732191.shtml","title":"史海:康生制造冤案 雲南省委書記被非法關押8年-新聞中心-北方網","snippet":"趙健民冤案,是文革期間康生一手制造的一起特大冤案,使身為雲南省委書記的趙健民被非法關押達8年之久。《康生與『趙健民冤案』》一書是專家治史之作。","cite_index":null,"published_at":1224518400.0,"site_icon":"https://cdn.deepseek.com/site-icons/enorth.com.cn","site_name":"北方网","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":20,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://m.163.com/dy/article/HTT55SI90552PRXR.html?spss=adap_pc","title":"他当过云南省委书记,晚年回忆:因为康生一句话,1万多人被害死","snippet":"在这之后,康生围绕赵健民制造了骇人听闻的“赵健民冤案”,把时任云南省委书记的赵健民诬陷为“叛徒”、“国民党特务”,赵健民也被关押起来,并被非法关押了八年时间。同时,受这起冤案牵连,云南省有一万七千余人被迫害致死。","cite_index":null,"published_at":1676736000.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":21,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://chinafolklore.org/web/index.php?Page=2&NewsID=5478","title":"[英古阿格]一个纳西族老村长的口述实录 · 中国民俗学网-中国民俗学会","snippet":"文革期间,因为有些造反派想打倒我,但又找不到把柄,因为我才当了村长不到三个月,就想定罪为当权派,他们也没有理由。家庭一直是根正苗红,建国之初就是团员了。他们就查到我家二叔头上来...","cite_index":null,"published_at":1249660800.0,"site_icon":"https://cdn.deepseek.com/site-icons/chinafolklore.org","site_name":"中国民俗学网","query_indexes":[0]},"reference":{"id":9,"type":"TOOL_SEARCH"},"stage_id":2},{"id":22,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://old.counsellor.gov.cn/wsxc/2009-10-24/10368.shtml","title":"叶永烈:我写“文革”史","snippet":"史学研究历来重视文献,文献的“文”指档案材料,“献”就是口述史。我认为当代人写当代史的优势就在于对“献”的重视。那些档案,现在还处于保密阶段的,有可能过个几十年、上百年,后人能很方便地查阅。但是当事人越来越少...","cite_index":null,"published_at":1256313600.0,"site_icon":"https://cdn.deepseek.com/site-icons/counsellor.gov.cn","site_name":"国务院参事室","query_indexes":[0]},"reference":{"id":9,"type":"TOOL_SEARCH"},"stage_id":2},{"id":23,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://news.sina.com.cn/c/sd/2009-07-31/131018338282.shtml","title":"亲历者口述“四人帮”兴亡史_新闻中心_新浪网","snippet":"中国历来有官修历史和民间著史的传统,一段由作家采写的10年“文革”史,历经20多年的等待,终于问世。 建国60周年,10年是“文革”,这段历史无法跨越。除了叶永烈的《“四人帮”兴亡》...","cite_index":null,"published_at":1248969600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sina.com.cn","site_name":"新浪网","query_indexes":[0]},"reference":{"id":9,"type":"TOOL_SEARCH"},"stage_id":2},{"id":24,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://bianke.cnki.net/Web/SearchArticle?kw=%E8%AE%B8%E5%B9%BF%E5%B9%B3&field=0&page=9","title":"母亲、女校长、问罪学——关于杨荫榆事件的再思考","snippet":"许广平在“文革”中未曾点成仿吾的名"文革"初,山东大学全校人员分成两派,对学校党委和党委书记、校长成仿吾的功过问题展开辩论。成仿吾开始"靠边站"...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"知网百科","query_indexes":[0]},"reference":{"id":10,"type":"TOOL_SEARCH"},"stage_id":2},{"id":25,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://wap.cnki.net/touch/web/Journal/Article/BNCH200103007.html","title":"师门忆语(三)-百年潮2001年03期-手机知网","snippet":"十一、“文革”风暴中议论陈伯达“文革”祸起,《红旗》杂志的三位副总编辑邓(力群)、胡(绳)、范[若愚],几乎一夜之间就从领导高位上跌落下来,被作为“走资派”打倒。胡绳还因为参加“二月提纲”而罪加一等...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"CNKI","query_indexes":[0]},"reference":{"id":10,"type":"TOOL_SEARCH"},"stage_id":2},{"id":26,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://mall.cnki.net/magazine/Article/DDSJ201204035.htm","title":"文革时期的海外中共研究","snippet":"文革时期是海外中共研究的兴盛时期。随着研究资料状况的改善,海外学者这一时期的研究成果体现了中共研究范围和研究深度的拓展。尤其重要的是,这一时期海外中共研究的进展,代表了研究范式的转变:原先主导海外中共研究领域的\"极权主义\"模式分崩离析,以\"派系... (共5页)","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/cnki.net","site_name":"知网阅读","query_indexes":[0]},"reference":{"id":10,"type":"TOOL_SEARCH"},"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-3/status","o":"SET","v":"FINISHED"} + +data: {"p":"response/fragments/-2/status","v":"FINISHED"} + +data: {"p":"response/fragments/-1/status","v":"FINISHED"} + +data: {"p":"response/fragments/-10/status","v":"FINISHED"} + +data: {"p":"response/fragments/-9/status","v":"FINISHED"} + +data: {"p":"response/fragments/-7/status","v":"FINISHED"} + +data: {"p":"response/fragments/-5/status","v":"FINISHED"} + +data: {"p":"response/fragments/-4/status","v":"FINISHED"} + +data: {"p":"response/fragments/-15/status","v":"FINISHED"} + +data: {"p":"response/fragments/-14/status","v":"FINISHED"} + +data: {"p":"response/fragments/-13/status","v":"FINISHED"} + +data: {"p":"response/fragments/-12/status","v":"FINISHED"} + +data: {"p":"response/fragments/-8/status","v":"FINISHED"} + +data: {"p":"response/fragments/-6/status","v":"FINISHED"} + +data: {"p":"response/fragments/-11/status","v":"FINISHED"} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":27,"type":"THINK","content":"搜索","elapsed_secs":null,"references":[],"stage_id":3}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"结果显示"} + +data: {"v":"了一些"} + +data: {"v":"相关"} + +data: {"v":"页面"} + +data: {"v":"。"} + +data: {"v":"为了"} + +data: {"v":"更"} + +data: {"v":"全面地"} + +data: {"v":"覆盖"} + +data: {"v":"用户"} + +data: {"v":"需求"} + +data: {"v":","} + +data: {"v":"我们需要"} + +data: {"v":"同时"} + +data: {"v":"进行"} + +data: {"v":"多项"} + +data: {"v":"搜索"} + +data: {"v":","} + +data: {"v":"以"} + +data: {"v":"获取"} + +data: {"v":"更多"} + +data: {"v":"关于"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"、"} + +data: {"v":"具体"} + +data: {"v":"事件"} + +data: {"v":"、"} + +data: {"v":"地方"} + +data: {"v":"案例"} + +data: {"v":"、"} + +data: {"v":"高层"} + +data: {"v":"斗争"} + +data: {"v":"以及"} + +data: {"v":"不同"} + +data: {"v":"研究"} + +data: {"v":"视角"} + +data: {"v":"的信息"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":1.177853049} + +data: {"p":"response/has_pending_fragment","v":true} + +: + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":28,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"文革 派系 斗争 群众组织 武斗 案例 研究"}],"results":[],"stage_id":3},{"id":29,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"王力 八七讲话 外交部 夺权 派系"}],"results":[],"stage_id":3},{"id":30,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"北京 红卫兵 派系 斗争 联动 天派 地派"}],"results":[],"stage_id":3},{"id":31,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"上海 文革 派系 斗争 工总司 联司"}],"results":[],"stage_id":3},{"id":32,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 文革 派系 斗争 红旗派 东风派"}],"results":[],"stage_id":3},{"id":33,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"湖南 文革 派系 斗争 湘江风雷 红一线"}],"results":[],"stage_id":3},{"id":34,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广西 文革 派系 斗争 联指 四二二 派"}],"results":[],"stage_id":3}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-4/results","o":"SET","v":[{"url":"https://m.163.com/dy/article/HL9HAKRH0552PRXR.html?spss=adap_pc","title":"他与王洪文一起创立了“工总司”,却被王洪文架空,后来两度入狱","snippet":"于是“工总司”就在王洪文以及潘国平等人的带领下前往上海市委,11月10日凌晨又乘坐火车前往安亭车站,制造了安亭事件。潘国平也是这起事件的带头人 ... 潘国平是“工总司”的早期领导人,与王洪文平起平坐。潘国平有一定的文化基础,为人比较外向...","cite_index":null,"published_at":1667491200.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]}]} + +data: {"p":"response/fragments/-4/status","v":"FINISHED"} + +data: {"p":"response/fragments/-5/results","v":[{"url":"https://baike.baidu.com/item/%E5%A4%A9%E6%B4%BE/9569880","title":"天派_百度百科","snippet":"天派,全称红卫兵天派,是文化大革命期间以北京航空学院“红旗”组织为核心力量的政治团体,主要活跃于北京地区。其名称源于北航的航空专业属性,“航”与“天”相关联,故简称“天派” [1。","cite_index":null,"published_at":1750867200.0,"site_icon":"https://cdn.deepseek.com/site-icons/baidu.com","site_name":"百度百科","query_indexes":[0]},{"url":"http://www.chinazhiqing.com/forum.php?mod=viewthread&action=printable&tid=102766","title":"中国知青网-中国知青网络家园","snippet":"红卫兵运动,发起者是首都各大专院校的大学生,首都红卫兵的“天派”是北航,“地派”是北京地质学院,窜遍全国掀起造反浪潮最著名的所谓首都红卫兵第三司令部,也基本以大学生为主!中学虽然有很多红卫兵组织...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/chinazhiqing.com","site_name":"中国知青网","query_indexes":[0]},{"url":"https://upimg.baike.haosou.com/doc/529356-560419.html","title":"天派 免费编辑 添加义项名","snippet":"\"天派\",全名红卫兵天派,指的是文革期间由北京航空学院\"红旗\"为主要力量的组织,北航的\"航\"即航空,是和天有关的,所以称为\"天派\"。","cite_index":null,"published_at":1535212800.0,"site_icon":"https://cdn.deepseek.com/site-icons/haosou.com","site_name":"haosou.com","query_indexes":[0]},{"url":"https://baike.baidu.com/searchword/?word=%E9%9F%A9%E7%88%B1%E6%99%B6&pic=1&sug=1&enc=utf8","title":"","snippet":"“天派”、“地派”的“领头羊”北大“新北大公社”、清华“井冈山”、北航“红旗”、地质“东方红”、师大“井冈山”等都是“文革”初期名震一方的“左派”组织,他们的头头聂元梓、蒯大富、 _韩爱晶_ 、谭厚兰、王大宾号称北京造反派红卫兵的“五大领袖”。中央文革小组则对两派采取又拉又捧...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/baidu.com","site_name":"百度百科","query_indexes":[0]}]} + +data: {"p":"response/fragments/-5/status","v":"FINISHED"} + +data: {"p":"response/fragments/-1/results","v":[{"url":"http://lib.gxdfz.org.cn/view2022-c32-480.html","title":"480 第五节 派性斗争与冤假错案","snippet":"1967年5月6日,县内群众组织开始分化为“联指”(无产阶级革命派联合指挥部)和“四 ·二二”(四·二二火线指挥部,后改为革命造反大军),两大派展开激烈的派性斗争,他们 互相争论、指责斗殴,你叫我“保皇派”,我叫你“匪徒派”。当年9月1日高岭区两派发生 冲突...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/gxdfz.org.cn","site_name":"Gxdfz","query_indexes":[0]},{"url":"http://lib.gxdfz.org.cn/view-c37-707.html","title":"707 第四节 派性斗争","snippet":"1967年秋冬,广西四二二钦州指挥郎(简称四·二二,又称造反派)、钦州县无产阶级革 命联合指挥部(简称联指)两大派群众组织矛盾越来越尖锐,相继出现互相抓人、抢枪事件, 大规模的示威游行不断发生。11月1日...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/gxdfz.org.cn","site_name":"Gxdfz","query_indexes":[0]},{"url":"http://www.gxdfz.org.cn/flbg/lsrw/202602/t20260224_67312.html","title":"杨明--广西地情网","snippet":"21日,“联指”胡北荣被冷枪打死。武斗便迅速推向高潮。22晚,杨明与谭朝东亲自指挥武装民兵用冲锋枪袭击“4·22”的据点——南江旅社。随后...","cite_index":null,"published_at":1771862400.0,"site_icon":"https://cdn.deepseek.com/site-icons/gxdfz.org.cn","site_name":"广西数字方志馆","query_indexes":[0]},{"url":"https://www.gxdag.org.cn/show/142/3576","title":"广西档案信息网 - 看旧图说南宁(展览馆、解放路、广西大学)(图)","snippet":"三”布告通告后被6912部队和“联指”组织围歼。 解放路,以前叫做德邻路。文化大革命时期被“4。22”造反派组织称之为“解放区”,“4。22”的很多主要组织都盘踞在这里。有“青年近卫军”...","cite_index":null,"published_at":1329753600.0,"site_icon":"https://cdn.deepseek.com/site-icons/gxdag.org.cn","site_name":"广西壮族自治区档案馆","query_indexes":[0]},{"url":"http://bbs.rauz.net.cn/archiver/tid-5626.html","title":"[原创]一段往事 两个冤魂[僚人家园]——壮族、布依族、岱侬族共同论坛★Riuzmingz 僚人人物","snippet":"

文革开始,两人被定为历史反革命分子。1968年春的某一天被红卫兵揪斗,因一人倾向“联指”,另一人偏向“4.22”(联指:广西革命造反派联合指挥部,矛头指向武振南书记;“4.22”...","cite_index":null,"published_at":1091980800.0,"site_icon":"https://cdn.deepseek.com/site-icons/rauz.net.cn","site_name":"僚人家园","query_indexes":[0]},{"url":"https://www.semanticscholar.org/author/%E6%9D%8E%E6%9E%9C%E6%B2%B3/2033988088","title":"李果河 | Semantic Scholar","snippet":"“文革”时,广西红卫兵和各地群众因为“支持韦国清”还是“打倒韦国清”,出现分歧,分裂成势不两立的两大派。一派叫广西“无产阶级革命派联合指挥部”(简称广西“联指”),另一派叫“广西革命造反派4·22指挥部”(简称广西“4·22”)。","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/semanticscholar.org","site_name":"Semantic Scholar","query_indexes":[0]},{"url":"http://bbs.rauz.net.cn/forum.php?mod=viewthread&tid=5626&page=1&authorid=1463","title":"[原创]一段往事 两个冤魂","snippet":"1968年春的某一天被红卫兵揪斗,因一人倾向“联指”,另一人偏向“4.22”(联指:广西革命造反派联合指挥部,矛头指向武振南书记;“4.22”...","cite_index":null,"published_at":1091980800.0,"site_icon":"https://cdn.deepseek.com/site-icons/rauz.net.cn","site_name":"僚人家园","query_indexes":[0]},{"url":"https://kiss.kstudy.com/Detail/Ar?key=3975781","title":"周邊에서 본 文化大革命 -廣西 派閥鬪爭을 중심으로- - 중국사연구 - 중국사학회 - KISS","snippet":"最終\"4·22\"成爲主要攻擊目標的廣西文革的悲劇也許是按照預告的程序進行的。在北京進行的接見政治中,慫恿協商及矛盾的權宜之計也許是在戰爭和革命的矛盾中不可避免的。但是...","cite_index":null,"published_at":1664553600.0,"site_icon":"https://cdn.deepseek.com/site-icons/kstudy.com","site_name":"학술논문검색사이트 KISS","query_indexes":[0]}]} + +data: {"p":"response/fragments/-1/status","v":"FINISHED"} + +data: {"p":"response/fragments/-7/results","v":[{"url":"http://www.zzdsw.com/yjcg/ztyj/201603/t20160331_1521613.html","title":"专题研究- 枣庄党史史志网","snippet":"发生在1967年7月25日至26日,是文化大革命中枣庄地区两派不同观点群众,发生的较大规模的武斗流血事件,也是枣庄地区两派群众组织派性激化的表现。","cite_index":null,"published_at":1459353600.0,"site_icon":"https://cdn.deepseek.com/site-icons/zzdsw.com","site_name":"zzdsw.com","query_indexes":[0]},{"url":"http://zx.hanzhong.gov.cn/hzzxwz/thhm/201605/t20160510_330408.shtml","title":"“文革”期间勉县武斗和“六·二”事件","snippet":"比较大的武斗事件21起,死亡85人(其中打死47人,武器走火死亡12人,武斗汽车肇事死亡13人,武斗中触电死亡1人,打死无辜群众3人...","cite_index":null,"published_at":1618588800.0,"site_icon":"https://cdn.deepseek.com/site-icons/hanzhong.gov.cn","site_name":"汉中市人民政府","query_indexes":[0]},{"url":"https://www.hinews.cn:443/news/system/2009/10/16/010588314_01.shtml","title":"“文革”进入狂热时期 “一月风暴”影响海南","snippet":"派性的斗争使得局势变得错综复杂,越来越多的群众参与进来,形成了群众组织派性斗争。由于斗争激烈,扰乱了夺权运动的大方向,并给生产带来了严重影响。海南农垦也被牵扯进来了。","cite_index":null,"published_at":1255622400.0,"site_icon":"https://cdn.deepseek.com/site-icons/hinews.cn","site_name":"南海网","query_indexes":[0]},{"url":"https://www.songjiang.gov.cn/sjsz/sjds/zggcdsjdfsz/files/basic-html/page202.html","title":"Page 202 - 中国共产党松江历史图志","snippet":"革委会成立不久,造反组织在对待 县革委会的态度上,分裂成“炮轰” 和“支持”两大派(即“轰派”和 “支派”)。于是两派斗争不断, 且愈演愈烈,最后导致 1967 年发","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/songjiang.gov.cn","site_name":"上海市松江区人民政府","query_indexes":[0]}]} + +data: {"p":"response/fragments/-7/status","v":"FINISHED"} + +data: {"p":"response/fragments/-6/results","v":[{"url":"https://www.163.com/dy/article/ILUUJUG00552PRXR.html","title":"陈毅受到批斗,她被派去“摸情况”,得到指示:运去英雄不自由","snippet":"王力的这次讲话也被称为“八七讲话”,在讲话中,王力对造反派讲,批斗陈毅的大方向是对的,同时,他还表示要改变外交部的现有制度,并声称谁都可以当外交部部长,鼓励他们批斗陈毅。当时陈毅担任外交部部长...","cite_index":null,"published_at":1702483200.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},{"url":"http://epaper.voc.com.cn/wczm/html/2012-08/30/content_552828.htm?div=-1","title":"王季范解诗精准判时势-----文萃报数字报刊平台","snippet":"王力在讲话中,称外交部“运动阻力太大”,鼓吹要夺外交部的权,矛头直指外交部长陈毅。 王力的讲话发表后,我们外交部的“保陈派”们要弄清毛泽东对王力讲话的态度,便派出王海容去毛泽东那里“摸情况”。","cite_index":null,"published_at":1346256000.0,"site_icon":"https://cdn.deepseek.com/site-icons/voc.com.cn","site_name":"三湘都市报","query_indexes":[0]},{"url":"http://zhouenlai.people.cn/BIG5/n1/2021/0107/c409117-31992422-4.html","title":"揭秘\"救火隊長\"周恩來如何在\"文革\"中苦撐危局【4】","snippet":"造反派一陣“訴苦”后,王力開講了:“外交部運動阻力大?外交唬人嘛!別人不能干,了不起?這麼神秘,隻有少數專家才能干,你這個外交就這麼難?紅衛兵就不能干外交?","cite_index":null,"published_at":1609948800.0,"site_icon":"https://cdn.deepseek.com/site-icons/people.cn","site_name":"周恩来纪念网","query_indexes":[0]},{"url":"http://m.people.cn/n4/0/2017/0724/c677-9387667-2_2.html","title":"67年周恩来一针见血斥责何人的行径“是剜心战术”","snippet":"8月7日,谢富治与王力两人各发表了一次著名的造反讲话。王力在接见外交系统造反派代表时,煽动要向外交部夺权,打倒陈毅,引起了外交部的大动乱,酿成了火烧英国驻华代办处的恶劣外交事件。这个讲话被称为“王八七讲话”。","cite_index":null,"published_at":1500825600.0,"site_icon":"https://cdn.deepseek.com/site-icons/people.cn","site_name":"人民网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-6/status","v":"FINISHED"} + +data: {"p":"response/fragments/-2/results","v":[{"url":"http://copyright.hktdc.com/tc/book-info.aspx?book_id=823d7c975971437786dc61e0f69bcdf8","title":"版權交易專區","snippet":"本書是湖南長沙一名工人造反派有關他在文革期間活動的回憶錄。書內釐清了一些史實和理論上的疑難問題,如所謂湘江風雷搶武器問題以及這一湖南最大造反派組織是如何興起的、湖南文革中武鬥經過以及一些目前忽略的造反派組織等等。這些資料...","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/hktdc.com","site_name":"HKTDC.com","query_indexes":[0]},{"url":"https://www.4305.cn/w/l8z6r48080t","title":"血色记忆:1967年武冈的\"武斗\"","snippet":"武冈大武斗的起因是二派大组织:武工联,湘武工联,这是文化大革命”出现的群众组织,对于谁是“造反派”,谁是“保守派”争论不休。各造反派组织之间从维护他们各自的利益出发...","cite_index":null,"published_at":1593964800.0,"site_icon":"https://cdn.deepseek.com/site-icons/4305.cn","site_name":"武冈人网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-2/status","v":"FINISHED"} + +data: {"p":"response/fragments/-3/results","v":[{"url":"https://www.bilibili.com/video/BV1ynNGe1EAo/?spm_id_from=333.1387.homepage.video_card.click","title":"“羊城革命浪潮起,封《红卫报》遭市民抵制,陶铸倒台后,以中大为核心的造反派夺得省市大权,但与地总,红总爆发冲突”——【广州文革地方史】(1)_哔哩哔哩_bilibili","snippet":"起,封《红卫报》遭市民抵制,陶铸倒台后,以中大为核心的造反派夺得省市大权,但与地总,红总爆发冲突”——【广州文革地方史】(1)_哔哩哔哩_bilibili | # “羊城革命浪潮起...","cite_index":null,"published_at":1738944000.0,"site_icon":"https://cdn.deepseek.com/site-icons/bilibili.com","site_name":"B站","query_indexes":[0]},{"url":"https://baijiahao.baidu.com/s?id=1743184378359987823","title":"梁锦棠:曾任广东革委会副主任,1977年被审查,后来被开除党籍","snippet":"并且成为了以工人群体为主的“红总”派的头头。“红总”派是广东的造反派之一,主要头目都是工厂的工人,这个组织属于“总派”,也被称为“东风派”,他们与广东的另一派造反组织“红旗派”是死对头,双方爆发过大规模“武斗”,造成了非常恶劣的影响。","cite_index":null,"published_at":1662393600.0,"site_icon":"https://cdn.deepseek.com/site-icons/baidu.com","site_name":"百家号","query_indexes":[0]},{"url":"http://bbs.hasea.com/thread-277771-2-1.html","title":"文革铁路专题章-火车头篇","snippet":"1967年3月25日,广州铁路分局革命委员会在广州地区率先成立,称之\"广州响起了第一声春雷\",属于\"东风\"派系.\"广铁总司\"属\"红旗\"派系(简称旗派).因话题与贴子主题不切,因此不便在此作更多的探讨啦~","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/hasea.com","site_name":"海子铁路网","query_indexes":[0]},{"url":"http://opinion.haiwainet.cn/n/2014/0429/c345416-20582980-2.html","title":"港片中的内地人:从人蛇大圈仔到优才蝗虫 【2】","snippet":"《省港旗兵》的大陆劫匪头目“东哥”被设定为文革时在广州以武斗闻名的“旗派”红卫兵 大圈仔(代表电影《省港旗兵》系列)","cite_index":null,"published_at":1398700800.0,"site_icon":"https://cdn.deepseek.com/site-icons/haiwainet.cn","site_name":"海外网评","query_indexes":[0]},{"url":"https://m.sohu.com/n/472559456/","title":"820武斗纪事","snippet":"他们说东风派把旗派的人抓住后,“当作活靶,一批批进行枪杀”。广医红旗八二○大血案调查组声称,旗派在这次武斗中,伤亡惨重,“公路两旁遍是尸体”,光是在医院抢救无效死亡的就有十多人,受伤住院的50多人(见《广医红旗》1967年8月25日)。但有的文章更惊人地声称...","cite_index":null,"published_at":1478534400.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"手机搜狐网","query_indexes":[0]},{"url":"https://weibo.com/ttarticle/p/show?id=2309405005800564457890","title":"【回忆录】一九六八种种烦忧","snippet":"8月,广州两派组织各占据广州部分高楼做武斗据点,东风派占据长堤省总工会等,红旗派占据长堤爱群大厦等。暨大318小分队属旗派,就按上面指令入驻爱群大厦。省总在沿江西路149号...","cite_index":null,"published_at":1708876800.0,"site_icon":"https://cdn.deepseek.com/site-icons/weibo.com","site_name":"微博","query_indexes":[0]},{"url":"http://www.gzyzxyh.com/thread-14455-1-1.html","title":"广州日报事件 (下) [复制链接]","snippet":"省军管会阵脚已动,不得不节节退让。当天晚上,由驻中大工作组宣布中大红旗八三一是左派组织;八一战斗兵团被拘捕的九名成员,在此之前也获得释放。经过这么一番反复...","cite_index":null,"published_at":1389369600.0,"site_icon":"https://cdn.deepseek.com/site-icons/gzyzxyh.com","site_name":"gzyzxyh.com","query_indexes":[0]},{"url":"http://opinion.haiwainet.cn/BIG5/n/2014/0429/c345416-20582980-2.html","title":"港片中的內地人:從人蛇大圈仔到優才蝗虫 【2】","snippet":"《省港旗兵》的大陸劫匪頭目“東哥”被設定為文革時在廣州以武斗聞名的“旗派”紅衛兵 大圈仔(代表電影《省港旗兵》系列)","cite_index":null,"published_at":1398700800.0,"site_icon":"https://cdn.deepseek.com/site-icons/haiwainet.cn","site_name":"海外网评","query_indexes":[0]},{"url":"http://www.qec.com.cn/bD2021/02/02/2552.shtml","title":"周继能:迟到的忏悔——我对不起老师们","snippet":"“文革”开始时我就读于广州市第17中66届高三(1)班,与同学们一样,响应毛主席号召,积极参加“文革”,参加了学校的“战斗兵团”,与广州市的“毛泽东主义红卫兵”属同一派,与广州市另一红卫兵组织“红旗”严重对立。1968年7月...","cite_index":null,"published_at":1612195200.0,"site_icon":"https://cdn.deepseek.com/site-icons/qec.com.cn","site_name":"Qec","query_indexes":[0]}]} + +data: {"p":"response/fragments/-3/status","v":"FINISHED"} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":35,"type":"THINK","content":"搜索结果","elapsed_secs":null,"references":[],"stage_id":4}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"提供了"} + +data: {"v":"大量"} + +data: {"v":"关于"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争的"} + +data: {"v":"案例"} + +data: {"v":"。"} + +data: {"v":"我将"} + +data: {"v":"基于"} + +data: {"v":"这些"} + +data: {"v":"资料"} + +data: {"v":","} + +data: {"v":"组织"} + +data: {"v":"回答"} + +data: {"v":","} + +data: {"v":"涵盖"} + +data: {"v":"基层"} + +data: {"v":"群众"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"、"} + +data: {"v":"高层"} + +data: {"v":"权力"} + +data: {"v":"博弈"} + +data: {"v":"、"} + +data: {"v":"历史"} + +data: {"v":"人物的"} + +data: {"v":"复杂性"} + +data: {"v":"以及"} + +data: {"v":"获取"} + +data: {"v":"更多"} + +data: {"v":"信息的"} + +data: {"v":"建议"} + +data: {"v":"。"} + +data: {"v":"回答"} + +data: {"v":"将"} + +data: {"v":"强调"} + +data: {"v":"这些"} + +data: {"v":"事例"} + +data: {"v":"的"} + +data: {"v":"细节"} + +data: {"v":"性和"} + +data: {"v":"复杂性"} + +data: {"v":","} + +data: {"v":"并"} + +data: {"v":"避免"} + +data: {"v":"单一"} + +data: {"v":"评价"} + +data: {"v":"立场"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":1.260543306} + +data: {"p":"response/fragments","o":"APPEND","v":[{"id":36,"type":"RESPONSE","content":"历史","references":[],"stage_id":4}]} + +data: {"p":"response/fragments/-1/content","v":"老师"} + +data: {"v":"您好"} + +data: {"v":"。"} + +data: {"v":"要在"} + +data: {"v":"历史"} + +data: {"v":"教材"} + +data: {"v":"的"} + +data: {"v":"概括"} + +data: {"v":"性"} + +data: {"v":"叙述"} + +data: {"v":"之外"} + +data: {"v":","} + +data: {"v":"捕捉"} + +data: {"v":"到"} + +data: {"v":"文革"} + +data: {"v":"期间"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争的"} + +data: {"v":"细节"} + +data: {"v":"与"} + +data: {"v":"复杂性"} + +data: {"v":","} + +data: {"v":"我们可以"} + +data: {"v":"从"} + +data: {"v":"一些"} + +data: {"v":"具体"} + +data: {"v":"的历史"} + +data: {"v":"切"} + +data: {"v":"面"} + +data: {"v":"入手"} + +data: {"v":"。"} + +data: {"v":"这些"} + +data: {"v":"案例"} + +data: {"v":"揭示了"} + +data: {"v":"在"} + +data: {"v":"宏大"} + +data: {"v":"叙事"} + +data: {"v":"之下"} + +data: {"v":","} + +data: {"v":"个体"} + +data: {"v":"与"} + +data: {"v":"群体的"} + +data: {"v":"矛盾"} + +data: {"v":"、"} + +data: {"v":"挣扎"} + +data: {"v":"与"} + +data: {"v":"博弈"} + +data: {"v":"。\n\n"} + +data: {"v":"###"} + +data: {"v":" 🎭"} + +data: {"v":" "} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"众生"} + +data: {"v":"相"} + +data: {"v":":"} + +data: {"v":"群众"} + +data: {"v":"组织的"} + +data: {"v":"分化"} + +data: {"v":"与"} + +data: {"v":"斗争"} + +data: {"v":"\n"} + +data: {"v":"随着"} + +data: {"v":"运动的"} + +data: {"v":"深入"} + +data: {"v":","} + +data: {"v":"原本"} + +data: {"v":"统一的"} + +data: {"v":"“"} + +data: {"v":"革命"} + +data: {"v":"群众"} + +data: {"v":"”"} + +data: {"v":"迅速"} + +data: {"v":"分化"} + +data: {"v":"。"} + +data: {"v":"草"} + +data: {"v":"根"} + +data: {"v":"层面的"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"往往"} + +data: {"v":"比"} + +data: {"v":"高层"} + +data: {"v":"博弈"} + +data: {"v":"更加"} + +data: {"v":"残酷"} + +data: {"v":","} + +data: {"v":"其"} + +data: {"v":"复杂性"} + +data: {"v":"在于"} + +data: {"v":","} + +data: {"v":"斗争的"} + +data: {"v":"双方"} + +data: {"v":"都"} + +data: {"v":"坚信"} + +data: {"v":"自己"} + +data: {"v":"代表了"} + +data: {"v":"真正的"} + +data: {"v":"“"} + +data: {"v":"革命"} + +data: {"v":"方向"} + +data: {"v":"”"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:0]"},{"p":"references","o":"SET","v":[{"id":12,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"红"} + +data: {"v":"卫"} + +data: {"v":"兵"} + +data: {"v":"“"} + +data: {"v":"天"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"与"} + +data: {"v":"“"} + +data: {"v":"地"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"北京"} + +data: {"v":"的红"} + +data: {"v":"卫"} + +data: {"v":"兵"} + +data: {"v":"因"} + +data: {"v":"所属"} + +data: {"v":"大学"} + +data: {"v":"不同"} + +data: {"v":"分"} + +data: {"v":"化为"} + +data: {"v":"“"} + +data: {"v":"天"} + +data: {"v":"派"} + +data: {"v":"”("} + +data: {"v":"北"} + +data: {"v":"航"} + +data: {"v":"“"} + +data: {"v":"红旗"} + +data: {"v":"”)"} + +data: {"v":"和"} + +data: {"v":"“"} + +data: {"v":"地"} + +data: {"v":"派"} + +data: {"v":"”("} + +data: {"v":"地质"} + +data: {"v":"“"} + +data: {"v":"东方"} + +data: {"v":"红"} + +data: {"v":"”)"} + +data: {"v":"等"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":","} + +data: {"v":"并在"} + +data: {"v":"“"} + +data: {"v":"中央"} + +data: {"v":"文革"} + +data: {"v":"”"} + +data: {"v":"的"} + +data: {"v":"挑"} + +data: {"v":"动"} + +data: {"v":"下"} + +data: {"v":"矛盾"} + +data: {"v":"激"} + +data: {"v":"化"} + +data: {"v":","} + +data: {"v":"各"} + +data: {"v":"派的"} + +data: {"v":"“"} + +data: {"v":"五大"} + +data: {"v":"领袖"} + +data: {"v":"”"} + +data: {"v":"在当时"} + +data: {"v":"极具"} + +data: {"v":"影响力"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:1]"},{"p":"references","v":[{"id":30,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"广州"} + +data: {"v":"“"} + +data: {"v":"东风"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"与"} + +data: {"v":"“"} + +data: {"v":"红旗"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"广州"} + +data: {"v":"以"} + +data: {"v":"“"} + +data: {"v":"红"} + +data: {"v":"总"} + +data: {"v":"”"} + +data: {"v":"为代表的"} + +data: {"v":"“"} + +data: {"v":"东风"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"和"} + +data: {"v":"以"} + +data: {"v":"“"} + +data: {"v":"广"} + +data: {"v":"铁"} + +data: {"v":"总"} + +data: {"v":"司"} + +data: {"v":"”"} + +data: {"v":"为代表的"} + +data: {"v":"“"} + +data: {"v":"红旗"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"势"} + +data: {"v":"同"} + +data: {"v":"水火"} + +data: {"v":"。"} + +data: {"v":"196"} + +data: {"v":"7"} + +data: {"v":"年"} + +data: {"v":"8"} + +data: {"v":"月"} + +data: {"v":"20"} + +data: {"v":"日"} + +data: {"v":"爆"} + +data: {"v":"发的"} + +data: {"v":"“"} + +data: {"v":"820"} + +data: {"v":"武"} + +data: {"v":"斗"} + +data: {"v":"”"} + +data: {"v":"中"} + +data: {"v":","} + +data: {"v":"双方"} + +data: {"v":"在"} + +data: {"v":"市区"} + +data: {"v":"利用"} + +data: {"v":"高楼"} + +data: {"v":"作为"} + +data: {"v":"据点"} + +data: {"v":"枪"} + +data: {"v":"战"} + +data: {"v":","} + +data: {"v":"造成"} + +data: {"v":"大量"} + +data: {"v":"伤亡"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:2]"},{"p":"references","v":[{"id":32,"type":"TOOL_SEARCH"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:3]"},{"p":"references","v":[{"id":32,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"上海"} + +data: {"v":"“"} + +data: {"v":"工"} + +data: {"v":"总"} + +data: {"v":"司"} + +data: {"v":"”"} + +data: {"v":"的权力"} + +data: {"v":"之争"} + +data: {"v":"**"} + +data: {"v":":“"} + +data: {"v":"工"} + +data: {"v":"总"} + +data: {"v":"司"} + +data: {"v":"”"} + +data: {"v":"内部"} + +data: {"v":"同样"} + +data: {"v":"存在"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"。"} + +data: {"v":"早期"} + +data: {"v":"领导人"} + +data: {"v":"潘"} + +data: {"v":"国"} + +data: {"v":"平"} + +data: {"v":"与"} + +data: {"v":"后来"} + +data: {"v":"成为"} + +data: {"v":"“"} + +data: {"v":"四人"} + +data: {"v":"帮"} + +data: {"v":"”"} + +data: {"v":"骨干"} + +data: {"v":"的王"} + +data: {"v":"洪"} + +data: {"v":"文"} + +data: {"v":"之间"} + +data: {"v":","} + +data: {"v":"为"} + +data: {"v":"争夺"} + +data: {"v":"组织领导"} + +data: {"v":"权"} + +data: {"v":"存在"} + +data: {"v":"复杂"} + +data: {"v":"博弈"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:4]"},{"p":"references","v":[{"id":31,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"广西"} + +data: {"v":"“"} + +data: {"v":"联"} + +data: {"v":"指"} + +data: {"v":"”"} + +data: {"v":"与"} + +data: {"v":"“"} + +data: {"v":"4"} + +data: {"v":"·"} + +data: {"v":"22"} + +data: {"v":"”"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"广西"} + +data: {"v":"群众"} + +data: {"v":"组织"} + +data: {"v":"围绕"} + +data: {"v":"“"} + +data: {"v":"支持"} + +data: {"v":"韦"} + +data: {"v":"国"} + +data: {"v":"清"} + +data: {"v":"”"} + +data: {"v":"还是"} + +data: {"v":"“"} + +data: {"v":"打倒"} + +data: {"v":"韦"} + +data: {"v":"国"} + +data: {"v":"清"} + +data: {"v":"”"} + +data: {"v":"分裂"} + +data: {"v":"为"} + +data: {"v":"“"} + +data: {"v":"联"} + +data: {"v":"指"} + +data: {"v":"”"} + +data: {"v":"和"} + +data: {"v":"“"} + +data: {"v":"4"} + +data: {"v":"·"} + +data: {"v":"22"} + +data: {"v":"”"} + +data: {"v":"两大"} + +data: {"v":"派"} + +data: {"v":","} + +data: {"v":"两"} + +data: {"v":"派"} + +data: {"v":"冲突"} + +data: {"v":"中"} + +data: {"v":"甚至"} + +data: {"v":"出现了"} + +data: {"v":"武装"} + +data: {"v":"民兵"} + +data: {"v":"直接"} + +data: {"v":"袭击"} + +data: {"v":"另一"} + +data: {"v":"派"} + +data: {"v":"据点"} + +data: {"v":"的情况"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:5]"},{"p":"references","v":[{"id":34,"type":"TOOL_SEARCH"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:6]"},{"p":"references","v":[{"id":34,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"各地"} + +data: {"v":"武"} + +data: {"v":"斗"} + +data: {"v":"的"} + +data: {"v":"惨"} + +data: {"v":"烈"} + +data: {"v":"代价"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"常"} + +data: {"v":"升级"} + +data: {"v":"为"} + +data: {"v":"武"} + +data: {"v":"斗"} + +data: {"v":"。"} + +data: {"v":"例如"} + +data: {"v":"在"} + +data: {"v":"陕西"} + +data: {"v":"勉"} + +data: {"v":"县"} + +data: {"v":","} + +data: {"v":"从"} + +data: {"v":"196"} + +data: {"v":"7"} + +data: {"v":"年"} + +data: {"v":"9"} + +data: {"v":"月至"} + +data: {"v":"196"} + +data: {"v":"8"} + +data: {"v":"年"} + +data: {"v":"9"} + +data: {"v":"月"} + +data: {"v":"的一年"} + +data: {"v":"中"} + +data: {"v":","} + +data: {"v":"武"} + +data: {"v":"斗"} + +data: {"v":"共"} + +data: {"v":"导致"} + +data: {"v":"85"} + +data: {"v":"人死亡"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:7]"},{"p":"references","v":[{"id":15,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":";"} + +data: {"v":"河北"} + +data: {"v":"武"} + +data: {"v":"安"} + +data: {"v":"的两"} + +data: {"v":"派"} + +data: {"v":"对立"} + +data: {"v":"导致了"} + +data: {"v":"抢"} + +data: {"v":"枪"} + +data: {"v":"、"} + +data: {"v":"武"} + +data: {"v":"斗"} + +data: {"v":","} + +data: {"v":"致"} + +data: {"v":"近"} + +data: {"v":"200"} + +data: {"v":"人死亡"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:8]"},{"p":"references","v":[{"id":14,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":";"} + +data: {"v":"山东"} + +data: {"v":"枣"} + +data: {"v":"庄"} + +data: {"v":"的"} + +data: {"v":"“"} + +data: {"v":"七"} + +data: {"v":"二"} + +data: {"v":"五"} + +data: {"v":"”"} + +data: {"v":"事件"} + +data: {"v":"更是"} + +data: {"v":"有"} + +data: {"v":"400"} + +data: {"v":"0"} + +data: {"v":"余名"} + +data: {"v":"武装"} + +data: {"v":"农民"} + +data: {"v":"参与"} + +data: {"v":","} + +data: {"v":"造成"} + +data: {"v":"26"} + +data: {"v":"人"} + +data: {"v":"当场"} + +data: {"v":"被打"} + +data: {"v":"死"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:9]"},{"p":"references","v":[{"id":13,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"###"} + +data: {"v":" 🔥"} + +data: {"v":" "} + +data: {"v":"失控"} + +data: {"v":"的"} + +data: {"v":"漩涡"} + +data: {"v":":"} + +data: {"v":"高"} + +data: {"v":"层的"} + +data: {"v":"博弈"} + +data: {"v":"与"} + +data: {"v":"基层"} + +data: {"v":"的"} + +data: {"v":"共振"} + +data: {"v":"\n"} + +data: {"v":"中央"} + +data: {"v":"高"} + +data: {"v":"层的"} + +data: {"v":"权力"} + +data: {"v":"斗争"} + +data: {"v":","} + +data: {"v":"通过与"} + +data: {"v":"地方"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"结合"} + +data: {"v":","} + +data: {"v":"迅速"} + +data: {"v":"演"} + +data: {"v":"变为"} + +data: {"v":"全国"} + +data: {"v":"性的"} + +data: {"v":"动荡"} + +data: {"v":"。\n\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"中央"} + +data: {"v":"文革"} + +data: {"v":"的"} + +data: {"v":"“"} + +data: {"v":"点火"} + +data: {"v":"”"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"196"} + +data: {"v":"7"} + +data: {"v":"年"} + +data: {"v":"2"} + +data: {"v":"月"} + +data: {"v":"后"} + +data: {"v":",“"} + +data: {"v":"中央"} + +data: {"v":"文革"} + +data: {"v":"”"} + +data: {"v":"取代"} + +data: {"v":"了"} + +data: {"v":"中央"} + +data: {"v":"政治"} + +data: {"v":"局的"} + +data: {"v":"职能"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:10]"},{"p":"references","v":[{"id":5,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"其"} + +data: {"v":"成员"} + +data: {"v":"王"} + +data: {"v":"力"} + +data: {"v":"、"} + +data: {"v":"关"} + +data: {"v":"锋"} + +data: {"v":"、"} + +data: {"v":"戚"} + +data: {"v":"本"} + +data: {"v":"禹"} + +data: {"v":"等人"} + +data: {"v":"四处"} + +data: {"v":"煽"} + +data: {"v":"动"} + +data: {"v":","} + +data: {"v":"如"} + +data: {"v":"王"} + +data: {"v":"力"} + +data: {"v":"196"} + +data: {"v":"7"} + +data: {"v":"年"} + +data: {"v":"8"} + +data: {"v":"月"} + +data: {"v":"7"} + +data: {"v":"日的"} + +data: {"v":"“"} + +data: {"v":"八"} + +data: {"v":"七"} + +data: {"v":"讲话"} + +data: {"v":"”"} + +data: {"v":"直接"} + +data: {"v":"煽"} + +data: {"v":"动"} + +data: {"v":"造反"} + +data: {"v":"派"} + +data: {"v":"夺取"} + +data: {"v":"外交部"} + +data: {"v":"权力"} + +data: {"v":","} + +data: {"v":"矛"} + +data: {"v":"头"} + +data: {"v":"直"} + +data: {"v":"指"} + +data: {"v":"陈"} + +data: {"v":"毅"} + +data: {"v":","} + +data: {"v":"直接"} + +data: {"v":"引发了"} + +data: {"v":"火烧"} + +data: {"v":"英国"} + +data: {"v":"驻"} + +data: {"v":"华"} + +data: {"v":"代办"} + +data: {"v":"处的"} + +data: {"v":"严重"} + +data: {"v":"外交"} + +data: {"v":"事件"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:11]"},{"p":"references","v":[{"id":16,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:12]"},{"p":"references","v":[{"id":29,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"“"} + +data: {"v":"反复"} + +data: {"v":"旧"} + +data: {"v":"”"} + +data: {"v":"运动的"} + +data: {"v":"荒"} + +data: {"v":"诞"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"196"} + +data: {"v":"8"} + +data: {"v":"年的"} + +data: {"v":"“"} + +data: {"v":"反复"} + +data: {"v":"旧"} + +data: {"v":"”"} + +data: {"v":"运动"} + +data: {"v":"体现了"} + +data: {"v":"运动的"} + +data: {"v":"荒谬"} + +data: {"v":"性"} + +data: {"v":"。"} + +data: {"v":"一些"} + +data: {"v":"在"} + +data: {"v":"革"} + +data: {"v":"委会"} + +data: {"v":"任职"} + +data: {"v":"的"} + +data: {"v":"“"} + +data: {"v":"走"} + +data: {"v":"资"} + +data: {"v":"派"} + +data: {"v":"”"} + +data: {"v":"被"} + +data: {"v":"重新"} + +data: {"v":"打倒"} + +data: {"v":","} + +data: {"v":"江苏"} + +data: {"v":"建"} + +data: {"v":"湖"} + +data: {"v":"县"} + +data: {"v":"三"} + +data: {"v":"主任"} + +data: {"v":"被"} + +data: {"v":"关"} + +data: {"v":"进"} + +data: {"v":"“"} + +data: {"v":"学习"} + +data: {"v":"班"} + +data: {"v":"”"} + +data: {"v":"残酷"} + +data: {"v":"斗争"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:13]"},{"p":"references","v":[{"id":12,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":","} + +data: {"v":"许多"} + +data: {"v":"原本"} + +data: {"v":"执行"} + +data: {"v":"政策的"} + +data: {"v":"解放军"} + +data: {"v":"官兵"} + +data: {"v":","} + +data: {"v":"也"} + +data: {"v":"因"} + +data: {"v":"形势"} + +data: {"v":"变化"} + +data: {"v":"成为"} + +data: {"v":"整治"} + +data: {"v":"对象"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:14]"},{"p":"references","v":[{"id":12,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:15]"},{"p":"references","v":[{"id":12,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"地方"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"与国家"} + +data: {"v":"机器的"} + +data: {"v":"共振"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"地方"} + +data: {"v":"派"} + +data: {"v":"系"} + +data: {"v":"斗争"} + +data: {"v":"时常"} + +data: {"v":"获得"} + +data: {"v":"国家"} + +data: {"v":"机器的"} + +data: {"v":"支持"} + +data: {"v":"。"} + +data: {"v":"如"} + +data: {"v":"山东"} + +data: {"v":"的王"} + +data: {"v":"效"} + +data: {"v":"禹"} + +data: {"v":"直接"} + +data: {"v":"动用"} + +data: {"v":"省"} + +data: {"v":"革"} + +data: {"v":"委会"} + +data: {"v":"和"} + +data: {"v":"军区"} + +data: {"v":"名义"} + +data: {"v":"支持"} + +data: {"v":"一派"} + +data: {"v":","} + +data: {"v":"派"} + +data: {"v":"飞机"} + +data: {"v":"散发"} + +data: {"v":"通告"} + +data: {"v":"、"} + +data: {"v":"在全省"} + +data: {"v":"设"} + +data: {"v":"卡"} + +data: {"v":"抓捕"} + +data: {"v":"对立"} + +data: {"v":"派"} + +data: {"v":"群众"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:16]"},{"p":"references","v":[{"id":13,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"###"} + +data: {"v":" 🎭"} + +data: {"v":" "} + +data: {"v":"人性的"} + +data: {"v":"困境"} + +data: {"v":":"} + +data: {"v":"浮"} + +data: {"v":"沉"} + +data: {"v":"人物的"} + +data: {"v":"复杂"} + +data: {"v":"面向"} + +data: {"v":"\n"} + +data: {"v":"教材"} + +data: {"v":"之外"} + +data: {"v":","} + +data: {"v":"许多"} + +data: {"v":"历史"} + +data: {"v":"人物"} + +data: {"v":"并非"} + +data: {"v":"脸"} + +data: {"v":"谱"} + +data: {"v":"化的"} + +data: {"v":"角色"} + +data: {"v":","} + +data: {"v":"其"} + +data: {"v":"沉"} + +data: {"v":"浮"} + +data: {"v":"展现了"} + +data: {"v":"人性的"} + +data: {"v":"复杂"} + +data: {"v":"与"} + +data: {"v":"时代的"} + +data: {"v":"吊"} + +data: {"v":"诡"} + +data: {"v":"。\n\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"陈"} + +data: {"v":"伯"} + +data: {"v":"达"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"他曾"} + +data: {"v":"任"} + +data: {"v":"“"} + +data: {"v":"中央"} + +data: {"v":"文革"} + +data: {"v":"小组"} + +data: {"v":"”"} + +data: {"v":"组长"} + +data: {"v":","} + +data: {"v":"是"} + +data: {"v":"“"} + +data: {"v":"文革"} + +data: {"v":"”"} + +data: {"v":"的关键"} + +data: {"v":"人物"} + +data: {"v":","} + +data: {"v":"但在"} + +data: {"v":"198"} + +data: {"v":"1"} + +data: {"v":"年被"} + +data: {"v":"判"} + +data: {"v":"刑"} + +data: {"v":"18"} + +data: {"v":"年"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:17]"},{"p":"references","v":[{"id":23,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"他的"} + +data: {"v":"复杂性"} + +data: {"v":"在于"} + +data: {"v":","} + +data: {"v":"他也"} + +data: {"v":"曾"} + +data: {"v":"做过"} + +data: {"v":"贡献"} + +data: {"v":","} + +data: {"v":"如"} + +data: {"v":"194"} + +data: {"v":"8"} + +data: {"v":"年在"} + +data: {"v":"城南"} + +data: {"v":"庄"} + +data: {"v":"冒"} + +data: {"v":"死"} + +data: {"v":"救护"} + +data: {"v":"过"} + +data: {"v":"毛泽东"} + +data: {"v":","} + +data: {"v":"这一"} + +data: {"v":"事迹"} + +data: {"v":"因"} + +data: {"v":"他"} + +data: {"v":"后来"} + +data: {"v":"成为"} + +data: {"v":"主"} + +data: {"v":"犯"} + +data: {"v":"而在"} + +data: {"v":"许多"} + +data: {"v":"回忆"} + +data: {"v":"录"} + +data: {"v":"中被"} + +data: {"v":"隐"} + +data: {"v":"去"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:18]"},{"p":"references","v":[{"id":22,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"陶"} + +data: {"v":"铸"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"这位"} + +data: {"v":"中南"} + +data: {"v":"局"} + +data: {"v":"第一书记"} + +data: {"v":"在"} + +data: {"v":"“"} + +data: {"v":"文革"} + +data: {"v":"”"} + +data: {"v":"初期"} + +data: {"v":"被"} + +data: {"v":"提拔"} + +data: {"v":"为"} + +data: {"v":"政治局"} + +data: {"v":"常委"} + +data: {"v":","} + +data: {"v":"但"} + +data: {"v":"仅"} + +data: {"v":"4"} + +data: {"v":"个"} + +data: {"v":"多月"} + +data: {"v":"后"} + +data: {"v":"就被"} + +data: {"v":"江"} + +data: {"v":"青"} + +data: {"v":"等人"} + +data: {"v":"公开"} + +data: {"v":"打倒"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:19]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"其"} + +data: {"v":"悲剧"} + +data: {"v":"在于"} + +data: {"v":","} + +data: {"v":"他曾"} + +data: {"v":"因"} + +data: {"v":"在"} + +data: {"v":"“"} + +data: {"v":"七"} + +data: {"v":"千人"} + +data: {"v":"大会"} + +data: {"v":"”"} + +data: {"v":"上"} + +data: {"v":"反对"} + +data: {"v":"刘少"} + +data: {"v":"奇的"} + +data: {"v":"“"} + +data: {"v":"人"} + +data: {"v":"祸"} + +data: {"v":"”"} + +data: {"v":"论"} + +data: {"v":"而"} + +data: {"v":"得到"} + +data: {"v":"毛泽东"} + +data: {"v":"赏识"} + +data: {"v":","} + +data: {"v":"最终"} + +data: {"v":"却被"} + +data: {"v":"更"} + +data: {"v":"激"} + +data: {"v":"进的"} + +data: {"v":"浪潮"} + +data: {"v":"吞噬"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:20]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"李"} + +data: {"v":"雪"} + +data: {"v":"峰"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"他"} + +data: {"v":"因"} + +data: {"v":"在"} + +data: {"v":"“"} + +data: {"v":"四"} + +data: {"v":"清"} + +data: {"v":"”"} + +data: {"v":"运动中"} + +data: {"v":"与"} + +data: {"v":"刘少"} + +data: {"v":"奇"} + +data: {"v":"有"} + +data: {"v":"分歧"} + +data: {"v":"被"} + +data: {"v":"毛泽东"} + +data: {"v":"重用"} + +data: {"v":"为"} + +data: {"v":"北京"} + +data: {"v":"市委"} + +data: {"v":"第一书记"} + +data: {"v":","} + +data: {"v":"但在"} + +data: {"v":"政治"} + +data: {"v":"风暴"} + +data: {"v":"中"} + +data: {"v":"难以"} + +data: {"v":"自"} + +data: {"v":"保"} + +data: {"v":","} + +data: {"v":"其"} + +data: {"v":"命运"} + +data: {"v":"同样"} + +data: {"v":"坎坷"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:21]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:22]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"赵"} + +data: {"v":"健"} + +data: {"v":"民"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"时任"} + +data: {"v":"云南"} + +data: {"v":"省委"} + +data: {"v":"书记"} + +data: {"v":"的"} + +data: {"v":"赵"} + +data: {"v":"健"} + +data: {"v":"民"} + +data: {"v":","} + +data: {"v":"在京"} + +data: {"v":"西"} + +data: {"v":"宾馆"} + +data: {"v":"会议上"} + +data: {"v":"据"} + +data: {"v":"理"} + +data: {"v":"力争"} + +data: {"v":","} + +data: {"v":"却被"} + +data: {"v":"康"} + +data: {"v":"生"} + +data: {"v":"以"} + +data: {"v":"历史"} + +data: {"v":"问题"} + +data: {"v":"为由"} + +data: {"v":"诬"} + +data: {"v":"陷"} + +data: {"v":"为"} + +data: {"v":"“"} + +data: {"v":"叛"} + +data: {"v":"徒"} + +data: {"v":"”,"} + +data: {"v":"被"} + +data: {"v":"非法"} + +data: {"v":"关"} + +data: {"v":"押"} + +data: {"v":"长达"} + +data: {"v":"八年"} + +data: {"v":"。"} + +data: {"v":"更"} + +data: {"v":"令人"} + +data: {"v":"痛"} + +data: {"v":"心"} + +data: {"v":"的是"} + +data: {"v":","} + +data: {"v":"此"} + +data: {"v":"冤"} + +data: {"v":"案"} + +data: {"v":"导致"} + +data: {"v":"云南省"} + +data: {"v":"超过"} + +data: {"v":"170"} + +data: {"v":"00"} + +data: {"v":"人被"} + +data: {"v":"牵连"} + +data: {"v":"致死"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:23]"},{"p":"references","v":[{"id":20,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"周恩来"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"在"} + +data: {"v":"极度"} + +data: {"v":"混乱"} + +data: {"v":"的局面"} + +data: {"v":"中"} + +data: {"v":","} + +data: {"v":"他"} + +data: {"v":"尽力"} + +data: {"v":"“"} + +data: {"v":"苦"} + +data: {"v":"撑"} + +data: {"v":"危"} + +data: {"v":"局"} + +data: {"v":"”。"} + +data: {"v":"在"} + +data: {"v":"中央"} + +data: {"v":"文革"} + +data: {"v":"挑"} + +data: {"v":"动"} + +data: {"v":"外交部"} + +data: {"v":"夺"} + +data: {"v":"权"} + +data: {"v":"时"} + +data: {"v":","} + +data: {"v":"他"} + +data: {"v":"一方面"} + +data: {"v":"严厉"} + +data: {"v":"批评"} + +data: {"v":","} + +data: {"v":"另一方面"} + +data: {"v":"指挥"} + +data: {"v":"部队"} + +data: {"v":"营"} + +data: {"v":"救"} + +data: {"v":"被困"} + +data: {"v":"人员"} + +data: {"v":","} + +data: {"v":"试图"} + +data: {"v":"挽回"} + +data: {"v":"失控"} + +data: {"v":"的外"} + +data: {"v":"交"} + +data: {"v":"局面"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:24]"},{"p":"references","v":[{"id":16,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"许"} + +data: {"v":"广"} + +data: {"v":"平"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"在"} + +data: {"v":"山东"} + +data: {"v":"大学"} + +data: {"v":"批判"} + +data: {"v":"校长"} + +data: {"v":"成"} + +data: {"v":"仿"} + +data: {"v":"吾"} + +data: {"v":"时"} + +data: {"v":","} + +data: {"v":"许"} + +data: {"v":"广"} + +data: {"v":"平"} + +data: {"v":"作为"} + +data: {"v":"鲁迅"} + +data: {"v":"夫人"} + +data: {"v":","} + +data: {"v":"她的"} + +data: {"v":"态度"} + +data: {"v":"和"} + +data: {"v":"抉择"} + +data: {"v":"也"} + +data: {"v":"反映了"} + +data: {"v":"那个"} + +data: {"v":"时代"} + +data: {"v":"知识分子"} + +data: {"v":"面临的"} + +data: {"v":"复杂"} + +data: {"v":"处境"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:25]"},{"p":"references","v":[{"id":24,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"纳"} + +data: {"v":"西"} + +data: {"v":"族"} + +data: {"v":"老"} + +data: {"v":"村"} + +data: {"v":"长的"} + +data: {"v":"二"} + +data: {"v":"叔"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"一位"} + +data: {"v":"回乡"} + +data: {"v":"军人"} + +data: {"v":","} + +data: {"v":"仅"} + +data: {"v":"因"} + +data: {"v":"将"} + +data: {"v":"有"} + +data: {"v":"领导人"} + +data: {"v":"签"} + +data: {"v":"名的"} + +data: {"v":"证明"} + +data: {"v":"藏在"} + +data: {"v":"鞋"} + +data: {"v":"底"} + +data: {"v":","} + +data: {"v":"便被"} + +data: {"v":"诬"} + +data: {"v":"陷"} + +data: {"v":"为"} + +data: {"v":"“"} + +data: {"v":"第三"} + +data: {"v":"党"} + +data: {"v":"”"} + +data: {"v":"分子"} + +data: {"v":","} + +data: {"v":"这"} + +data: {"v":"则"} + +data: {"v":"个案"} + +data: {"v":"反映了"} + +data: {"v":"那个"} + +data: {"v":"年代"} + +data: {"v":"荒"} + +data: {"v":"诞"} + +data: {"v":"的"} + +data: {"v":"罪名"} + +data: {"v":"如何"} + +data: {"v":"轻易"} + +data: {"v":"地"} + +data: {"v":"摧毁"} + +data: {"v":"普通"} + +data: {"v":"人的生活"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:26]"},{"p":"references","v":[{"id":21,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"您"} + +data: {"v":"需要"} + +data: {"v":"更多"} + +data: {"v":"原始"} + +data: {"v":"材料"} + +data: {"v":","} + +data: {"v":"可以"} + +data: {"v":"查阅"} + +data: {"v":"叶"} + +data: {"v":"永"} + +data: {"v":"烈的"} + +data: {"v":"《"} + +data: {"v":"“"} + +data: {"v":"四人"} + +data: {"v":"帮"} + +data: {"v":"”"} + +data: {"v":"兴"} + +data: {"v":"亡"} + +data: {"v":"》("} + +data: {"v":"基于"} + +data: {"v":"大量"} + +data: {"v":"亲"} + +data: {"v":"历"} + +data: {"v":"者"} + +data: {"v":"采访"} + +data: {"v":")"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:27]"},{"p":"references","v":[{"id":22,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"、"} + +data: {"v":"丁"} + +data: {"v":"龙"} + +data: {"v":"嘉"} + +data: {"v":"与"} + +data: {"v":"听"} + +data: {"v":"雨的"} + +data: {"v":"《"} + +data: {"v":"康"} + +data: {"v":"生"} + +data: {"v":"与"} + +data: {"v":"“"} + +data: {"v":"赵"} + +data: {"v":"健"} + +data: {"v":"民"} + +data: {"v":"冤"} + +data: {"v":"案"} + +data: {"v":"》"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:28]"},{"p":"references","v":[{"id":18,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":","} + +data: {"v":"以及"} + +data: {"v":"各地"} + +data: {"v":"政协"} + +data: {"v":"编"} + +data: {"v":"撰"} + +data: {"v":"的"} + +data: {"v":"文史"} + +data: {"v":"资料"} + +data: {"v":"。"} + +data: {"v":"您"} + +data: {"v":"可以根据"} + +data: {"v":"教学"} + +data: {"v":"重点"} + +data: {"v":","} + +data: {"v":"从"} + +data: {"v":"这些"} + +data: {"v":"具体"} + +data: {"v":"案例"} + +data: {"v":"中"} + +data: {"v":"筛选"} + +data: {"v":"细节"} + +data: {"v":","} + +data: {"v":"帮助学生"} + +data: {"v":"理解"} + +data: {"v":"那段"} + +data: {"v":"历史的"} + +data: {"v":"复杂"} + +data: {"v":"肌"} + +data: {"v":"理"} + +data: {"v":"。"} + +data: {"p":"response/fragments","v":[{"id":37,"type":"TIP","content":"本回答由 AI 生成,内容仅供参考,请仔细甄别。","style":"WARNING","hide_on_wip":true}]} + +data: {"p":"response","o":"BATCH","v":[{"p":"accumulated_token_usage","v":1269},{"p":"quasi_status","v":"FINISHED"}]} + +: + +data: {"v":[{"p":"ban_regenerate","v":true},{"p":"status","v":"CONTENT_FILTER"},{"p":"fragments","v":[{"id":38,"type":"TEMPLATE_RESPONSE","content":"你好,这个问题我暂时无法回答,让我们换个话题再聊聊吧。"}]},{"p":"quasi_status","v":"CONTENT_FILTER"}]} + +event: finish +data: {} + +event: update_session +data: {"updated_at":1775320133.058034} + +event: close +data: {"click_behavior":"none","auto_resume":false} + diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/analysis.md b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/analysis.md deleted file mode 100644 index 383ce2a..0000000 --- a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/analysis.md +++ /dev/null @@ -1,55 +0,0 @@ -# 样本分析(广州天气 / deepseek-reasoner-search) - -- 样本来源:`/admin/dev/captures` 上游原始 SSE 抓包 -- 采集时间(UTC):2026-04-03 01:28:50 -- 原始字节数:41043 -- `FINISHED` 字符串出现次数:24 -- JSON `data:` chunk 数:420 - -## 事件分布 - -- `ready`: 1 -- `update_session`: 2 -- `finish`: 1 - -## 高频路径(Top 12) - -- `response/fragments/-1/content`: 13 -- `response/fragments/-1`: 9 -- `response`: 5 -- `response/has_pending_fragment`: 4 -- `response/fragments/-1/elapsed_secs`: 3 -- `response/fragments/-5/status`: 2 -- `response/fragments/-6/status`: 2 -- `response/fragments/-3/status`: 2 -- `response/fragments/-1/status`: 2 -- `response/fragments/-4/status`: 2 -- `response/fragments/-2/status`: 2 -- `response/fragments/-5/results`: 1 - -## 关键泄露来源 - -以下状态路径会高频出现 `v=FINISHED`,如果解析器按普通文本透传,就会出现 `FINISHEDFINISHED...` 泄露: - -- `response/fragments/-5/status`: 2 -- `response/fragments/-6/status`: 2 -- `response/fragments/-3/status`: 2 -- `response/fragments/-1/status`: 2 -- `response/fragments/-4/status`: 2 -- `response/fragments/-2/status`: 2 -- `response/fragments/-14/status`: 1 -- `response/fragments/-12/status`: 1 -- `response/fragments/-10/status`: 1 -- `response/fragments/-9/status`: 1 -- `response/fragments/-8/status`: 1 -- `response/fragments/-7/status`: 1 -- `response/fragments/-11/status`: 1 -- `response/fragments/-16/status`: 1 -- `response/fragments/-13/status`: 1 -- `response/fragments/-15/status`: 1 - -## 适配建议 - -1. 跳过 `response/fragments//status`(所有 index,而非仅 `-1/-2/-3`)。 -2. 保留 `response/status=FINISHED` 用于结束流判定,不应当输出正文。 -3. 在样本仿真测试中对全部样本执行“不得输出 `FINISHED`”断言。 diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/meta.json b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/meta.json deleted file mode 100644 index 127bef0..0000000 --- a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/meta.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "sample_id": "guangzhou-weather-reasoner-search-20260403", - "captured_at_utc": "2026-04-03T01:28:50Z", - "request": { - "model": "deepseek-reasoner-search", - "stream": true, - "messages": [ - { - "role": "user", - "content": "广州天气" - } - ], - "thinking_enabled": true, - "search_enabled": true - }, - "capture": { - "label": "deepseek_completion", - "url": "https://chat.deepseek.com/api/v0/chat/completion", - "status_code": 200, - "response_bytes": 41043, - "contains_finished_token": true, - "finished_token_count": 24 - }, - "notes": "Captured from upstream DeepSeek SSE via /admin/dev/captures with packet capture enabled. Account ID removed." -} \ No newline at end of file diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/upstream.stream.sse b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/upstream.stream.sse deleted file mode 100644 index 71b5f5c..0000000 --- a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260403/upstream.stream.sse +++ /dev/null @@ -1,848 +0,0 @@ -event: ready -data: {"request_message_id":1,"response_message_id":2} - -event: update_session -data: {"updated_at":1775179730.6087148} - -data: {"v":{"response":{"message_id":2,"parent_id":1,"model":"","role":"ASSISTANT","thinking_enabled":true,"ban_edit":false,"ban_regenerate":false,"status":"WIP","accumulated_token_usage":0,"files":[],"feedback":null,"inserted_at":1775179730.60373,"search_enabled":true,"fragments":[{"id":2,"type":"THINK","content":"用户","elapsed_secs":null,"references":[],"stage_id":1}],"conversation_mode":"DEEP_SEARCH","has_pending_fragment":false,"auto_continue":false,"search_triggered":true}}} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"想知道"} - -data: {"v":"广州"} - -data: {"v":"的"} - -data: {"v":"天气"} - -data: {"v":"情况"} - -data: {"v":"。"} - -data: {"v":"今天是"} - -data: {"v":"202"} - -data: {"v":"6"} - -data: {"v":"年"} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"3"} - -data: {"v":"日"} - -data: {"v":"。"} - -data: {"v":"我需要"} - -data: {"v":"提供"} - -data: {"v":"广州"} - -data: {"v":"当前的"} - -data: {"v":"天气"} - -data: {"v":"信息"} - -data: {"v":","} - -data: {"v":"可能"} - -data: {"v":"还需要"} - -data: {"v":"包括"} - -data: {"v":"未来"} - -data: {"v":"几"} - -data: {"v":"天的"} - -data: {"v":"预报"} - -data: {"v":"。"} - -data: {"v":"为了"} - -data: {"v":"全面"} - -data: {"v":"获取"} - -data: {"v":"信息"} - -data: {"v":","} - -data: {"v":"我需要"} - -data: {"v":"同时"} - -data: {"v":"进行"} - -data: {"v":"多项"} - -data: {"v":"搜索"} - -data: {"v":","} - -data: {"v":"以"} - -data: {"v":"覆盖"} - -data: {"v":"不同"} - -data: {"v":"格式"} - -data: {"v":"和"} - -data: {"v":"可能"} - -data: {"v":"的不同"} - -data: {"v":"来源"} - -data: {"v":"。"} - -data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":1.345921362} - -data: {"p":"response/has_pending_fragment","v":true} - -data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":3,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026-04-03"}],"results":[],"stage_id":1},{"id":4,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气预报 2026年4月"}],"results":[],"stage_id":1},{"id":5,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026年4月3日 星期六"}],"results":[],"stage_id":1},{"id":6,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"2026-04-03 广州 天气 预报"}],"results":[],"stage_id":1},{"id":7,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026年4月3日 每小时"}],"results":[],"stage_id":1},{"id":8,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 7天 天气预报 2026-04-03"}],"results":[],"stage_id":1}]},{"p":"has_pending_fragment","o":"SET","v":false}]} - -data: {"p":"response/fragments/-5/results","o":"SET","v":[{"url":"https://news.qq.com/rain/a/20260401A06GQ200","title":"4月广州仍有冷空气“搞事情”,3次弱冷空气+4次降水轮番登场","snippet":"预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨,局部暴雨)、4月17日—21日(大雨,局部暴雨)、4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/qq.com","site_name":"QQ News","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather40d/101280101.shtml","title":"【广州天气】广州40天天气预报,广州更长预报,广州天气日历,广州日历,15天天气预报,天气预报一周","snippet":"蓝天预报综合天气现象、能见度、空气质量等因子,预测未来一周的天空状况。 - 天空蔚蓝 可见透彻蓝天,或有蓝天白云美景。 - 天空淡蓝 天空不够清澈,以浅蓝色为主。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"http://k.sina.com.cn/article_5787187353_158f1789902002301y.html","title":"4月广州或有4次集中降水过程,6月中下旬或迎“初台”","snippet":"根据《广州市2026年4月气候趋势预测》,预计4月广州各区月平均气温22.6~25.0°C,全市平均气温23.1~23.6°C,较近30年(1996-2025年,下同)同期(22.6°C)偏高0.5~1.0°C...","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/sina.com.cn","site_name":"sina.com.cn","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004087935_119778?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.9.1775050942155GVwQz9y_324&_trans_=060008_lym","title":"4月广州或有4次集中降水过程,6月中下旬或迎“初台”","snippet":"根据《广州市2026年第二季度气候趋势预测》,预计第二季度广州平均气温26.0~26.5°C,较近30年(1996-2025年,下同)同期(25.5°C)偏高0.5~1.0°C。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://huacheng.gz-cmc.com/pages/2026/04/01/8cce9be94a1a4c8eae598c6cbfae624b.html","title":"4月广州仍有冷空气“搞事情”,3次弱冷空气+4次降水轮番登场","snippet":"另外,4月将有4次降水过程,预计当月广州降雨量将比常年偏少1~2成 ... 预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨 ... 4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz-cmc.com","site_name":"广州日报新花城","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 ... 3~4级 ... 04/04 周六 大雨 无持续风向 微风 25℃ ... 04/05 周日 ... 04/06 周一 雷阵雨","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004262788_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.10.1775093958609Tqfgwxd_324","title":"最新预测:广州4月预计有3次冷空气、4次降水过程","snippet":"根据气象部门预测,4月广州将遭遇3次冷空气过程。另外,4月将有4次降水过程,预计当月广州降雨量将比常年偏少1~2成 ... 预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨,局部暴雨)、4月17日—21日(大雨 ... 4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou-yuexiu/10day.html","title":"广州越秀天气预报10天天气","snippet":"20℃ ~ 26℃ 西南风转微风 3-4级转<3级 ... 2026-04-04 (星期六) 大雨转雷阵雨 21℃ ~ 23℃","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/luogang.html","title":"黄埔(广州)-天气预报","snippet":"04/03 周五 ... 3~4级 27℃ ... 04/04 周六 大雨 ... 04/05 周日 ... 04/06 周一 雷阵雨","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]}]} - -data: {"p":"response/fragments/-5/status","v":"FINISHED"} - -data: {"p":"response/fragments/-6/results","v":[{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 ... 04/04 周六 大雨 ... 04/05 周日 中雨 ... 04/06 周一 雷阵雨 ... 04/07 周二","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/luogang.html","title":"黄埔(广州)-天气预报","snippet":"04/03 周五 ... 04/04 周六 大雨 ... 04/05 周日 ... 3~4级 04/06 周一 雷阵雨","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://news.qq.com/rain/a/20260401A06GQ200","title":"4月广州仍有冷空气“搞事情”,3次弱冷空气+4次降水轮番登场","snippet":"预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨,局部暴雨)、4月17日—21日(大雨,局部暴雨)、4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/qq.com","site_name":"QQ News","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06:18 日落18:42","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/15day.html","title":"广州天气预报15天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 ... 2026-04-04 (星期六)","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong/","title":"广东省天气预报","snippet":"广州天气 雷阵雨转中雨 20℃ ~ 27℃ 更新时间:2026-04-03 08:02:25 - 荔湾 雷阵雨转中雨 20℃~27℃","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"http://www.tqyb.com.cn/gzpanyu/weatherReport/latest/2026-04-01/16054.html","title":"3-6日我区雷雨活跃并伴有强对流天气 需注意防御雷雨大风和短时强降水","snippet":"3月29日下午开始,我区受雷雨云团影响,出现雷电、短时强降水、雷雨大风等强对流天气。其中,29日下午至傍晚出现中到强雷雨局部暴雨,并伴有6~8级阵风;30日上午至中午出现中雷雨局部大雨和8~11级局部12级阵风,石楼镇(南沙大桥K7 470段气象观测站)录得最大阵风35.2米/秒(12级)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/tqyb.com.cn","site_name":"tqyb","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/guangzhou","title":"【广州市天气预报15天】_广州市天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周四 雷阵雨 25° 21° - 周五 中雨 26° 20° - 周六 大雨 23° 21°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://www.163.com/dy/article/KPDO91T40530JPVV.html","title":"广东暴雨中场休息,接着又要“放大招”","snippet":"广州市气象台预计,4月1日—2日广州降水减弱,以多云为主,4月3日后降水再度增强,展望清明假期,广州仍有中到大雨 ... 4月1日,粤北市县多云,其余市县多云间阴天...","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]}]} - -data: {"p":"response/fragments/-6/status","v":"FINISHED"} - -data: {"p":"response/fragments/-3/results","v":[{"url":"https://www.weather.com.cn/weather40d/101280101.shtml","title":"【广州天气】广州40天天气预报,广州更长预报,广州天气日历,广州日历,15天天气预报,天气预报一周","snippet":"蓝天预报综合天气现象、能见度、空气质量等因子,预测未来一周的天空状况。 - 天空蔚蓝 可见透彻蓝天,或有蓝天白云美景。 - 天空淡蓝 天空不够清澈,以浅蓝色为主。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/luogang.html","title":"黄埔(广州)-天气预报","snippet":"04/03 周五 ... 04/04 周六 大雨 ... 04/05 周日 ... 3~4级 04/06 周一 雷阵雨","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 ... 04/04 周六 大雨 ... 04/05 周日 中雨 ... 04/06 周一 雷阵雨 ... 04/07 周二","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong/7day.html","title":"广东省天气预报","snippet":"广州天气 中雨转大雨 20℃ ~ 26℃ 更新时间:2026-04-03 03:24:50 - 荔湾 中雨转大雨 20℃~26℃","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/15day.html","title":"广州天气预报15天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06...","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"http://www.tqyb.com.cn/gzpanyu/weatherReport/latest/2026-04-01/16054.html","title":"3-6日我区雷雨活跃并伴有强对流天气 需注意防御雷雨大风和短时强降水","snippet":"3月29日下午开始 ... 短时强降水、雷雨大风等强对流天气 ... 预警信号预测:预计,4月3-6日可能发布雷雨大风黄色或以上、暴雨黄色或以上和冰雹橙色预警信号。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/tqyb.com.cn","site_name":"tqyb","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/guangzhou","title":"【广州市天气预报15天】_广州市天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周四 雷阵雨 25° 21° - 周五 中雨 26° 20° - 周六 大雨 23° 21°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"4日(明天) 大雨转雷阵雨 25/20℃ <3级 # 5日(后天) 中雨转雷阵雨 24/21℃ ... 6日(周一) 小雨转阴","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]}]} - -data: {"p":"response/fragments/-3/status","v":"FINISHED"} - -data: {"p":"response/fragments/-1/results","v":[{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06:18 日落18...","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"4日(明天) 大雨转雷阵雨 25/20℃ <3级 # 5日(后天) 中雨转雷阵雨 24/21℃ ... 6日(周一) 小雨转阴","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou-panyu/7day.html","title":"广州番禺天气预报7天天气","snippet":"2026-04-03 (星期五) 雷阵雨转大雨 21℃ ~ 27℃ 南风转微风 3-4级转<3级 日出06:18 日落18...","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280106.shtml","title":"荔湾天气预报,荔湾7天天气预报,荔湾15天天气预报,荔湾天气查询","snippet":"3日(明天) 中雨转大雨 26℃/20℃ 3-4级转<3级 # 4日(后天) ... 23℃/21℃ <3级 # 5日(周日) ... 25℃/22℃","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast7/china/guangdong/china-weather-guangzhou-satellite-station","title":"【广州气象卫星地面站天气预报一周】_广州气象卫星地面站天气预报一周查询_一周天气","snippet":"7天预报 ... - 周四 阴 26° 23° - 周五 阵雨雷... 27° 23° - 周六 雷阵雨... 24° 22°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"http://www.tqyb.com.cn/gzpanyu/weatherReport/latest/2026-04-01/16054.html","title":"3-6日我区雷雨活跃并伴有强对流天气 需注意防御雷雨大风和短时强降水","snippet":"3月29日下午开始,我区受雷雨云团影响,出现雷电、短时强降水、雷雨大风等强对流天气。其中 ... 30日上午至中午出现中雷雨局部大雨和8~11级局部12级阵风,石楼镇(南沙大桥K7 470段气象观测站)录得最大阵风35.2米/秒(12级)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/tqyb.com.cn","site_name":"tqyb","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou-yuexiu/10day.html","title":"广州越秀天气预报10天天气","snippet":"提供广东省广州市越秀区10天天气,包含每天最高气温、最低气温、天气状况及风向等气象信息 一 | 二 | 三 | 四 | 五 | 六 | 日 ---|---|---|---|---|---|--- 04月03日 03 中雨转大雨 20℃ ~ 26℃ 日出06:18 日落18:43 04月04日 04 大雨转雷阵雨 21℃ ~ 23℃ 日出06:17 日落18:43 04月05日","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/luogang.html","title":"黄埔(广州)-天气预报","snippet":"22.9℃ 日落18:42 降水量 0mm 东南风 微风 相对湿度 87% 体感温度 24.6℃ 空气质量:优 舒适度:舒适,最可接受 雷达图 发布时间:04-03 08:00 04/03 周五 雷阵雨 南风 3~4级 27℃ 20℃ 中雨 无持续风向 微风 04/04 周六 大雨 无持续风向 微风 25℃ 20℃ 雷阵雨 无持续风向","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.ip.cn/tianqi/guangdong/guangzhou/7day.html","title":"广州7天天气","snippet":"最新广东省广州市7天天气,包含每天最高气温、最低气温、天气状况及风向等天气信息 广州天气:2026-04-02至2026-04-08 天气预报 一 | 二 | 三 | 四 | 五 | 六 | 日 ---|---|---|---|---|---|--- 04月02日 02 雷阵雨 21℃ ~ 25℃ 日出06:19 日落18:42 04月03日 03 中雨转大雨 20℃ ~ 2","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/ip.cn","site_name":"IP.cn","query_indexes":[0]}]} - -data: {"p":"response/fragments/-1/status","v":"FINISHED"} - -data: {"p":"response/fragments/-4/results","v":[{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-04 (星期六) 大雨转雷阵雨 21℃ ~ 23℃ 微风 <3级 | 日出06:17 日落18:43","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/weather-forecast/102255?type=locality","title":"广州, 广东省, 中国三天天气预报 | AccuWeather","snippet":"4/2 下午有少量降雨 局部地区有雷雨 周五 4/3 上午局部地区有雷雨;部分晴 潮湿,有雨和雷雨 周六 4/4 大部分多云,潮湿,有雷雨","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"4日(明天) 大雨转雷阵雨 25/20℃ <3级 # 5日(后天) 中雨转雷阵雨 24/21℃ <3级转3-4级 # 6日(周一) 小雨转阴","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/guangzhou","title":"【广州市天气预报15天】_广州市天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周四 雷阵雨 25° 21° - 周五 中雨 26° 20° - 周六 大雨 23° 21°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/china-weather-guangzhou-satellite-station","title":"【广州气象卫星地面站天气预报15天】_广州气象卫星地面站天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周四 阴 26° 23° - 周五 阵雨 28° 23° - 周六 雷阵雨 23° 21°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/luogang.html","title":"黄埔(广州)-天气预报","snippet":"04/03 周五 雷阵雨 南风 3~4级 27℃ 20℃ ... 04/04 周六 大雨 ... 04/05 周日 ... 04/06 周一","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast7/china/guangdong/china-weather-guangzhou-satellite-station","title":"【广州气象卫星地面站天气预报一周】_广州气象卫星地面站天气预报一周查询_一周天气","snippet":"7天预报 ... - 周四 阴 26° 23° - 周五 阵雨雷... 27° 23° - 周六 雷阵雨... 24° 22° ... - 周一 少云","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 ... 3~4级 27℃ 20℃ 中雨 无持续风向 微风 04/04 周六 大雨 ... 04/05 周日","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"http://gd.cma.gov.cn/","title":"广东省气象局","snippet":"晴转雷阵雨 19℃/10℃ 微风 03日(明日) 多云转晴 22℃/6℃ 3~4级 04日(后日) 晴转多云 19℃/8℃ 3~4级 05日(周日) 晴转多云 19℃/6℃","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/cma.gov.cn","site_name":"广东省气象局","query_indexes":[0]}]} - -data: {"p":"response/fragments/-4/status","v":"FINISHED"} - -data: {"p":"response/fragments/-2/results","v":[{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 雷阵雨 南风 3~4级 27℃ 20℃ 中雨 无持续风向 微风 04/04 周六 大雨 ... 04/06 周一","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/15day.html","title":"广州天气预报15天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 ... 18 日落18:42","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06:18 日落18...","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://www.ip.cn/tianqi/guangdong/guangzhou/","title":"广州天气 广东省广州市5天天气预报查询 IP.cn","snippet":"2026-04-03 天气 中雨转大雨 20℃ ~ 26℃ 西南风 转 微风 3-4级转<3级 日出06:18","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/ip.cn","site_name":"IP.cn","query_indexes":[0]},{"url":"https://www.ventusky.com/zh/guangzhou","title":"天气 - 广州市 - 14天预报:气温、风和雷达","snippet":"2026-04-04 | — | 07:14 | 20:45 | 97 % 至 93 % 2026-04-05 | — | 07:51 | 21...","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/ventusky.com","site_name":"Ventusky","query_indexes":[0]},{"url":"http://www.tqyb.com.cn/gzpanyu/weatherReport/latest/2026-04-01/16054.html","title":"3-6日我区雷雨活跃并伴有强对流天气 需注意防御雷雨大风和短时强降水","snippet":"4月3日:多云间阴天,有中雷雨局部暴雨,21~30℃; 4月4日(清明假期):多云到阴天,有大雨到暴雨,20~26℃...","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/tqyb.com.cn","site_name":"tqyb","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/china-weather-guangzhou-satellite-station","title":"【广州气象卫星地面站天气预报15天】_广州气象卫星地面站天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周四 阴 26° 23° - 周五 阵雨 28° 23° - 周六 雷阵雨 23° 21°","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://www.tianqi.com/baiyun","title":"广州白云天气","snippet":"2026年04月03日 星期五 丙午年二月十六 25℃ 阴24 ~ 29℃ - 湿度:85%风向:东南风 3级紫外线:弱 ##### 空气质量:优","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/tianqi.com","site_name":"tianqi.com","query_indexes":[0]},{"url":"https://www.tianqi.com/guangzhou","title":"【广州天气预报】广州天气预报一周,广州天气预报15天,30天,今天,明天,7天,10天,未来广州一周天气预报查询—天气网","snippet":"2026年04月03日 星期五 丙午年二月十六 25℃ 阴转小雨24 ~ 29℃ - 湿度:86%风向:东南风 3级紫外线:无 ##### 空气质量:良","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/tianqi.com","site_name":"tianqi.com","query_indexes":[0]}]} - -data: {"p":"response/fragments/-2/status","v":"FINISHED"} - -data: {"p":"response/has_pending_fragment","v":true} - -data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":9,"type":"THINK","content":"搜索","elapsed_secs":null,"references":[],"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"结果显示"} - -data: {"v":"了许多"} - -data: {"v":"相关"} - -data: {"v":"来源"} - -data: {"v":"。"} - -data: {"v":"为了"} - -data: {"v":"全面"} - -data: {"v":"获取"} - -data: {"v":"信息"} - -data: {"v":","} - -data: {"v":"我需要"} - -data: {"v":"同时"} - -data: {"v":"打开"} - -data: {"v":"这些"} - -data: {"v":"来源"} - -data: {"v":"。"} - -data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":0.654438445} - -data: {"p":"response/has_pending_fragment","v":true} - -: - -: - -data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":10,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 ... 04/04 周六 大雨 ... 04/05 周日 中雨 ... 04/06 周一 雷阵雨 ... 04/07 周二","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":11,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":12,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06:18 日落18:42","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":13,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/15day.html","title":"广州天气预报15天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 ... 2026-04-04 (星期六)","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":14,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 ... 3~4级 ... 04/04 周六 大雨 无持续风向 微风 25℃ ... 04/05 周日 ... 04/06 周一 雷阵雨","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},"reference":{"id":4,"type":"TOOL_SEARCH"},"stage_id":2},{"id":15,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-04 (星期六) 大雨转雷阵雨 21℃ ~ 23℃ 微风 <3级 | 日出06:17 日落18:43","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":5,"type":"TOOL_SEARCH"},"stage_id":2},{"id":16,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/weather-forecast/102255?type=locality","title":"广州, 广东省, 中国三天天气预报 | AccuWeather","snippet":"4/2 下午有少量降雨 局部地区有雷雨 周五 4/3 上午局部地区有雷雨;部分晴 潮湿,有雨和雷雨 周六 4/4 大部分多云,潮湿,有雷雨","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]},"reference":{"id":5,"type":"TOOL_SEARCH"},"stage_id":2},{"id":17,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"4日(明天) 大雨转雷阵雨 25/20℃ <3级 # 5日(后天) 中雨转雷阵雨 24/21℃ <3级转3-4级 # 6日(周一) 小雨转阴","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},"reference":{"id":5,"type":"TOOL_SEARCH"},"stage_id":2},{"id":18,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.weather.com.cn/weather40d/101280101.shtml","title":"【广州天气】广州40天天气预报,广州更长预报,广州天气日历,广州日历,15天天气预报,天气预报一周","snippet":"蓝天预报综合天气现象、能见度、空气质量等因子,预测未来一周的天空状况。 - 天空蔚蓝 可见透彻蓝天,或有蓝天白云美景。 - 天空淡蓝 天空不够清澈,以浅蓝色为主。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},"reference":{"id":6,"type":"TOOL_SEARCH"},"stage_id":2},{"id":19,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},"reference":{"id":6,"type":"TOOL_SEARCH"},"stage_id":2},{"id":20,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong/7day.html","title":"广东省天气预报","snippet":"广州天气 中雨转大雨 20℃ ~ 26℃ 更新时间:2026-04-03 03:24:50 - 荔湾 中雨转大雨 20℃~26℃","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":6,"type":"TOOL_SEARCH"},"stage_id":2},{"id":21,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/03 周五 雷阵雨 南风 3~4级 27℃ 20℃ 中雨 无持续风向 微风 04/04 周六 大雨 ... 04/06 周一","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},"reference":{"id":7,"type":"TOOL_SEARCH"},"stage_id":2},{"id":22,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://www.tqyb.com.cn/gzpanyu/weatherReport/latest/2026-04-01/16054.html","title":"3-6日我区雷雨活跃并伴有强对流天气 需注意防御雷雨大风和短时强降水","snippet":"4月3日:多云间阴天,有中雷雨局部暴雨,21~30℃; 4月4日(清明假期):多云到阴天,有大雨到暴雨,20~26℃...","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/tqyb.com.cn","site_name":"tqyb","query_indexes":[0]},"reference":{"id":7,"type":"TOOL_SEARCH"},"stage_id":2},{"id":23,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-03 (星期五) 中雨转大雨 20℃ ~ 26℃ 西南风转微风 3-4级转<3级 | 日出06:18 日落18...","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":24,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":25,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"4日(明天) 大雨转雷阵雨 25/20℃ <3级 # 5日(后天) 中雨转雷阵雨 24/21℃ ... 6日(周一) 小雨转阴","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} - -data: {"p":"response/fragments/-14/status","o":"SET","v":"FINISHED"} - -data: {"p":"response/fragments/-12/status","v":"FINISHED"} - -data: {"p":"response/fragments/-10/status","v":"FINISHED"} - -data: {"p":"response/fragments/-9/status","v":"FINISHED"} - -data: {"p":"response/fragments/-8/status","v":"FINISHED"} - -data: {"p":"response/fragments/-7/status","v":"FINISHED"} - -data: {"p":"response/fragments/-4/status","v":"FINISHED"} - -data: {"p":"response/fragments/-2/status","v":"FINISHED"} - -data: {"p":"response/fragments/-11/status","v":"FINISHED"} - -data: {"p":"response/fragments/-5/status","v":"FINISHED"} - -data: {"p":"response/fragments/-3/status","v":"FINISHED"} - -data: {"p":"response/fragments/-16/status","v":"FINISHED"} - -data: {"p":"response/fragments/-13/status","v":"FINISHED"} - -data: {"p":"response/fragments/-6/status","v":"FINISHED"} - -data: {"p":"response/fragments/-15/status","v":"FINISHED"} - -data: {"p":"response/fragments/-1/status","v":"FINISHED"} - -data: {"p":"response/has_pending_fragment","v":true} - -data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":26,"type":"THINK","content":"这些","elapsed_secs":null,"references":[],"stage_id":3}]},{"p":"has_pending_fragment","o":"SET","v":false}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"信息"} - -data: {"v":"提供了"} - -data: {"v":"广州"} - -data: {"v":"当前"} - -data: {"v":"和"} - -data: {"v":"未来的"} - -data: {"v":"天气预报"} - -data: {"v":"。"} - -data: {"v":"我的"} - -data: {"v":"回答"} - -data: {"v":"将"} - -data: {"v":"涵盖"} - -data: {"v":"今天"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"3"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"的"} - -data: {"v":"天气"} - -data: {"v":"、"} - -data: {"v":"未来"} - -data: {"v":"趋势"} - -data: {"v":"、"} - -data: {"v":"注意事项"} - -data: {"v":"以及"} - -data: {"v":"生活"} - -data: {"v":"指数"} - -data: {"v":"。"} - -data: {"v":"回答"} - -data: {"v":"中"} - -data: {"v":"会"} - -data: {"v":"注明"} - -data: {"v":"信息来源"} - -data: {"v":"。"} - -data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":0.870397331} - -data: {"p":"response/fragments","o":"APPEND","v":[{"id":27,"type":"RESPONSE","content":"广州","references":[],"stage_id":3}]} - -data: {"p":"response/fragments/-1/content","v":"今天"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"3"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"是"} - -data: {"v":"雷"} - -data: {"v":"阵"} - -data: {"v":"雨"} - -data: {"v":"转"} - -data: {"v":"中"} - -data: {"v":"雨的"} - -data: {"v":"天气"} - -data: {"v":","} - -data: {"v":"气温"} - -data: {"v":"在"} - -data: {"v":"**"} - -data: {"v":"20"} - -data: {"v":"℃"} - -data: {"v":" "} - -data: {"v":"到"} - -data: {"v":" "} - -data: {"v":"27"} - -data: {"v":"℃"} - -data: {"v":"**"} - -data: {"v":"之间"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:0]"},{"p":"references","o":"SET","v":[{"id":17,"type":"TOOL_OPEN"}]}]} - -data: {"v":[{"p":"content","o":"APPEND","v":"[reference:1]"},{"p":"references","v":[{"id":7,"type":"TOOL_SEARCH"}]}]} - -data: {"v":[{"p":"content","o":"APPEND","v":"[reference:2]"},{"p":"references","v":[{"id":10,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} - -data: {"v":"风力"} - -data: {"v":"为"} - -data: {"v":"南"} - -data: {"v":"风"} - -data: {"v":","} - -data: {"v":"3"} - -data: {"v":"-"} - -data: {"v":"4"} - -data: {"v":"级"} - -data: {"v":","} - -data: {"v":"湿度"} - -data: {"v":"较高"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:3]"},{"p":"references","v":[{"id":10,"type":"TOOL_OPEN"}]}]} - -data: {"v":[{"p":"content","o":"APPEND","v":"[reference:4]"},{"p":"references","v":[{"id":12,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} - -data: {"v":"空气"} - -data: {"v":"质量和"} - -data: {"v":"紫外线"} - -data: {"v":"都比较"} - -data: {"v":"友好"} - -data: {"v":"("} - -data: {"v":"优"} - -data: {"v":"/"} - -data: {"v":"最"} - -data: {"v":"弱"} - -data: {"v":"),"} - -data: {"v":"日落"} - -data: {"v":"时间"} - -data: {"v":"大约是"} - -data: {"v":"18"} - -data: {"v":":"} - -data: {"v":"42"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:5]"},{"p":"references","v":[{"id":7,"type":"TOOL_SEARCH"}]}]} - -data: {"v":[{"p":"content","o":"APPEND","v":"[reference:6]"},{"p":"references","v":[{"id":10,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} - -data: {"v":"###"} - -data: {"v":" 🌧"} - -data: {"v":"️"} - -data: {"v":" "} - -data: {"v":"未来"} - -data: {"v":"天气"} - -data: {"v":"趋势"} - -data: {"v":"\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"雨"} - -data: {"v":"势"} - -data: {"v":"持续"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"预计"} - -data: {"v":"未来"} - -data: {"v":"几天"} - -data: {"v":"降雨"} - -data: {"v":"会比较"} - -data: {"v":"频繁"} - -data: {"v":"。"} - -data: {"v":"周六"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"4"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"是大"} - -data: {"v":"雨"} - -data: {"v":"转"} - -data: {"v":"雷"} - -data: {"v":"阵"} - -data: {"v":"雨"} - -data: {"v":","} - -data: {"v":"周日"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"5"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"也"} - -data: {"v":"基本"} - -data: {"v":"是"} - -data: {"v":"雨天"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:7]"},{"p":"references","v":[{"id":12,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"防范"} - -data: {"v":"强"} - -data: {"v":"对流"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"特别"} - -data: {"v":"要"} - -data: {"v":"留意"} - -data: {"v":"的是"} - -data: {"v":","} - -data: {"v":"周六"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"4"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"和"} - -data: {"v":"周日"} - -data: {"v":"("} - -data: {"v":"4"} - -data: {"v":"月"} - -data: {"v":"5"} - -data: {"v":"日"} - -data: {"v":")"} - -data: {"v":"可能会有"} - -data: {"v":"雷"} - -data: {"v":"雨"} - -data: {"v":"大风"} - -data: {"v":"、"} - -data: {"v":"短"} - -data: {"v":"时"} - -data: {"v":"强"} - -data: {"v":"降水"} - -data: {"v":"等"} - -data: {"v":"强"} - -data: {"v":"对流"} - -data: {"v":"天气"} - -data: {"v":","} - -data: {"v":"请大家"} - -data: {"v":"提前"} - -data: {"v":"做好"} - -data: {"v":"防范"} - -data: {"v":"准备"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:8]"},{"p":"references","v":[{"id":11,"type":"TOOL_OPEN"}]}]} - -data: {"v":[{"p":"content","o":"APPEND","v":"[reference:9]"},{"p":"references","v":[{"id":22,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} - -data: {"v":"###"} - -data: {"v":" 💡"} - -data: {"v":" "} - -data: {"v":"出行"} - -data: {"v":"与"} - -data: {"v":"生活"} - -data: {"v":"建议"} - -data: {"v":"\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"出行"} - -data: {"v":"建议"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"出门"} - -data: {"v":"请"} - -data: {"v":"带"} - -data: {"v":"好"} - -data: {"v":"雨"} - -data: {"v":"具"} - -data: {"v":","} - -data: {"v":"并"} - -data: {"v":"留心"} - -data: {"v":"临近"} - -data: {"v":"的"} - -data: {"v":"预警"} - -data: {"v":"信息"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:10]"},{"p":"references","v":[{"id":22,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"居家"} - -data: {"v":"提醒"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"天气"} - -data: {"v":"湿热"} - -data: {"v":","} - -data: {"v":"衣物"} - -data: {"v":"和"} - -data: {"v":"家居"} - -data: {"v":"要注意"} - -data: {"v":"防"} - -data: {"v":"潮"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:11]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"健康"} - -data: {"v":"防护"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"虽然"} - -data: {"v":"紫外线"} - -data: {"v":"不强"} - -data: {"v":","} - -data: {"v":"但"} - -data: {"v":"湿度"} - -data: {"v":"大"} - -data: {"v":"、"} - -data: {"v":"温差"} - -data: {"v":"也"} - -data: {"v":"较大"} - -data: {"v":","} - -data: {"v":"要"} - -data: {"v":"当"} - -data: {"v":"心"} - -data: {"v":"别"} - -data: {"v":"感冒"} - -data: {"v":"了"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:12]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} - -data: {"v":"*"} - -data: {"v":" "} - -data: {"v":" **"} - -data: {"v":"穿衣"} - -data: {"v":"指南"} - -data: {"v":"**"} - -data: {"v":":"} - -data: {"v":"建议"} - -data: {"v":"穿着"} - -data: {"v":"长"} - -data: {"v":"袖"} - -data: {"v":"衬衫"} - -data: {"v":"或"} - -data: {"v":"单"} - -data: {"v":"裤"} - -data: {"v":","} - -data: {"v":"体"} - -data: {"v":"弱"} - -data: {"v":"怕"} - -data: {"v":"凉"} - -data: {"v":"的朋友"} - -data: {"v":"可以"} - -data: {"v":"适当"} - -data: {"v":"加"} - -data: {"v":"一件"} - -data: {"v":"薄"} - -data: {"v":"外套"} - -data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:13]"},{"p":"references","v":[{"id":17,"type":"TOOL_OPEN"}]}]} - -data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} - -data: {"p":"response","o":"BATCH","v":[{"p":"accumulated_token_usage","v":279},{"p":"quasi_status","v":"FINISHED"}]} - -data: {"p":"response/status","o":"SET","v":"FINISHED"} - -event: finish -data: {} - -event: update_session -data: {"updated_at":1775179749.441216} - diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/captures.json b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/captures.json new file mode 100644 index 0000000..3de3c97 --- /dev/null +++ b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/captures.json @@ -0,0 +1 @@ +{"detail":"invalid credentials"} diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/meta.json b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/meta.json new file mode 100644 index 0000000..95848d7 --- /dev/null +++ b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/meta.json @@ -0,0 +1,24 @@ +{ + "sample_id": "guangzhou-weather-reasoner-search-20260404", + "captured_at_utc": "2026-04-04T16:01:27Z", + "request": { + "model": "deepseek-reasoner-search", + "stream": true, + "messages": [ + { + "role": "user", + "content": "广州天气" + } + ] + }, + "capture": { + "label": "deepseek_completion", + "url": "https://chat.deepseek.com/api/v0/chat/completion", + "status_code": 200, + "response_bytes": 37651, + "contains_reference_markers": true, + "reference_marker_count": 13, + "contains_finished_token": true, + "finished_token_count": 19 + } +} \ No newline at end of file diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/openai.stream.sse b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/openai.stream.sse new file mode 100644 index 0000000..c7ece56 --- /dev/null +++ b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/openai.stream.sse @@ -0,0 +1,790 @@ +data: {"choices":[{"delta":{"reasoning_content":"用户","role":"assistant"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"想"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"了解"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"广州"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"情况"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"今天是"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"202"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"6"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"年"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我需要"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"提供"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"广州"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"当前的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以及"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"未来的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气预报"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"为了"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"全面"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我需要"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"同时"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"进行"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"多项"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"涵盖"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"不同"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"时间"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"范围和"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"可能的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息来源"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"reasoning_content":"搜索"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"结果显示"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"了一些"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"相关的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"页面"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"为了"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"全面"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"获取"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我需要"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"同时"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"打开"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"页面"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"搜索结果"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"提供了"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"广州"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"的"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"当前"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"和"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"未来"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"预报"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"我将"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"整合"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"这些"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"来"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"回答"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"用户"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"的问题"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"回答"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"中"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"会"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"引用"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"多个"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"来源"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"包括"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"nm"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"reasoning_content":"c"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".cn"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"weather"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".com"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".cn"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"yz"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"q"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"xj"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".com"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"t"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"ian"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"qi"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".com"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"e"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"ast"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"day"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":".com"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"等"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"回答"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"将"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"涵盖"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"当前"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"未来"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"几天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"预报"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"、"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"预警"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"信息"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"以及"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"相关"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"提示"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"reasoning_content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"广州"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"今天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"不稳定"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"区"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"有"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"暴雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"强"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"对流"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"预警"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:0]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:1]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"未来"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一周"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"以"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"阴"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"为主"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"特别是"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"明"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"两天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"5"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"-"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"6"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"势"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"较大"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"今日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"到大"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"转"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"20"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"26"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃,"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"微风"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"相对"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"湿度"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"约"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"88"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"%-"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"96"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"%"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:2]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:3]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:4]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:5]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"明天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"5"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大到"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"暴雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"转"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雷"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"阵"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"20"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"25"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:6]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:7]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:8]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:9]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"后天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"6"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"中"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"转"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"23"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"30"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:10]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:11]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:12]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"周二"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"7"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雷"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"阵"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"转"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"24"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +: keep-alive + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"29"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:13]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:14]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:15]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"周三"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"8"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"24"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"30"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:16]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:17]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:18]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"周四"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"9"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"23"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"31"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:19]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:20]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:21]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"*"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"周五"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"("},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"4"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"月"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"10"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"日"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":")"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"多云"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"24"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" ~"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"31"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"℃"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:22]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:23]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:24]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。\n\n"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"⚠"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"️"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":" **"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"特别"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"提醒"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"**"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":":"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"未来"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"三天"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"天气"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"非常"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"不稳定"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"出门"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"一定要注意"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"防范"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"强"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"降雨"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"和"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"雷电"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"大风"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":","},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"注意"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"安全"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:25]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:26]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:27]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"[reference:28]"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{"content":"。"},"index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk"} + +data: {"choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1775318365,"id":"d9f968ed-f385-4bc5-a996-690bccd5e461","model":"deepseek-reasoner-search","object":"chat.completion.chunk","usage":{"completion_tokens":280,"completion_tokens_details":{"reasoning_tokens":173},"prompt_tokens":6,"total_tokens":286}} + +data: [DONE] + diff --git a/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/upstream.stream.sse b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/upstream.stream.sse new file mode 100644 index 0000000..a1a8187 --- /dev/null +++ b/tests/raw_stream_samples/guangzhou-weather-reasoner-search-20260404/upstream.stream.sse @@ -0,0 +1,686 @@ +event: ready +data: {"request_message_id":1,"response_message_id":2,"model_type":"default"} + +event: update_session +data: {"updated_at":1775318472.209828} + +data: {"v":{"response":{"message_id":2,"parent_id":1,"model":"","role":"ASSISTANT","thinking_enabled":true,"ban_edit":false,"ban_regenerate":false,"status":"WIP","incomplete_message":null,"accumulated_token_usage":0,"files":[],"feedback":null,"inserted_at":1775318472.20079,"search_enabled":true,"fragments":[{"id":2,"type":"THINK","content":"用户","elapsed_secs":null,"references":[],"stage_id":1}],"conversation_mode":"DEEP_SEARCH","has_pending_fragment":false,"auto_continue":false,"search_triggered":true}}} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"想知道"} + +data: {"v":"广州"} + +data: {"v":"的"} + +data: {"v":"天气"} + +data: {"v":"。"} + +data: {"v":"今天是"} + +data: {"v":"202"} + +data: {"v":"6"} + +data: {"v":"年"} + +data: {"v":"4"} + +data: {"v":"月"} + +data: {"v":"5"} + +data: {"v":"日"} + +data: {"v":"。"} + +data: {"v":"我需要"} + +data: {"v":"提供"} + +data: {"v":"广州"} + +data: {"v":"当前的"} + +data: {"v":"天气"} + +data: {"v":"情况"} + +data: {"v":"以及"} + +data: {"v":"未来"} + +data: {"v":"几"} + +data: {"v":"天的"} + +data: {"v":"预报"} + +data: {"v":"。"} + +data: {"v":"为了"} + +data: {"v":"全面"} + +data: {"v":"获取"} + +data: {"v":"信息"} + +data: {"v":","} + +data: {"v":"我将"} + +data: {"v":"同时"} + +data: {"v":"进行"} + +data: {"v":"多项"} + +data: {"v":"搜索"} + +data: {"v":","} + +data: {"v":"以"} + +data: {"v":"覆盖"} + +data: {"v":"不同"} + +data: {"v":"可能的"} + +data: {"v":"天气"} + +data: {"v":"信息来源"} + +data: {"v":"和"} + +data: {"v":"查询"} + +data: {"v":"方式"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":1.426722585} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":3,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026-04-05"}],"results":[],"stage_id":1},{"id":4,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气预报 2026年4月"}],"results":[],"stage_id":1},{"id":5,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026-04-05 每小时"}],"results":[],"stage_id":1},{"id":6,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 空气质量 2026-04-05"}],"results":[],"stage_id":1},{"id":7,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"2026-04-05 广州 天气 预报"}],"results":[],"stage_id":1},{"id":8,"type":"TOOL_SEARCH","status":"WIP","content":null,"queries":[{"query":"广州 天气 2026年4月5日"}],"results":[],"stage_id":1}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-5/results","o":"SET","v":[{"url":"https://news.qq.com/rain/a/20260401A06GQ200?suid=&media_id=","title":"4月广州仍有冷空气“搞事情”,3次弱冷空气+4次降水轮番登场","snippet":"预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨,局部暴雨)、4月17日—21日(大雨,局部暴雨)、4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/qq.com","site_name":"QQ News","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004262788_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.10.1775093958609Tqfgwxd_324","title":"最新预测:广州4月预计有3次冷空气、4次降水过程","snippet":"根据气象部门预测,4月广州将遭遇3次冷空气过程。另外,4月将有4次降水过程,预计当月广州降雨量将比常年偏少1~2成 ... 预计4月广州将有4次降水过程,大致出现在4月3日—6日(中到大雨)、4月12日—14日(中到大雨,局部暴雨)、4月17日—21日(大雨 ... 4月25日—28日(大雨到暴雨)。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 周六 20℃ 多云 无持续风向 微风 04/05 周日 暴雨 ... 04/06 周一 ... 04/07 周二 雷阵雨","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.163.com/dy/article/KPG99VPJ0530JPVV.html","title":"下一轮强降水时间定了!广州天气,即将反转","snippet":"广州市气象台预计,4月2日广州有雷阵雨。4月3日—4日有中到大雨局部暴雨,并伴有短时强降水、8~10级局部11~12级短时大风、冰雹等强对流天气。4月5日—6日仍有明显降水伴强对流过程。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},{"url":"https://news.qq.com/rain/a/20260401A06VNB00?suid=&media_id=","title":"4月广州或有4次集中降水过程,6月中下旬或迎“初台”","snippet":"根据《广州市2026年4月气候趋势预测》,预计4月广州各区月平均气温22.6~25.0°C,全市平均气温23.1~23.6°C,较近30年(1996-2025年,下同)同期(22.6°C)偏高0.5~1.0°C...","cite_index":null,"published_at":1774972800.0,"site_icon":"https://cdn.deepseek.com/site-icons/qq.com","site_name":"QQ News","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 ... 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃ 南风转微风 3-4级转<3级","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://daohuangpuqu.gz-cmc.com/pages/2026/04/04/69ada0e552a245e5b0859954b7ab4cf3.html","title":"广东,要下暴雨、大暴雨了!","snippet":"广州市气象台预计,4月4日广州有中到大雨局部暴雨,4月5日有大到暴雨,并伴有雷电、短时强降水、8~10级短时大风、局地冰雹等强对流天气,4月6日白天起降水逐渐减弱。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz-cmc.com","site_name":"广州日报新花城","query_indexes":[0]},{"url":"https://tianqi.moji.com/forecast15/china/guangdong/guangzhou","title":"【广州市天气预报15天】_广州市天气预报15天查询 - 预报查询","snippet":"15天预报 ... - 周五 雷阵雨 28° 20° - 周六 中雨 ... - 周日 暴雨 25° 20° - 周一 中雨 30° 23° - 周二 雷阵雨","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/moji.com","site_name":"墨迹天气","query_indexes":[0]},{"url":"https://news.dayoo.com/guangzhou/202604/04/139995_54944458.htm","title":"广州6日雨势减弱,随后迎来一段平稳天气","snippet":"广州市气象台预计,4月5日有大到暴雨,并伴有雷电、短时强降水、6~8级短时大风等强对流天气,4月6日雨势减弱,4月7日转以多云间阴天为主。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/dayoo.com","site_name":"大洋网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-5/status","v":"FINISHED"} + +data: {"p":"response/fragments/-3/results","v":[{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/air-quality-index/102255","title":"广州, 广东省, 中国空气质量指数 | AccuWeather","snippet":"空气质量量表 ... 空气质量对大多数人来说是可接受的。然而 ... 广州的当前空气质量 极好 危险 极好 有利 差 不健康 很不健康 危险 ## 24小时空气质量预报","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]},{"url":"http://sthjj.gz.gov.cn/zwgk/hjgb/","title":"广州市生态环境局网站","snippet":"2026年1月广州市环境空气质量状况 2026-02-24 广州市白云区2024年度生态环境统计公报 2026-01-27 2025年12月广州市环境空气质量状况 2026-01-22 广州市2024年排放源统计公报","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/gz.gov.cn","site_name":"广州市生态环境局","query_indexes":[0]},{"url":"http://cenews.com.cn/news.html?aid=1770007","title":"从“广州蓝”到“全运蓝”,广州以治气硬功守牢生态颜值——中国环境网","snippet":"2025年,广州AQI达标率达93.4%,连续3年超九成;PM2.5平均浓度降至21.5微克/立方米,在国家中心城市中保持最优。尤其在十五运会举办期间...","cite_index":null,"published_at":1771948800.0,"site_icon":"https://cdn.deepseek.com/site-icons/cenews.com.cn","site_name":"中国环境网","query_indexes":[0]},{"url":"http://www.zx24.com/aqi/guangdong-guangzhou.html","title":"广州空气污染:实时空气质量指数(AQI)","snippet":"空气质量指数 | 污染级别 | 对健康的影响 | 建议采取措施 ---|---|---|--- 0-50 | 优 | 空气质量令人满意,基本无空气污染,对健康没有危害 | 各类人群可多参加户外活动,多呼吸一下清新的空气。","cite_index":null,"published_at":1774713600.0,"site_icon":"https://cdn.deepseek.com/site-icons/zx24.com","site_name":"zx24.com","query_indexes":[0]},{"url":"http://vlife.src.weather.com.cn/maqi/101280101.shtml","title":"广州空气质量指数AQI--中国天气网","snippet":"优 良 轻度 中度 重度 严重 PM2.5 PM10 CO NO2 SO2 O3 单位:μg/m3(CO为mg/m3)","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"http://www.yuexiu.gov.cn/yxdt/rdzt/zdlyxxgk/hjbh/kqhjxx/","title":"广州市越秀区人民政府门户网站","snippet":"2026年1月广州市环境空气质量状况 2026-03-04 2025年12月广州市环境空气质量状况 2026-01-27 2025年11月广州市环境空气质量状况 2025-12-16 2025年10月广州市环境空气质量状况","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/yuexiu.gov.cn","site_name":"广州市越秀区人民政府","query_indexes":[0]},{"url":"http://pc.weathercn.com/weather/102255/?partner=20000010%d0%93%d2%93%d0%96%e2%80%99%d0%93%d3%ae%d0%92%d0%88%d0%93%d2%93%d0%b2%d2%96%d2%a1%d0%93%d1%9e%d0%b2%d2%96%d2%a1%d0%92%c2%ac%d0%93%d2%93%d0%b2%d2%96%d2%a1%d0%93%d3%ae%d0%bf%d2%9d%d2%aa10.hfaw&p_source=&p_type=jump&areatype=","title":"广州当前天气","snippet":"广州空气质量 39 优 0 50 100 150 200 300 500 空气很棒,快出门呼吸新鲜空气吧。 适宜外出","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/weathercn.com","site_name":"华风爱科气象科技","query_indexes":[0]},{"url":"https://weather.com/zh-CN/forecast/air-quality/l/37dd90a3a17d6f9942ef56a03373eaa185be2b88164dc31754a305d17d7646c9","title":"越秀区, 广州市, 广东省 空气质量预报 - The Weather Channel | weather.com","snippet":"今日空气质量- 越秀区, 广州市, 广东省 优秀 无健康影响。 主要污染物: PM2.5 (2.5 微米以下细颗粒物) 等级 优秀","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com","site_name":"The Weather Channel","query_indexes":[0]},{"url":"https://www.aqi.in/in/dashboard/china/guangdong-province/guangzhou/baiyun","title":"Baiyun Air Quality Index (AQI) : Real-Time Air Pollution","snippet":"The current real-time AQI (US) level in Baiyun is 58 (Moderate) due to recent rainfall by 0.01mm/hr. This was last updated 2026-03-05 08:01 (Local Time).","cite_index":null,"published_at":1772640000.0,"site_icon":"https://cdn.deepseek.com/site-icons/aqi.in","site_name":"AQI.in","query_indexes":[0]},{"url":"https://www.zq12369.com/environment?city=%e5%b9%bf%e5%b7%9e&tab=city","title":"真气网-关注环境空气质量|广州PM2.5查询|PM2.5实时查询|PM2.5雾霾地图|空气质量地图指数AQI和PM2.5预报查询","snippet":"AQI范围: 40~70 ### 首要污染物: O3,PM2.5 ### 出行建议: 极少数异常敏感人群应减少户外活动 ... AQI范围: 60~90","cite_index":null,"published_at":1774886400.0,"site_icon":"https://cdn.deepseek.com/site-icons/zq12369.com","site_name":"真气网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-3/status","v":"FINISHED"} + +data: {"p":"response/fragments/-4/results","v":[{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 ... 04/05 周日 暴雨 ... 04/06 周一 中雨 ... 04/07 周二 雷阵雨 ... 04/08 周三","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"25℃/20℃ <3级 # 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二) 雷阵雨转多云 29℃/24℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://windy.app/zh/forecast2/spot/7026063/%E5%B9%BF%E5%B7%9E%E5%8D%97%E9%A3%8E%E5%9C%BA","title":"广州南风场 风、浪和天气预报 — Windy.app","snippet":"Light wind – experience required (4.9 m/s) ... - Light wind – experience required (5.5 m/s) - Significant gusts forecast (11.1 m/s) - Heavy rain – dangerous conditions possible (>2 mm) ... 广州南风场, 天气预报及实时风图","cite_index":null,"published_at":1774800000.0,"site_icon":"https://cdn.deepseek.com/site-icons/windy.app","site_name":"WINDY.APP","query_indexes":[0]},{"url":"https://www.ip.cn/tianqi/guangdong/guangzhou/15day.html","title":"广州15天天气","snippet":"2026-04-05 天气 中雨转雷阵雨 21℃ ~ 24℃ 微风 <3级 日出06:16 日落18:43","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/ip.cn","site_name":"IP.cn","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.fjndqx.com/china/guangdong-guangzhou/15tian.html","title":"15天广州天气预报","snippet":"2026-04-05 (星期日) 阴转小雨 21℃ ~ 27℃ 微风 <3级 | 日出06:16 日落18:43","cite_index":null,"published_at":1774800000.0,"site_icon":"https://cdn.deepseek.com/site-icons/fjndqx.com","site_name":"Fjndqx","query_indexes":[0]},{"url":"https://static.nfnews.com/content/202604/02/c12300320.html?colID=14&firstColID=59&enterColumnId=14","title":"下一轮强降水时间定了!广州天气,即将反转__南方+_南方plus","snippet":"周四起广州天气将再转不稳定 周五起 新一轮强降水天气过程将影响广州 并伴有短时强降水 8~10级局部11~12级短时大风","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/nfnews.com","site_name":"nfnews.com","query_indexes":[0]},{"url":"https://finance.sina.com.cn/wm/2026-04-02/doc-inhtakui4453746.shtml?cref=cj","title":"下一轮强降水时间定了!广州天气,即将反转","snippet":"周五起 新一轮强降水天气过程将影响广州 并伴有短时强降水 8~10级局部11~12级短时大风 局地小冰雹等强对流天气","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/sina.com.cn","site_name":"新浪财经","query_indexes":[0]},{"url":"https://static.nfnews.com/content/202604/02/c12302805.html","title":"雷雨大风+冰雹又要来了!清明假期广州将迎强对流天气__南方+_南方plus","snippet":"4月3日—4日,受高空槽、低层南风和切变线影响,广州有中到大雨局部暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地小冰雹等强对流天气。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/nfnews.com","site_name":"nfnews.com","query_indexes":[0]}]} + +data: {"p":"response/fragments/-4/status","v":"FINISHED"} + +data: {"p":"response/fragments/-2/results","v":[{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"5日(明天) ... 25℃/20℃ <3级 # 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二) 雷阵雨转多云 29℃/24℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 ... 04/05 周日 暴雨 ... 04/06 周一 中雨 ... 04/07 周二 雷阵雨 ... 04/08 周三","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://daohuangpuqu.gz-cmc.com/pages/2026/04/04/69ada0e552a245e5b0859954b7ab4cf3.html","title":"广东,要下暴雨、大暴雨了!","snippet":"广州市气象台预计,4月4日广州有中到大雨局部暴雨,4月5日有大到暴雨,并伴有雷电、短时强降水、8~10级短时大风、局地冰雹等强对流天气,4月6日白天起降水逐渐减弱。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz-cmc.com","site_name":"广州日报新花城","query_indexes":[0]},{"url":"https://news.dayoo.com/guangzhou/202604/04/139995_54944458.htm","title":"广州6日雨势减弱,随后迎来一段平稳天气","snippet":"广州市气象台预计,4月5日有大到暴雨,并伴有雷电、短时强降水、6~8级短时大风等强对流天气,4月6日雨势减弱,4月7日转以多云间阴天为主。 广东具体预报...","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/dayoo.com","site_name":"大洋网","query_indexes":[0]},{"url":"https://www.gz.gov.cn/zt/fxbxaqdx/gg/content/post_10754327.html","title":"清明假期有大到暴雨","snippet":"4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz.gov.cn","site_name":"广州市人民政府门户网站","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://guangzhoubaiyun.gz-cmc.com/pages/2026/04/02/e76e4847f66548089ac19908a65c473b.html","title":"清明假期,又开启“倒水”模式","snippet":"广州市气象台预计,4月2日广州有雷阵雨。4月3日—4日有中到大雨局部暴雨,并伴有短时强降水、8~10级局部11~12级短时大风、冰雹等强对流天气。4月5日—6日仍有明显降水伴强对流过程。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz-cmc.com","site_name":"广州日报新花城","query_indexes":[0]},{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/weather-forecast/102255?type=locality","title":"广州, 广东省, 中国三天天气预报 | AccuWeather","snippet":"上午局部地区有雷雨;部分晴 ... 大部分多云,潮湿,有雷雨 大部分多云,潮湿,有阵雨或雷雨 ... 大部分多云,潮湿,有零星降雨和雷雨","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]}]} + +data: {"p":"response/fragments/-2/status","v":"FINISHED"} + +data: {"p":"response/fragments/-1/results","v":[{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.gz.gov.cn/zt/fxbxaqdx/gg/content/post_10754327.html","title":"清明假期有大到暴雨","snippet":"4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz.gov.cn","site_name":"广州市人民政府门户网站","query_indexes":[0]},{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 周六 20℃ ... 04/05 周日 暴雨 无持续风向 微风 25℃ 22℃ ... 04/06 周一 中雨 ... 04/07 周二","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"5日(明天) 暴雨转雷阵雨 25℃/20℃ <3级 # 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二)","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://news.dayoo.com/guangzhou/202604/04/139995_54944458.htm","title":"广州6日雨势减弱,随后迎来一段平稳天气","snippet":"4月5日,粤北、粤东和珠三角市县有大雨到暴雨局部大暴雨,其余市县有(雷)阵雨;部分市县雷雨时伴有8~9级(局地10级)短时大风、短时强降水和局地小冰雹。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/dayoo.com","site_name":"大洋网","query_indexes":[0]},{"url":"https://www.163.com/dy/article/KPLG595F0530JPVV.html","title":"广东,要下暴雨、大暴雨了!","snippet":"广州市气象台预计,4月4日广州有中到大雨局部暴雨,4月5日有大到暴雨,并伴有雷电、短时强降水、8~10级短时大风、局地冰雹等强对流天气,4月6日白天起降水逐渐减弱。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},{"url":"http://gd.cma.gov.cn/","title":"广东省气象局","snippet":"19℃/10℃ 微风 03日(明日) 多云转晴 22℃/6℃ 3~4级 04日(后日) 晴转多云 19℃/8℃ 3~4级 05日(周日) 晴转多云 19℃/6℃","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/cma.gov.cn","site_name":"广东省气象局","query_indexes":[0]},{"url":"https://news.southcn.com/node_de9aedeec1/2a08783352.shtml","title":"今日降雨集中在广东南部,清明假期全省多地将遭遇强对流天气","snippet":"广州市区,4日,阴天到多云,有中到大雨局部暴雨,气温在20℃—25℃;5日,阴天,有大到暴雨,气温在21℃—25℃;6日,阴天,有中雨,气温在22℃—28℃。 气象部门提醒,广东已进入强对流和强降水多发季节,清明祭扫、外出踏青和高空作业需注意防范局地雷电、冰雹及短时大风引发的树木、厂房工棚、临时构筑物、户外广告牌倒塌等风险。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/southcn.com","site_name":"南方网","query_indexes":[0]}]} + +data: {"p":"response/fragments/-1/status","v":"FINISHED"} + +data: {"p":"response/fragments/-6/results","v":[{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 ... 04/05 周日 暴雨 ... 04/06 周一 中雨 ... 04/07 周二 雷阵雨 ... 04/08 周三","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"5日(明天) ... 25℃/20℃ ... 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二) 雷阵雨转多云 29℃/24℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},{"url":"https://www.sohu.com/a/1004726143_162758?scm=10001.325_13-325_13.0.0-0-0-0-0.5_1334&spm=smpc.channel_248.block3_308_NDdFbm_1_fd.1.1775175954306LbCjz6t_324","title":"大暴雨、12级大风、冰雹!广州未来7天都“泡汤”","snippet":"广州市气象台预计,4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/sohu.com","site_name":"Sohu","query_indexes":[0]},{"url":"https://www.gz.gov.cn/zt/fxbxaqdx/gg/content/post_10754327.html","title":"清明假期有大到暴雨","snippet":"4月3日—4日广州有中到大雨局部暴雨,4月5日—6日有大到暴雨,并伴有雷电、短时强降水、8~10级局部11~12级短时大风、局地冰雹等强对流天气。4月7日起降水减弱。","cite_index":null,"published_at":1775145600.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz.gov.cn","site_name":"广州市人民政府门户网站","query_indexes":[0]},{"url":"https://www.163.com/dy/article/KPLG595F0530JPVV.html","title":"广东,要下暴雨、大暴雨了!","snippet":"广州市气象台预计,4月4日广州有中到大雨局部暴雨,4月5日有大到暴雨,并伴有雷电、短时强降水、8~10级短时大风、局地冰雹等强对流天气,4月6日白天起降水逐渐减弱。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/163.com","site_name":"网易","query_indexes":[0]},{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},{"url":"https://news.dayoo.com/guangzhou/202604/04/139995_54944458.htm","title":"广州6日雨势减弱,随后迎来一段平稳天气","snippet":"广州市气象台预计,4月5日有大到暴雨,并伴有雷电、短时强降水、6~8级短时大风等强对流天气,4月6日雨势减弱,4月7日转以多云间阴天为主。 广东具体预报...","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/dayoo.com","site_name":"大洋网","query_indexes":[0]},{"url":"https://news.southcn.com/node_de9aedeec1/2a08783352.shtml","title":"今日降雨集中在广东南部,清明假期全省多地将遭遇强对流天气","snippet":"广州市区,4日,阴天到多云,有中到大雨局部暴雨,气温在20℃—25℃;5日,阴天,有大到暴雨,气温在21℃—25℃;6日,阴天,有中雨,气温在22℃—28℃。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/southcn.com","site_name":"南方网","query_indexes":[0]},{"url":"https://guangzhoubaiyun.gz-cmc.com/pages/2026/04/02/e76e4847f66548089ac19908a65c473b.html","title":"清明假期,又开启“倒水”模式","snippet":"4月3日—4日有中到大雨局部暴雨,并伴有短时强降水、8~10级局部11~12级短时大风、冰雹等强对流天气。4月5日—6日仍有明显降水伴强对流过程。","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/gz-cmc.com","site_name":"广州日报新花城","query_indexes":[0]}]} + +data: {"p":"response/fragments/-6/status","v":"FINISHED"} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":9,"type":"THINK","content":"搜索","elapsed_secs":null,"references":[],"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"结果显示"} + +data: {"v":"了一些"} + +data: {"v":"相关"} + +data: {"v":"页面"} + +data: {"v":"。"} + +data: {"v":"为了"} + +data: {"v":"全面"} + +data: {"v":"获取"} + +data: {"v":"信息"} + +data: {"v":","} + +data: {"v":"我将"} + +data: {"v":"同时"} + +data: {"v":"打开"} + +data: {"v":"这些"} + +data: {"v":"页面"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":0.682885751} + +data: {"p":"response/has_pending_fragment","v":true} + +: + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":10,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.nmc.cn/publish/forecast/AGD/guangzhou.html","title":"广州-天气预报","snippet":"04/04 ... 04/05 周日 暴雨 ... 04/06 周一 中雨 ... 04/07 周二 雷阵雨 ... 04/08 周三","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/nmc.cn","site_name":"中央气象台","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":11,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"5日(明天) ... 25℃/20℃ ... 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二) 雷阵雨转多云 29℃/24℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":12,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":13,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 ... 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃ 南风转微风 3-4级转<3级","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":4,"type":"TOOL_SEARCH"},"stage_id":2},{"id":14,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.ip.cn/tianqi/guangdong/guangzhou/15day.html","title":"广州15天天气","snippet":"2026-04-05 天气 中雨转雷阵雨 21℃ ~ 24℃ 微风 <3级 日出06:16 日落18:43","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/ip.cn","site_name":"IP.cn","query_indexes":[0]},"reference":{"id":5,"type":"TOOL_SEARCH"},"stage_id":2},{"id":15,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/weather-forecast/102255?type=locality","title":"广州, 广东省, 中国三天天气预报 | AccuWeather","snippet":"上午局部地区有雷雨;部分晴 ... 大部分多云,潮湿,有雷雨 大部分多云,潮湿,有阵雨或雷雨 ... 大部分多云,潮湿,有零星降雨和雷雨","cite_index":null,"published_at":1775059200.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]},"reference":{"id":7,"type":"TOOL_SEARCH"},"stage_id":2},{"id":16,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.weather.com.cn/weather/101280101.shtml","title":"广州天气预报,广州7天天气预报,广州15天天气预报,广州天气查询","snippet":"5日(明天) 暴雨转雷阵雨 25℃/20℃ <3级 # 6日(后天) 中雨转多云 30℃/23℃ 3-4级转<3级 # 7日(周二)","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/weather.com.cn","site_name":"天气网","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":17,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.yzqxj.com/guonei/guangdong-guangzhou/7day.html","title":"广州天气预报7天天气","snippet":"2026-04-05 (星期日) 大雨转雷阵雨 21℃ ~ 25℃ 微风 <3级 | 日出06:16 日落18:43 2026-04-06 (星期一) 雷阵雨转多云 24℃ ~ 28℃","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/yzqxj.com","site_name":"Yzqxj","query_indexes":[0]},"reference":{"id":8,"type":"TOOL_SEARCH"},"stage_id":2},{"id":18,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://news.southcn.com/node_de9aedeec1/2a08783352.shtml","title":"今日降雨集中在广东南部,清明假期全省多地将遭遇强对流天气","snippet":"广州市区,4日,阴天到多云,有中到大雨局部暴雨,气温在20℃—25℃;5日,阴天,有大到暴雨,气温在21℃—25℃;6日,阴天,有中雨,气温在22℃—28℃。","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/southcn.com","site_name":"南方网","query_indexes":[0]},"reference":{"id":3,"type":"TOOL_SEARCH"},"stage_id":2},{"id":19,"type":"TOOL_OPEN","status":"WIP","result":{"url":"https://www.accuweather.com/zh/cn/guangzhou/102255/air-quality-index/102255","title":"广州, 广东省, 中国空气质量指数 | AccuWeather","snippet":"空气质量量表 ... 空气质量对大多数人来说是可接受的。然而 ... 广州的当前空气质量 极好 危险 极好 有利 差 不健康 很不健康 危险 ## 24小时空气质量预报","cite_index":null,"published_at":1775232000.0,"site_icon":"https://cdn.deepseek.com/site-icons/accuweather.com","site_name":"AccuWeather","query_indexes":[0]},"reference":{"id":6,"type":"TOOL_SEARCH"},"stage_id":2},{"id":20,"type":"TOOL_OPEN","status":"WIP","result":{"url":"http://pc.weathercn.com/weather/102255/?partner=20000010%d0%93%d2%93%d0%96%e2%80%99%d0%93%d3%ae%d0%92%d0%88%d0%93%d2%93%d0%b2%d2%96%d2%a1%d0%93%d1%9e%d0%b2%d2%96%d2%a1%d0%92%c2%ac%d0%93%d2%93%d0%b2%d2%96%d2%a1%d0%93%d3%ae%d0%bf%d2%9d%d2%aa10.hfaw&p_source=&p_type=jump&areatype=","title":"广州当前天气","snippet":"广州空气质量 39 优 0 50 100 150 200 300 500 空气很棒,快出门呼吸新鲜空气吧。 适宜外出","cite_index":null,"published_at":null,"site_icon":"https://cdn.deepseek.com/site-icons/weathercn.com","site_name":"华风爱科气象科技","query_indexes":[0]},"reference":{"id":6,"type":"TOOL_SEARCH"},"stage_id":2}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-7/status","o":"SET","v":"FINISHED"} + +data: {"p":"response/fragments/-6/status","v":"FINISHED"} + +data: {"p":"response/fragments/-3/status","v":"FINISHED"} + +data: {"p":"response/fragments/-11/status","v":"FINISHED"} + +data: {"p":"response/fragments/-10/status","v":"FINISHED"} + +data: {"p":"response/fragments/-5/status","v":"FINISHED"} + +data: {"p":"response/fragments/-4/status","v":"FINISHED"} + +data: {"p":"response/fragments/-9/status","v":"FINISHED"} + +data: {"p":"response/fragments/-8/status","v":"FINISHED"} + +data: {"p":"response/fragments/-2/status","v":"FINISHED"} + +data: {"p":"response/fragments/-1/status","v":"FINISHED"} + +data: {"p":"response/has_pending_fragment","v":true} + +data: {"p":"response","o":"BATCH","v":[{"p":"fragments","o":"APPEND","v":[{"id":21,"type":"THINK","content":"这些","elapsed_secs":null,"references":[],"stage_id":3}]},{"p":"has_pending_fragment","o":"SET","v":false}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"搜索结果"} + +data: {"v":"提供了"} + +data: {"v":"广州"} + +data: {"v":"的"} + +data: {"v":"天气"} + +data: {"v":"信息"} + +data: {"v":"。"} + +data: {"v":"我将"} + +data: {"v":"组织"} + +data: {"v":"回答"} + +data: {"v":","} + +data: {"v":"提供"} + +data: {"v":"当前"} + +data: {"v":"天气"} + +data: {"v":"、"} + +data: {"v":"未来"} + +data: {"v":"几天"} + +data: {"v":"预报"} + +data: {"v":"、"} + +data: {"v":"详细"} + +data: {"v":"天气"} + +data: {"v":"情况"} + +data: {"v":"以及"} + +data: {"v":"生活"} + +data: {"v":"建议"} + +data: {"v":"和"} + +data: {"v":"出行"} + +data: {"v":"提示"} + +data: {"v":"。"} + +data: {"p":"response/fragments/-1/elapsed_secs","o":"SET","v":0.759072346} + +data: {"p":"response/fragments","o":"APPEND","v":[{"id":22,"type":"RESPONSE","content":"广州","references":[],"stage_id":3}]} + +data: {"p":"response/fragments/-1/content","v":"今天"} + +data: {"v":"("} + +data: {"v":"4"} + +data: {"v":"月"} + +data: {"v":"5"} + +data: {"v":"日"} + +data: {"v":","} + +data: {"v":"周日"} + +data: {"v":")"} + +data: {"v":"有"} + +data: {"v":"暴雨"} + +data: {"v":","} + +data: {"v":"并"} + +data: {"v":"伴有"} + +data: {"v":"强"} + +data: {"v":"对流"} + +data: {"v":"天气"} + +data: {"v":","} + +data: {"v":"全天"} + +data: {"v":"体"} + +data: {"v":"感"} + +data: {"v":"湿"} + +data: {"v":"凉"} + +data: {"v":"。\n\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"天气"} + +data: {"v":"与"} + +data: {"v":"气温"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"阴"} + +data: {"v":"有大"} + +data: {"v":"到"} + +data: {"v":"暴雨"} + +data: {"v":","} + +data: {"v":"21"} + +data: {"v":"℃"} + +data: {"v":" ~"} + +data: {"v":" "} + +data: {"v":"25"} + +data: {"v":"℃"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:0]"},{"p":"references","o":"SET","v":[{"id":18,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:1]"},{"p":"references","v":[{"id":8,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"主要"} + +data: {"v":"降水"} + +data: {"v":"集中在"} + +data: {"v":"中午"} + +data: {"v":"至"} + +data: {"v":"傍晚"} + +data: {"v":","} + +data: {"v":"下午"} + +data: {"v":"2"} + +data: {"v":"点左右"} + +data: {"v":"雨"} + +data: {"v":"势"} + +data: {"v":"可能"} + +data: {"v":"最强"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:2]"},{"p":"references","v":[{"id":10,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"风"} + +data: {"v":"况"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"东风"} + +data: {"v":"转"} + +data: {"v":"东南"} + +data: {"v":"风"} + +data: {"v":","} + +data: {"v":"风力"} + +data: {"v":"普遍"} + +data: {"v":"在"} + +data: {"v":"3"} + +data: {"v":"级"} + +data: {"v":"以下"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:3]"},{"p":"references","v":[{"id":10,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:4]"},{"p":"references","v":[{"id":11,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"但"} + +data: {"v":"强"} + +data: {"v":"对流"} + +data: {"v":"天气"} + +data: {"v":"发生时"} + +data: {"v":","} + +data: {"v":"局部"} + +data: {"v":"可能出现"} + +data: {"v":"6"} + +data: {"v":"~"} + +data: {"v":"12"} + +data: {"v":"级的"} + +data: {"v":"短"} + +data: {"v":"时"} + +data: {"v":"大风"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:5]"},{"p":"references","v":[{"id":18,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:6]"},{"p":"references","v":[{"id":3,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n"} + +data: {"v":"*"} + +data: {"v":" "} + +data: {"v":" **"} + +data: {"v":"生活"} + +data: {"v":"建议"} + +data: {"v":"**"} + +data: {"v":":"} + +data: {"v":"**"} + +data: {"v":"暴雨"} + +data: {"v":"和"} + +data: {"v":"强"} + +data: {"v":"对流"} + +data: {"v":"天气"} + +data: {"v":","} + +data: {"v":"建议"} + +data: {"v":"减少"} + +data: {"v":"外出"} + +data: {"v":"**"} + +data: {"v":";"} + +data: {"v":"湿度"} + +data: {"v":"大体"} + +data: {"v":"感"} + +data: {"v":"凉"} + +data: {"v":","} + +data: {"v":"适合"} + +data: {"v":"穿"} + +data: {"v":"长"} + +data: {"v":"袖"} + +data: {"v":"衬衫"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:7]"},{"p":"references","v":[{"id":11,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":";"} + +data: {"v":"紫外线"} + +data: {"v":"弱"} + +data: {"v":","} + +data: {"v":"可不"} + +data: {"v":"防晒"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:8]"},{"p":"references","v":[{"id":11,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"明天"} + +data: {"v":"("} + +data: {"v":"4"} + +data: {"v":"月"} + +data: {"v":"6"} + +data: {"v":"日"} + +data: {"v":")"} + +data: {"v":"降雨"} + +data: {"v":"强度"} + +data: {"v":"会"} + +data: {"v":"减弱"} + +data: {"v":","} + +data: {"v":"转为"} + +data: {"v":"中"} + +data: {"v":"雨"} + +data: {"v":"转"} + +data: {"v":"多云"} + +data: {"v":","} + +data: {"v":"气温"} + +data: {"v":"回升"} + +data: {"v":"至"} + +data: {"v":" "} + +data: {"v":"23"} + +data: {"v":"℃"} + +data: {"v":" ~"} + +data: {"v":" "} + +data: {"v":"30"} + +data: {"v":"℃"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:9]"},{"p":"references","v":[{"id":11,"type":"TOOL_OPEN"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:10]"},{"p":"references","v":[{"id":18,"type":"TOOL_OPEN"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。"} + +data: {"v":"后天"} + +data: {"v":"起"} + +data: {"v":"天气"} + +data: {"v":"将"} + +data: {"v":"逐渐"} + +data: {"v":"稳定"} + +data: {"v":","} + +data: {"v":"以"} + +data: {"v":"多云"} + +data: {"v":"和"} + +data: {"v":"雷"} + +data: {"v":"阵"} + +data: {"v":"雨"} + +data: {"v":"为主"} + +data: {"p":"response/fragments/-1","o":"BATCH","v":[{"p":"content","o":"APPEND","v":"[reference:11]"},{"p":"references","v":[{"id":3,"type":"TOOL_SEARCH"}]}]} + +data: {"v":[{"p":"content","o":"APPEND","v":"[reference:12]"},{"p":"references","v":[{"id":4,"type":"TOOL_SEARCH"}]}]} + +data: {"p":"response/fragments/-1/content","o":"APPEND","v":"。\n\n"} + +data: {"v":"天气预报"} + +data: {"v":"信息"} + +data: {"v":"会"} + +data: {"v":"实时"} + +data: {"v":"更新"} + +data: {"v":","} + +data: {"v":"如需"} + +data: {"v":"查询"} + +data: {"v":"最新"} + +data: {"v":"情况"} + +data: {"v":","} + +data: {"v":"可以"} + +data: {"v":"随时"} + +data: {"v":"再来"} + +data: {"v":"问我"} + +data: {"v":"~"} + +data: {"p":"response","o":"BATCH","v":[{"p":"accumulated_token_usage","v":211},{"p":"quasi_status","v":"FINISHED"}]} + +data: {"p":"response/status","o":"SET","v":"FINISHED"} + +event: finish +data: {} + +event: update_session +data: {"updated_at":1775318487.947988} + +event: title +data: {"content":"广州天气查询"} + +event: close +data: {"click_behavior":"none","auto_resume":false} + diff --git a/tests/raw_stream_samples/manifest.json b/tests/raw_stream_samples/manifest.json new file mode 100644 index 0000000..221d04f --- /dev/null +++ b/tests/raw_stream_samples/manifest.json @@ -0,0 +1,8 @@ +{ + "version": 1, + "default_samples": [ + "guangzhou-weather-reasoner-search-20260404", + "content-filter-trigger-20260405-jwt3" + ], + "notes": "Canonical raw stream samples used by the default replay simulator." +} diff --git a/tests/tools/deepseek-sse-simulator.mjs b/tests/tools/deepseek-sse-simulator.mjs index cd8a4a2..3829bef 100755 --- a/tests/tools/deepseek-sse-simulator.mjs +++ b/tests/tools/deepseek-sse-simulator.mjs @@ -13,6 +13,7 @@ function parseArgs(argv) { samplesRoot: 'tests/raw_stream_samples', reportPath: '', failOnLeak: true, + failOnReferenceLeak: true, failOnMissingFinish: true, }; for (let i = 2; i < argv.length; i += 1) { @@ -23,6 +24,8 @@ function parseArgs(argv) { out.reportPath = argv[++i]; } else if (a === '--no-fail-on-leak') { out.failOnLeak = false; + } else if (a === '--no-fail-on-reference-leak') { + out.failOnReferenceLeak = false; } else if (a === '--no-fail-on-missing-finish') { out.failOnMissingFinish = false; } @@ -30,15 +33,55 @@ function parseArgs(argv) { return out; } -function findSampleDirs(root) { - if (!fs.existsSync(root)) { - return []; +function loadManifest(root) { + const manifestPath = path.join(root, 'manifest.json'); + if (!fs.existsSync(manifestPath)) { + return null; } - return fs.readdirSync(root) + try { + const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf8')); + const defaultSamples = Array.isArray(manifest.default_samples) + ? manifest.default_samples.map((v) => String(v).trim()).filter(Boolean) + : []; + if (defaultSamples.length === 0) { + return null; + } + return { manifestPath, defaultSamples }; + } catch (err) { + throw new Error(`[sim] failed to parse ${manifestPath}: ${err.message}`); + } +} + +function resolveSampleDirs(root) { + if (!fs.existsSync(root)) { + return { dirs: [], manifestPath: '' }; + } + + const manifest = loadManifest(root); + if (manifest) { + const dirs = []; + const missing = []; + for (const sampleID of manifest.defaultSamples) { + const dir = path.join(root, sampleID); + const ssePath = path.join(dir, 'upstream.stream.sse'); + if (!fs.existsSync(dir) || !fs.statSync(dir).isDirectory() || !fs.existsSync(ssePath)) { + missing.push(sampleID); + continue; + } + dirs.push(dir); + } + if (missing.length > 0) { + throw new Error(`[sim] manifest sample(s) missing: ${missing.join(', ')}`); + } + return { dirs, manifestPath: manifest.manifestPath }; + } + + const dirs = fs.readdirSync(root) .map((name) => path.join(root, name)) .filter((p) => fs.statSync(p).isDirectory()) .filter((p) => fs.existsSync(path.join(p, 'upstream.stream.sse'))) .sort(); + return { dirs, manifestPath: '' }; } function parseSSE(raw) { @@ -101,13 +144,15 @@ function replaySample(raw) { parsedChunks, sawFinish, leakedFinishedText: outputText.includes('FINISHED'), + leakedReferenceMarkers: /\[reference:/i.test(outputText), + referenceLeakCount: (outputText.match(/\[reference:/gi) || []).length, outputChars: outputText.length, }; } function main() { const opts = parseArgs(process.argv); - const dirs = findSampleDirs(opts.samplesRoot); + const { dirs, manifestPath } = resolveSampleDirs(opts.samplesRoot); if (dirs.length === 0) { console.error(`[sim] no samples found: ${opts.samplesRoot}`); process.exit(1); @@ -116,11 +161,16 @@ function main() { const report = { generated_at: new Date().toISOString(), samples_root: opts.samplesRoot, + manifest_path: manifestPath, total: dirs.length, failed: 0, samples: [], }; + if (manifestPath) { + console.log(`[sim] using manifest ${manifestPath} samples=${dirs.length}`); + } + for (const dir of dirs) { const sampleID = path.basename(dir); const raw = fs.readFileSync(path.join(dir, 'upstream.stream.sse'), 'utf8'); @@ -132,6 +182,9 @@ function main() { if (opts.failOnLeak && r.leakedFinishedText) { errors.push('FINISHED leaked into output text'); } + if (opts.failOnReferenceLeak && r.leakedReferenceMarkers) { + errors.push('reference markers leaked into output text'); + } if (errors.length > 0) { report.failed += 1; } @@ -144,8 +197,9 @@ function main() { for (const s of report.samples) { const status = s.ok ? 'OK' : 'FAIL'; + const leakNote = s.leakedReferenceMarkers ? ` refLeaks=${s.referenceLeakCount}` : ''; const note = s.errors.length > 0 ? ` errors=${s.errors.join(';')}` : ''; - console.log(`[sim] ${status} ${s.sample_id} events=${s.events} parsed=${s.parsedChunks} chars=${s.outputChars}${note}`); + console.log(`[sim] ${status} ${s.sample_id} events=${s.events} parsed=${s.parsedChunks} chars=${s.outputChars}${leakNote}${note}`); } if (report.failed > 0) { diff --git a/webui/src/features/settings/CompatibilitySection.jsx b/webui/src/features/settings/CompatibilitySection.jsx new file mode 100644 index 0000000..104a69f --- /dev/null +++ b/webui/src/features/settings/CompatibilitySection.jsx @@ -0,0 +1,34 @@ +import { ShieldAlert } from 'lucide-react' + +export default function CompatibilitySection({ t, form, setForm }) { + return ( +

+
+ +

{t('settings.compatibilityTitle')}

+
+

{t('settings.compatibilityDesc')}

+
+ + +
+
+ ) +} diff --git a/webui/src/features/settings/SettingsContainer.jsx b/webui/src/features/settings/SettingsContainer.jsx index fc51907..3b2da85 100644 --- a/webui/src/features/settings/SettingsContainer.jsx +++ b/webui/src/features/settings/SettingsContainer.jsx @@ -5,6 +5,7 @@ import { useSettingsForm } from './useSettingsForm' import SecuritySection from './SecuritySection' import RuntimeSection from './RuntimeSection' import BehaviorSection from './BehaviorSection' +import CompatibilitySection from './CompatibilitySection' import AutoDeleteSection from './AutoDeleteSection' import ModelSection from './ModelSection' import BackupSection from './BackupSection' @@ -94,6 +95,8 @@ export default function SettingsContainer({ onRefresh, onMessage, authFetch, onF + + diff --git a/webui/src/features/settings/useSettingsForm.js b/webui/src/features/settings/useSettingsForm.js index e2f5502..5c7c18e 100644 --- a/webui/src/features/settings/useSettingsForm.js +++ b/webui/src/features/settings/useSettingsForm.js @@ -13,6 +13,7 @@ const MAX_AUTO_FETCH_FAILURES = 3 const DEFAULT_FORM = { admin: { jwt_expire_hours: 24 }, runtime: { account_max_inflight: 2, account_max_queue: 10, global_max_inflight: 10, token_refresh_interval_hours: 6 }, + compat: { strip_reference_markers: true }, responses: { store_ttl_seconds: 900 }, embeddings: { provider: '' }, auto_delete: { sessions: false }, @@ -46,6 +47,9 @@ function fromServerForm(data) { global_max_inflight: Number(data.runtime?.global_max_inflight || 10), token_refresh_interval_hours: Number(data.runtime?.token_refresh_interval_hours || 6), }, + compat: { + strip_reference_markers: data.compat?.strip_reference_markers ?? true, + }, responses: { store_ttl_seconds: Number(data.responses?.store_ttl_seconds || 900), }, @@ -69,6 +73,9 @@ function toServerPayload(form) { global_max_inflight: Number(form.runtime.global_max_inflight), token_refresh_interval_hours: Number(form.runtime.token_refresh_interval_hours), }, + compat: { + strip_reference_markers: Boolean(form.compat?.strip_reference_markers ?? true), + }, responses: { store_ttl_seconds: Number(form.responses.store_ttl_seconds) }, embeddings: { provider: String(form.embeddings.provider || '').trim() }, auto_delete: { sessions: Boolean(form.auto_delete?.sessions) }, diff --git a/webui/src/locales/en.json b/webui/src/locales/en.json index 9746d0f..f712b29 100644 --- a/webui/src/locales/en.json +++ b/webui/src/locales/en.json @@ -236,6 +236,9 @@ "behaviorTitle": "Behavior", "responsesTTL": "Responses store TTL (seconds)", "embeddingsProvider": "Embeddings provider", + "compatibilityTitle": "Compatibility", + "compatibilityDesc": "Compatibility controls that keep stream output closer to the wire format or safer for the web UI.", + "stripReferenceMarkers": "Strip [reference:N] markers", "modelTitle": "Model mapping", "claudeMapping": "Claude mapping (JSON)", "modelAliases": "Model aliases (JSON)", diff --git a/webui/src/locales/zh.json b/webui/src/locales/zh.json index 275cca0..7ecda31 100644 --- a/webui/src/locales/zh.json +++ b/webui/src/locales/zh.json @@ -236,6 +236,9 @@ "behaviorTitle": "行为设置", "responsesTTL": "Responses 缓存 TTL(秒)", "embeddingsProvider": "Embeddings Provider", + "compatibilityTitle": "兼容性设置", + "compatibilityDesc": "用于控制输出格式兼容性,避免把模型原始流里的标记直接暴露到前端。", + "stripReferenceMarkers": "移除 [reference:N] 标记", "modelTitle": "模型映射", "claudeMapping": "Claude 映射(JSON)", "modelAliases": "模型别名(JSON)",