fix: 清除错误默认模型与端口硬编码,文档机器路径占位符化

This commit is contained in:
hangshuo652
2026-08-25 22:35:35 +08:00
parent 8e81f960af
commit c6fa6b1aeb
19 changed files with 85 additions and 57 deletions
+2 -2
View File
@@ -217,7 +217,7 @@ class VerificationRun:
│ project_name: str = "" │
│ copybook_paths: list = ["./copybooks"] │
│ dialect: str = "ibm" # cobc -std 参数 │
│ llm_model: str = "gpt-4o-mini" # LLM 模型 │
│ llm_model: str = "deepseek-v4-flash" # LLM 模型 │
│ llm_timeout: int = 15 │
│ llm_cache_dir: str = ".cache/llm" │
│ coverage_default: str = "boundary" │
@@ -545,7 +545,7 @@ class VerificationRun:
```
┌─────────────────────────────────────────────────────────────────────────┐
│ LLMClient(model="gpt-4o-mini", timeout=15, cache_dir=".cache/llm") │
│ LLMClient(timeout=15, cache_dir=".cache/llm") # 模型经 LLM_MODEL 环境变量解析
│ call(messages: list[dict], retries=1) → str │
│ │
│ 通信契约: POST {base}/chat/completions │