Added back list_ignored_providers parameter to ChatCompletion.create method in api.

This commit is contained in:
razrab 2023-11-13 14:11:44 +03:00
parent 82f3cdc762
commit 7b26e20db0
1 changed files with 5 additions and 1 deletions

View File

@ -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")