diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2023-12-02 00:08:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-02 00:08:34 +0100 |
commit | f2bdd839502f3d3fa50dc221ae71e22cba44c1da (patch) | |
tree | 4cdd527acfd2e5514a3ca638c136a0c5d59faf04 /g4f/models.py | |
parent | Added new provider PI (Hacky way to use) (#1291) (diff) | |
parent | Update pi provider (diff) | |
download | gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar.gz gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar.bz2 gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar.lz gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar.xz gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.tar.zst gpt4free-f2bdd839502f3d3fa50dc221ae71e22cba44c1da.zip |
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/g4f/models.py b/g4f/models.py index e4b20ae5..2f86891d 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -11,7 +11,6 @@ from .Provider import ( ChatgptAi, DeepInfra, OnlineGpt, - ChatgptX, ChatBase, Liaobots, GeekGpt, @@ -27,7 +26,7 @@ from .Provider import ( Bing, You, H2o, - PI, + Pi, ) @dataclass(unsafe_hash=True) @@ -264,7 +263,7 @@ llama70b_v2_chat = Model( pi = Model( name = 'pi', base_provider = 'inflection', - best_provider=PI + best_provider=Pi ) class ModelUtils: |