mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 02:08:37 +08:00
fix: raise error in minimax stream generate (#1336)
This commit is contained in:
parent
e83e239faf
commit
f4be2b8bcd
@ -211,6 +211,16 @@ class MinimaxChatLLM(BaseChatModel):
|
||||
|
||||
token = token.lstrip("data:").strip()
|
||||
data = json.loads(token)
|
||||
|
||||
if "base_resp" in data and data["base_resp"]["status_code"] > 0:
|
||||
raise ValueError(
|
||||
f"API {data['base_resp']['status_code']}"
|
||||
f" error: {data['base_resp']['status_msg']}"
|
||||
)
|
||||
|
||||
if not data['choices']:
|
||||
continue
|
||||
|
||||
content = data['choices'][0]['delta']
|
||||
|
||||
chunk_kwargs = {
|
||||
|
Loading…
Reference in New Issue
Block a user