gpt4free/g4f/Provider/needs_auth/OpenaiAccount.py

8 lines
182 B
Python
Raw Normal View History

from __future__ import annotations
from .OpenaiChat import OpenaiChat
class OpenaiAccount(OpenaiChat):
2024-04-21 13:15:55 +00:00
needs_auth = True
2024-04-21 23:27:48 +00:00
parent = "OpenaiChat"
2024-04-21 13:15:55 +00:00
image_models = ["dall-e"]