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 16:15:55 +03:00
needs_auth = True
2024-04-22 02:27:48 +03:00
parent = "OpenaiChat"
2024-04-21 16:15:55 +03:00
image_models = ["dall-e"]