diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-22 14:22:33 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-22 14:22:33 +0200 |
commit | 63cda8d779f9aaccbdac7cea39f496eca44a96ad (patch) | |
tree | ac5c86980c7386af9473975e4c0fa70edd4caefb /g4f/Provider/Phind.py | |
parent | Enable Liaobots and ChatForAi again (diff) | |
download | gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar.gz gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar.bz2 gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar.lz gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar.xz gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.tar.zst gpt4free-63cda8d779f9aaccbdac7cea39f496eca44a96ad.zip |
Diffstat (limited to 'g4f/Provider/Phind.py')
-rw-r--r-- | g4f/Provider/Phind.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/Phind.py b/g4f/Provider/Phind.py index d7c6f7c7..0e698cba 100644 --- a/g4f/Provider/Phind.py +++ b/g4f/Provider/Phind.py @@ -1,6 +1,6 @@ from __future__ import annotations -import random +import random, string from datetime import datetime from ..typing import AsyncResult, Messages @@ -22,7 +22,7 @@ class Phind(AsyncGeneratorProvider): timeout: int = 120, **kwargs ) -> AsyncResult: - chars = 'abcdefghijklmnopqrstuvwxyz0123456789' + chars = string.ascii_lowercase + string.digits user_id = ''.join(random.choice(chars) for _ in range(24)) data = { "question": format_prompt(messages), |