fix: 清除错误默认模型与端口硬编码,文档机器路径占位符化
This commit is contained in:
@@ -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 │
|
||||
|
||||
Reference in New Issue
Block a user