mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-10 19:11:01 +00: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"] |