瀏覽代碼

fix(model_runtime): make invoke as ValueError (#11929)

Signed-off-by: -LAN- <laipz8200@outlook.com>
-LAN- 4 月之前
父節點
當前提交
455791b710
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      api/core/model_runtime/errors/invoke.py

+ 1 - 1
api/core/model_runtime/errors/invoke.py

@@ -1,7 +1,7 @@
 from typing import Optional
 
 
-class InvokeError(Exception):
+class InvokeError(ValueError):
     """Base class for all LLM exceptions."""
 
     description: Optional[str] = None