summaryrefslogtreecommitdiffstats
path: root/g4f/client.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 02:51:10 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 02:51:10 +0100
commitd733930a2b1876340039d90f19ece81fab0d078d (patch)
tree208266ba04a3d4d056a85f20c104d324a1b625c8 /g4f/client.py
parentUse new client in inter api (diff)
downloadgpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.gz
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.bz2
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.lz
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.xz
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.zst
gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.zip
Diffstat (limited to 'g4f/client.py')
-rw-r--r--g4f/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/g4f/client.py b/g4f/client.py
index b44a5230..023d53f6 100644
--- a/g4f/client.py
+++ b/g4f/client.py
@@ -17,7 +17,7 @@ from . import get_model_and_provider, get_last_provider
ImageProvider = Union[BaseProvider, object]
Proxies = Union[dict, str]
-IterResponse = Generator[ChatCompletion | ChatCompletionChunk, None, None]
+IterResponse = Generator[Union[ChatCompletion, ChatCompletionChunk], None, None]
def read_json(text: str) -> dict:
"""
@@ -124,7 +124,7 @@ class Completions():
stream: bool = False,
response_format: dict = None,
max_tokens: int = None,
- stop: list[str] | str = None,
+ stop: Union[list[str], str] = None,
**kwargs
) -> Union[ChatCompletion, Generator[ChatCompletionChunk]]:
if max_tokens is not None: