mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-17 09:25:50 +00:00
6 lines
126 B
Python
6 lines
126 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
from .OpenaiChat import OpenaiChat
|
||
|
|
||
|
class OpenaiAccount(OpenaiChat):
|
||
|
needs_auth = True
|