summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Ylokh.py
diff options
context:
space:
mode:
authorHeiner Lohaus <heiner@lohaus.eu>2023-10-08 13:59:56 +0200
committerHeiner Lohaus <heiner@lohaus.eu>2023-10-08 13:59:56 +0200
commit6401084fd0d23b75a883888f70cd705e4cacd202 (patch)
tree9750cb102284d9445d60c539f4e6d3586603e917 /g4f/Provider/Ylokh.py
parentAdd Cromicle to provider list (diff)
downloadgpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.gz
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.bz2
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.lz
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.xz
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.zst
gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.zip
Diffstat (limited to 'g4f/Provider/Ylokh.py')
-rw-r--r--g4f/Provider/Ylokh.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/g4f/Provider/Ylokh.py b/g4f/Provider/Ylokh.py
index a15f7894..59da0fa4 100644
--- a/g4f/Provider/Ylokh.py
+++ b/g4f/Provider/Ylokh.py
@@ -4,7 +4,7 @@ import json
from ..requests import StreamSession
from .base_provider import AsyncGeneratorProvider
-from ..typing import AsyncGenerator
+from ..typing import AsyncResult, Messages
class Ylokh(AsyncGeneratorProvider):
url = "https://chat.ylokh.xyz"
@@ -16,16 +16,16 @@ class Ylokh(AsyncGeneratorProvider):
async def create_async_generator(
cls,
model: str,
- messages: list[dict[str, str]],
+ messages: Messages,
stream: bool = True,
proxy: str = None,
- timeout: int = 30,
+ timeout: int = 120,
**kwargs
- ) -> AsyncGenerator:
+ ) -> AsyncResult:
model = model if model else "gpt-3.5-turbo"
headers = {
- "Origin" : cls.url,
- "Referer" : cls.url + "/",
+ "Origin" : cls.url,
+ "Referer": cls.url + "/",
}
data = {
"messages": messages,
@@ -69,6 +69,7 @@ class Ylokh(AsyncGeneratorProvider):
("messages", "list[dict[str, str]]"),
("stream", "bool"),
("proxy", "str"),
+ ("timeout", "int"),
("temperature", "float"),
("top_p", "float"),
]