mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-02 02:44:14 +03:00
8 lines
182 B
Python
8 lines
182 B
Python
from __future__ import annotations
|
|
|
|
from .OpenaiChat import OpenaiChat
|
|
|
|
class OpenaiAccount(OpenaiChat):
|
|
needs_auth = True
|
|
parent = "OpenaiChat"
|
|
image_models = ["dall-e"] |