summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/AiAsk.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/AiAsk.py')
-rw-r--r--g4f/Provider/AiAsk.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/g4f/Provider/AiAsk.py b/g4f/Provider/AiAsk.py
index 870dd1ab..27d3bf15 100644
--- a/g4f/Provider/AiAsk.py
+++ b/g4f/Provider/AiAsk.py
@@ -1,6 +1,6 @@
from __future__ import annotations
-from aiohttp import ClientSession, ClientTimeout
+from aiohttp import ClientSession
from ..typing import AsyncGenerator
from .base_provider import AsyncGeneratorProvider
@@ -14,7 +14,6 @@ class AiAsk(AsyncGeneratorProvider):
cls,
model: str,
messages: list[dict[str, str]],
- timeout: int = 30,
**kwargs
) -> AsyncGenerator:
headers = {
@@ -22,7 +21,7 @@ class AiAsk(AsyncGeneratorProvider):
"origin": cls.url,
"referer": f"{cls.url}/chat",
}
- async with ClientSession(headers=headers, timeout=ClientTimeout(timeout)) as session:
+ async with ClientSession(headers=headers) as session:
data = {
"continuous": True,
"id": "fRMSQtuHl91A4De9cCvKD",