diff options
author | Meshwa428 <135232056+Meshwa428@users.noreply.github.com> | 2023-12-10 23:22:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-10 23:22:58 +0100 |
commit | 983d17cb7bafce93973cfe8c3f3c34532ef6815d (patch) | |
tree | d89d41286e2c72d073e18ca0684b8f6654ac0cb9 /g4f/models.py | |
parent | Fix llama2 provider, Update TOC in readme (#1325) (diff) | |
download | gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar.gz gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar.bz2 gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar.lz gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar.xz gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.tar.zst gpt4free-983d17cb7bafce93973cfe8c3f3c34532ef6815d.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index cf24ff52..810722e4 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -28,6 +28,7 @@ from .Provider import ( You, H2o, Pi, + VoiGpt, ) @dataclass(unsafe_hash=True) @@ -49,6 +50,7 @@ default = Model( You, Chatgpt4Online, ChatAnywhere, + VoiGpt ]) ) @@ -65,6 +67,7 @@ gpt_35_long = Model( ChatgptDemoAi, OnlineGpt, ChatgptNext, + VoiGpt ]) ) @@ -77,6 +80,7 @@ gpt_35_turbo = Model( GptForLove, ChatBase, Chatgpt4Online, ChatAnywhere, + VoiGpt, ]) ) |