mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-10-24 00:33:11 +08:00
Update api.py
This commit is contained in:
@@ -98,9 +98,7 @@ class Api():
|
||||
if conversation_id and provider in conversations and conversation_id in conversations[provider]:
|
||||
kwargs["conversation"] = conversations[provider][conversation_id]
|
||||
|
||||
model = json_data.get('model')
|
||||
model = model if model else models.default
|
||||
patch = patch_provider if json_data.get('patch_provider') else None
|
||||
model = json_data.get('model', models.default)
|
||||
|
||||
return {
|
||||
"model": model,
|
||||
@@ -108,7 +106,6 @@ class Api():
|
||||
"messages": messages,
|
||||
"stream": True,
|
||||
"ignore_stream": True,
|
||||
"patch_provider": patch,
|
||||
"return_conversation": True,
|
||||
**kwargs
|
||||
}
|
||||
|
Reference in New Issue
Block a user