diff options
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index e61ebbcd..7d94151b 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -7,6 +7,13 @@ class Model: base_provider: str best_provider: type[BaseProvider] +# Config for HuggingChat, OpenAssistant +# Works for Liaobots, H2o, OpenaiChat, Yqcloud, You +default = Model( + name="", + base_provider="huggingface", + best_provider=H2o, +) # GPT-3.5 / GPT-4 gpt_35_turbo = Model( |