summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Vitalentum.py
diff options
context:
space:
mode:
authorHeiner Lohaus <heiner@lohaus.eu>2023-10-07 09:02:48 +0200
committerHeiner Lohaus <heiner@lohaus.eu>2023-10-07 09:02:48 +0200
commit4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6 (patch)
tree78c7dbfda4469a074434583bb1fe1dee36cc7e18 /g4f/Provider/Vitalentum.py
parentAdd GPTalk and GptForLove Provider (diff)
downloadgpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.gz
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.bz2
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.lz
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.xz
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.zst
gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.zip
Diffstat (limited to 'g4f/Provider/Vitalentum.py')
-rw-r--r--g4f/Provider/Vitalentum.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/g4f/Provider/Vitalentum.py b/g4f/Provider/Vitalentum.py
index ccaaeb00..d5265428 100644
--- a/g4f/Provider/Vitalentum.py
+++ b/g4f/Provider/Vitalentum.py
@@ -1,7 +1,7 @@
from __future__ import annotations
import json
-from aiohttp import ClientSession, ClientTimeout
+from aiohttp import ClientSession
from .base_provider import AsyncGeneratorProvider
from ..typing import AsyncGenerator
@@ -18,7 +18,6 @@ class Vitalentum(AsyncGeneratorProvider):
model: str,
messages: list[dict[str, str]],
proxy: str = None,
- timeout: int = 30,
**kwargs
) -> AsyncGenerator:
headers = {
@@ -41,7 +40,7 @@ class Vitalentum(AsyncGeneratorProvider):
**kwargs
}
async with ClientSession(
- headers=headers, timeout=ClientTimeout(timeout)
+ headers=headers
) as session:
async with session.post(cls.url + "/api/converse-edge", json=data, proxy=proxy) as response:
response.raise_for_status()