diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-13 15:37:36 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-13 15:37:36 +0100 |
commit | ea8d6b847a0e656cc5583948c5745592adda7103 (patch) | |
tree | cb796ff258d339a5ee4a4ec3fb4b2617e6639677 /g4f/Provider/base_provider.py | |
parent | Change pypi to live (diff) | |
download | gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar.gz gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar.bz2 gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar.lz gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar.xz gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.tar.zst gpt4free-ea8d6b847a0e656cc5583948c5745592adda7103.zip |
Diffstat (limited to 'g4f/Provider/base_provider.py')
-rw-r--r-- | g4f/Provider/base_provider.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/g4f/Provider/base_provider.py b/g4f/Provider/base_provider.py index 6da7f6c6..e7e88841 100644 --- a/g4f/Provider/base_provider.py +++ b/g4f/Provider/base_provider.py @@ -7,7 +7,7 @@ from concurrent.futures import ThreadPoolExecutor from abc import abstractmethod from inspect import signature, Parameter from .helper import get_event_loop, get_cookies, format_prompt -from ..typing import CreateResult, AsyncResult, Messages, Union +from ..typing import CreateResult, AsyncResult, Messages from ..base_provider import BaseProvider if sys.version_info < (3, 10): @@ -77,8 +77,7 @@ class AbstractProvider(BaseProvider): continue if args: args += ", " - args += "\n" - args += " " + name + args += "\n " + name if name != "model" and param.annotation is not Parameter.empty: args += f": {get_type_name(param.annotation)}" if param.default == "": @@ -156,7 +155,7 @@ class AsyncGeneratorProvider(AsyncProvider): messages, stream=False, **kwargs - ) + ) if not isinstance(chunk, Exception) ]) @staticmethod |