mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-19 03:25:32 +00:00
Merge pull request #1245 from AndPim4912/main
Fix ignored providers in api
This commit is contained in:
commit
746588814c
@ -82,7 +82,11 @@ class Api:
|
||||
messages = item_data.get('messages')
|
||||
|
||||
try:
|
||||
response = g4f.ChatCompletion.create(model=model, stream=stream, messages=messages)
|
||||
response = g4f.ChatCompletion.create(
|
||||
model=model,
|
||||
stream=stream,
|
||||
messages=messages,
|
||||
list_ignored_providers=self.list_ignored_providers)
|
||||
except Exception as e:
|
||||
logging.exception(e)
|
||||
return Response(content=json.dumps({"error": "An error occurred while generating the response."}, indent=4), media_type="application/json")
|
||||
|
Loading…
Reference in New Issue
Block a user