summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/You.py
diff options
context:
space:
mode:
authorBagus Indrayana <bagusindrayanaindo@gmail.com>2023-08-17 15:30:52 +0200
committerBagus Indrayana <bagusindrayanaindo@gmail.com>2023-08-17 15:30:52 +0200
commit74ecdee78466104e57eb7488e682b564988fcd88 (patch)
treebbc764ba3248e80f20dde55e5b382b3f3d382575 /g4f/Provider/You.py
parentadd proxy and remove stream (diff)
parent~ (diff)
downloadgpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.gz
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.bz2
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.lz
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.xz
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.zst
gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.zip
Diffstat (limited to 'g4f/Provider/You.py')
-rw-r--r--g4f/Provider/You.py59
1 files changed, 59 insertions, 0 deletions
diff --git a/g4f/Provider/You.py b/g4f/Provider/You.py
new file mode 100644
index 00000000..0d8114a8
--- /dev/null
+++ b/g4f/Provider/You.py
@@ -0,0 +1,59 @@
+import re
+import urllib.parse
+
+from curl_cffi import requests
+
+from ..typing import Any, CreateResult
+from .base_provider import BaseProvider
+
+
+class You(BaseProvider):
+ url = "https://you.com"
+ working = True
+ supports_gpt_35_turbo = True
+
+ @staticmethod
+ def create_completion(
+ model: str,
+ messages: list[dict[str, str]],
+ stream: bool,
+ **kwargs: Any,
+ ) -> CreateResult:
+ url_param = _create_url_param(messages)
+ headers = _create_header()
+ url = f"https://you.com/api/streamingSearch?{url_param}"
+ response = requests.get(
+ url,
+ headers=headers,
+ impersonate="chrome107",
+ )
+ response.raise_for_status()
+ yield _parse_output(response.text)
+
+
+def _create_url_param(messages: list[dict[str, str]]):
+ prompt = messages.pop()["content"]
+ chat = _convert_chat(messages)
+ param = {"q": prompt, "domain": "youchat", "chat": chat}
+ return urllib.parse.urlencode(param)
+
+
+def _convert_chat(messages: list[dict[str, str]]):
+ message_iter = iter(messages)
+ return [
+ {"question": user["content"], "answer": assistant["content"]}
+ for user, assistant in zip(message_iter, message_iter)
+ ]
+
+
+def _create_header():
+ return {
+ "accept": "text/event-stream",
+ "referer": "https://you.com/search?fromSearchBar=true&tbm=youchat",
+ }
+
+
+def _parse_output(output: str) -> str:
+ regex = r"^data:\s{\"youChatToken\": \"(.*)\"}$"
+ tokens = [token for token in re.findall(regex, output, re.MULTILINE)]
+ return "".join(tokens)