diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-10 09:49:29 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-10 09:49:29 +0200 |
commit | 53192b86b129380660f7454170fa987faf2da3c5 (patch) | |
tree | 5797a34479840692f2ae5db9e63deacac9732bd7 /g4f/Provider/Phind.py | |
parent | ~ | g4f `v-0.1.5.7` (diff) | |
download | gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar.gz gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar.bz2 gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar.lz gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar.xz gpt4free-53192b86b129380660f7454170fa987faf2da3c5.tar.zst gpt4free-53192b86b129380660f7454170fa987faf2da3c5.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/Phind.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/g4f/Provider/Phind.py b/g4f/Provider/Phind.py index ae4de686..d7c6f7c7 100644 --- a/g4f/Provider/Phind.py +++ b/g4f/Provider/Phind.py @@ -3,7 +3,7 @@ from __future__ import annotations import random from datetime import datetime -from ..typing import AsyncGenerator +from ..typing import AsyncResult, Messages from ..requests import StreamSession from .base_provider import AsyncGeneratorProvider, format_prompt @@ -17,11 +17,11 @@ class Phind(AsyncGeneratorProvider): async def create_async_generator( cls, model: str, - messages: list[dict[str, str]], + messages: Messages, proxy: str = None, timeout: int = 120, **kwargs - ) -> AsyncGenerator: + ) -> AsyncResult: chars = 'abcdefghijklmnopqrstuvwxyz0123456789' user_id = ''.join(random.choice(chars) for _ in range(24)) data = { |