mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Update api.py
This commit is contained in:
parent
27fed7224d
commit
a9f16aea69
1 changed files with 2 additions and 5 deletions
|
|
@ -98,9 +98,7 @@ class Api():
|
||||||
if conversation_id and provider in conversations and conversation_id in conversations[provider]:
|
if conversation_id and provider in conversations and conversation_id in conversations[provider]:
|
||||||
kwargs["conversation"] = conversations[provider][conversation_id]
|
kwargs["conversation"] = conversations[provider][conversation_id]
|
||||||
|
|
||||||
model = json_data.get('model')
|
model = json_data.get('model', models.default)
|
||||||
model = model if model else models.default
|
|
||||||
patch = patch_provider if json_data.get('patch_provider') else None
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"model": model,
|
"model": model,
|
||||||
|
|
@ -108,7 +106,6 @@ class Api():
|
||||||
"messages": messages,
|
"messages": messages,
|
||||||
"stream": True,
|
"stream": True,
|
||||||
"ignore_stream": True,
|
"ignore_stream": True,
|
||||||
"patch_provider": patch,
|
|
||||||
"return_conversation": True,
|
"return_conversation": True,
|
||||||
**kwargs
|
**kwargs
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue