From e59f69943cc954261cb6da904b7b6eb45a6bead1 Mon Sep 17 00:00:00 2001 From: Peter Zhang <18501667167@qq.com> Date: Mon, 8 Jun 2026 14:11:26 +0800 Subject: [PATCH] =?UTF-8?q?test:=20=E5=8D=87=E7=BA=A7=20Layer=20C=20QE=20A?= =?UTF-8?q?udit=20=E6=A8=A1=E5=9E=8B=20deepseek-v4-flash=20=E2=86=92=20dee?= =?UTF-8?q?pseek-v4-pro=20-=20Closes=20#90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- tests/acceptance/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/acceptance/conftest.py b/tests/acceptance/conftest.py index f3d3dc0..099d431 100644 --- a/tests/acceptance/conftest.py +++ b/tests/acceptance/conftest.py @@ -9,7 +9,7 @@ LLM configuration is read from secrets.yaml (searched in order): 2. ~/.openclaw/config/secrets.yaml 3. ~/.openclaw/workspace-document-analyzer/config/secrets.yaml - deepseek.apiKey / deepseek.baseUrl → text model (deepseek-v4-flash) + deepseek.apiKey / deepseek.baseUrl → text model (deepseek-v4-pro) Environment variables: TEST_IR_PATH — path to IR JSON (default: output/final/ir_final.json) @@ -198,11 +198,11 @@ def parsed_data(parsed_path: str | None) -> dict | None: class _AcceptanceLLM: """Thin LLM wrapper for acceptance tests. - Uses deepseek-v4-flash for text (Layer C QE audit) via OpenAI-compatible API, + Uses deepseek-v4-pro for text (Layer C QE audit) via OpenAI-compatible API, configured from ~/.openclaw/config/secrets.yaml. """ - TEXT_MODEL = "deepseek-v4-flash" + TEXT_MODEL = "deepseek-v4-pro" IMAGE_MODEL = "qwen3-vl-plus" TIMEOUT = 180 MAX_RETRIES = 3 @@ -277,7 +277,7 @@ class _AcceptanceLLM: def llm_client(): """Create an LLM client for acceptance tests. - Uses deepseek-v4-flash for text (Layer C QE audit), configured from + Uses deepseek-v4-pro for text (Layer C QE audit), configured from ~/.openclaw/config/secrets.yaml deepseek section. """ return _AcceptanceLLM()