fix(llm): 删除未实现的 LlmRequest.thinking 字段(CR-H5,YAGNI)

This commit is contained in:
Yaojia Wang
2026-07-08 10:22:34 +02:00
parent cb8fddfc3b
commit afeac51422
4 changed files with 23 additions and 3 deletions

View File

@@ -481,7 +481,6 @@ class LlmRequest(BaseModel):
input: str | list[Block] # 易变内容(断点之后)
stream: bool = False
output_schema: type[BaseModel] | None = None # 需结构化输出时(Pydantic 模型/instructor)
thinking: bool = False # 是否启用思考/推理(有则启用)
max_tokens: int | None = None
scope: "Scope" # {project_id; user_id 原型可固定}