Browse Source

新增置信区间下限指标

luojunhui 1 month ago
parent
commit
ded266726d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      applications/api/deep_seek_official_api.py

+ 1 - 1
applications/api/deep_seek_official_api.py

@@ -18,7 +18,7 @@ def fetch_deepseek_completion(
     output_type: str = "text",
     tool_calls: bool = False,
     tools: List[Dict] = None,
-) -> Optional[Dict, List]:
+) -> Optional[Dict | List]:
     messages = [{"role": "user", "content": prompt}]
     kwargs = {
         "model": deep_seek_official_model.get(model, "deepseek-chat"),