mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-25 12:16:17 +03:00
7e543f4747
Use AsyncClient in API, add web_search parameter in API Improve error messages in Openai
7 lines
168 B
Python
7 lines
168 B
Python
from __future__ import annotations
|
|
|
|
from .OpenaiChat import OpenaiChat
|
|
|
|
class OpenaiAccount(OpenaiChat):
|
|
label = "OpenAI ChatGPT with Account"
|
|
needs_auth = True |