diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-02-12 12:08:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 12:08:26 +0100 |
commit | dd5478636460560bd6538c6b08a81c92d61b6595 (patch) | |
tree | 128a4681385f6f1adc8bee8cf745affc0103d204 /g4f/__init__.py | |
parent | Merge pull request #1577 from hlohaus/openai (diff) | |
parent | Add variant example (diff) | |
download | gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar.gz gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar.bz2 gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar.lz gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar.xz gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.tar.zst gpt4free-dd5478636460560bd6538c6b08a81c92d61b6595.zip |
Diffstat (limited to 'g4f/__init__.py')
-rw-r--r-- | g4f/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/__init__.py b/g4f/__init__.py index 93e4aa86..ec4a1743 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -16,7 +16,8 @@ def get_model_and_provider(model : Union[Model, str], stream : bool, ignored : list[str] = None, ignore_working: bool = False, - ignore_stream: bool = False) -> tuple[str, ProviderType]: + ignore_stream: bool = False, + **kwargs) -> tuple[str, ProviderType]: """ Retrieves the model and provider based on input parameters. |