summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/ChatForAi.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-10-10 00:18:17 +0200
committerGitHub <noreply@github.com>2023-10-10 00:18:17 +0200
commit8a5c23f693c1ad92b5d5259201bb99807f76ea2a (patch)
tree26a25d7b5bee6ba1e2ac484e1ad124a8e52b0b43 /g4f/Provider/ChatForAi.py
parentMerge branch 'main' of https://github.com/xtekky/gpt4free (diff)
parent Add Proxy Support and Create Provider to Readme (diff)
downloadgpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar.gz
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar.bz2
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar.lz
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar.xz
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.tar.zst
gpt4free-8a5c23f693c1ad92b5d5259201bb99807f76ea2a.zip
Diffstat (limited to 'g4f/Provider/ChatForAi.py')
-rw-r--r--g4f/Provider/ChatForAi.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/g4f/Provider/ChatForAi.py b/g4f/Provider/ChatForAi.py
index 86b29639..f2fe0335 100644
--- a/g4f/Provider/ChatForAi.py
+++ b/g4f/Provider/ChatForAi.py
@@ -1,6 +1,6 @@
from __future__ import annotations
-from ..typing import AsyncGenerator
+from ..typing import AsyncResult, Messages
from ..requests import StreamSession
from .base_provider import AsyncGeneratorProvider
@@ -14,11 +14,12 @@ class ChatForAi(AsyncGeneratorProvider):
async def create_async_generator(
cls,
model: str,
- messages: list[dict[str, str]],
- timeout: int = 30,
+ messages: Messages,
+ proxy: str = None,
+ timeout: int = 120,
**kwargs
- ) -> AsyncGenerator:
- async with StreamSession(impersonate="chrome107", timeout=timeout) as session:
+ ) -> AsyncResult:
+ async with StreamSession(impersonate="chrome107", proxies={"https": proxy}, timeout=timeout) as session:
prompt = messages[-1]["content"]
data = {
"conversationId": "temp",