summaryrefslogtreecommitdiffstats
path: root/g4f/client/client.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-07 16:02:49 +0200
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-07 16:02:49 +0200
commitbdc61ca273dde2771c5bc8f93705652842f78d15 (patch)
tree9074b23a7b1beac359206910e30e205908513a1d /g4f/client/client.py
parentAdd local models to gui, Fix You Provider, add AsyncClient (diff)
downloadgpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar.gz
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar.bz2
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar.lz
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar.xz
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.tar.zst
gpt4free-bdc61ca273dde2771c5bc8f93705652842f78d15.zip
Diffstat (limited to 'g4f/client/client.py')
-rw-r--r--g4f/client/client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/client/client.py b/g4f/client/client.py
index 8ce5d932..bc0bae6f 100644
--- a/g4f/client/client.py
+++ b/g4f/client/client.py
@@ -98,7 +98,8 @@ class Completions():
)
stop = [stop] if isinstance(stop, str) else stop
response = provider.create_completion(
- model, messages, stream,
+ model, messages,
+ stream=stream,
**filter_none(
proxy=self.client.get_proxy() if proxy is None else proxy,
max_tokens=max_tokens,