优化: AI Chat全栈多批审查修复与架构清理(risk_level清理/路由解耦/工具渲染/测试补测/死代码)

This commit is contained in:
2026-06-18 22:57:19 +08:00
parent 0ca5d9805f
commit a2871a66e0
87 changed files with 5720 additions and 3012 deletions

View File

@@ -77,6 +77,8 @@ struct OpenAiResponse {
#[derive(Debug, Deserialize)]
struct OpenAiChoice {
message: OpenAiMessageResp,
// SW-260618-24: OpenAI 响应反序列化字段,保留以备调试/未来消费(如日志记录调用终止原因),标注意图消除 dead_code warning
#[allow(dead_code)]
finish_reason: Option<String>,
}
@@ -92,6 +94,8 @@ struct OpenAiMessageResp {
#[derive(Debug, Deserialize)]
struct OpenAiToolCallResp {
id: String,
// SW-260618-24: 反序列化 #[serde(rename="type")] 字段,保留以对齐 OpenAI 响应结构,标注意图消除 dead_code warning
#[allow(dead_code)]
#[serde(rename = "type")]
call_type: String,
function: OpenAiFunctionResp,
@@ -255,16 +259,9 @@ impl OpenAICompatProvider {
/// - `api_key`: API 密钥
/// - `default_model`: 默认模型名称
pub fn new(base_url: impl Into<String>, api_key: impl Into<String>, default_model: impl Into<String>) -> Self {
// connect_timeout 防连接阶段无限 hang网络静默断不设总 timeout——
// reqwest 的 .timeout() 会限制整个响应 body 时长,流式长生成任务会被误砍
// 读取阶段的中途静默由上层 stream_llm 的 idle timeout 兜底。
let client = Client::builder()
.connect_timeout(std::time::Duration::from_secs(30))
.build()
.unwrap_or_else(|e| {
warn!("reqwest builder 失败,回退默认 client: {}", e);
Client::new()
});
// SW-260618-10: reqwest Client 构建抽 crate::build_provider_client与 Anthropic 共用 DRY
// connect_timeout/回退策略集中此处,未来改一处即可(见 lib.rs::build_provider_client
let client = crate::build_provider_client();
Self {
client,
api_key: api_key.into(),