mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-19 03:25:32 +00:00
Merge branch 'main' into webdriver
This commit is contained in:
commit
4f7ebdab73
@ -62,6 +62,21 @@ class GptGo(AsyncGeneratorProvider):
|
|||||||
line = json.loads(line[len(start):-1])
|
line = json.loads(line[len(start):-1])
|
||||||
if line["choices"][0]["finish_reason"] == "stop":
|
if line["choices"][0]["finish_reason"] == "stop":
|
||||||
break
|
break
|
||||||
|
|
||||||
content = line["choices"][0]["delta"].get("content")
|
content = line["choices"][0]["delta"].get("content")
|
||||||
if content:
|
if content:
|
||||||
yield content
|
yield content
|
||||||
|
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@property
|
||||||
|
def params(cls):
|
||||||
|
params = [
|
||||||
|
("model", "str"),
|
||||||
|
("messages", "list[dict[str, str]]"),
|
||||||
|
("stream", "bool"),
|
||||||
|
("proxy", "str"),
|
||||||
|
("temperature", "float"),
|
||||||
|
]
|
||||||
|
param = ", ".join([": ".join(p) for p in params])
|
||||||
|
return f"g4f.provider.{cls.__name__} supports: ({param})"
|
||||||
|
Loading…
Reference in New Issue
Block a user