diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-27 16:28:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 16:28:16 +0200 |
commit | 814c9609983b9b370d11bc5c5ac081f9d6c81a70 (patch) | |
tree | 64498c5c02c46e70ea122d959f182f997c41973a /forefront/__init__.py | |
parent | Merge pull request #199 from Andrew-Tsegaye/main (diff) | |
parent | Use @staticmethod decorator (diff) | |
download | gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar.gz gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar.bz2 gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar.lz gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar.xz gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.tar.zst gpt4free-814c9609983b9b370d11bc5c5ac081f9d6c81a70.zip |
Diffstat (limited to 'forefront/__init__.py')
-rw-r--r-- | forefront/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/forefront/__init__.py b/forefront/__init__.py index b247503f..9899d991 100644 --- a/forefront/__init__.py +++ b/forefront/__init__.py @@ -9,6 +9,7 @@ from json import loads class Account: + @staticmethod def create(proxy = None, logging = False): proxies = { @@ -79,6 +80,7 @@ class Account: class StreamingCompletion: + @staticmethod def create( token = None, chatId = None, |