summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-18 17:16:09 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-18 17:16:09 +0200
commit05f3695e27ebd22c29e19ee22e21f1f7c17e5e71 (patch)
tree0ed8ed99d1fdaa871e1d78c5cd5a4c19da6766dd
parentphind.com api (gpt4 & search) (diff)
downloadgpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar.gz
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar.bz2
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar.lz
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar.xz
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.tar.zst
gpt4free-05f3695e27ebd22c29e19ee22e21f1f7c17e5e71.zip
-rw-r--r--quora/api.py93
-rw-r--r--quora/graphql/PoeBotCreateMutation.graphql73
2 files changed, 160 insertions, 6 deletions
diff --git a/quora/api.py b/quora/api.py
index 6b36420b..c3e20fa4 100644
--- a/quora/api.py
+++ b/quora/api.py
@@ -1,14 +1,14 @@
# This file was taken from the repository poe-api https://github.com/ading2210/poe-api and is unmodified
# This file is licensed under the GNU GPL v3 and written by @ading2210
-# license:
+# license:
# ading2210/poe-api: a reverse engineered Python API wrapepr for Quora's Poe
# Copyright (C) 2023 ading2210
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
+# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -28,13 +28,16 @@ import queue
import threading
import traceback
import hashlib
+import string
+import random
+import requests.adapters
import websocket
from pathlib import Path
from urllib.parse import urlparse
parent_path = Path(__file__).resolve().parent
-queries_path = parent_path / "graphql"
+queries_path = parent_path / "poe_graphql"
queries = {}
logging.basicConfig()
@@ -80,6 +83,10 @@ class Client:
def __init__(self, token, proxy=None):
self.proxy = proxy
self.session = requests.Session()
+ self.adapter = requests.adapters.HTTPAdapter(
+ pool_connections=100, pool_maxsize=100)
+ self.session.mount("http://", self.adapter)
+ self.session.mount("https://", self.adapter)
if proxy:
self.session.proxies = {
@@ -143,12 +150,12 @@ class Client:
if overwrite_vars:
self.formkey = self.extract_formkey(r.text)
self.viewer = next_data["props"]["pageProps"]["payload"]["viewer"]
+ self.next_data = next_data
return next_data
def get_bot(self, display_name):
url = f'https://poe.com/_next/data/{self.next_data["buildId"]}/{display_name}.json'
- logger.info("Downloading "+url)
r = request_with_retries(self.session.get, url)
@@ -156,8 +163,9 @@ class Client:
return chat_data
def get_bots(self, download_next_data=True):
+ logger.info("Downloading all bots...")
if download_next_data:
- next_data = self.get_next_data()
+ next_data = self.get_next_data(overwrite_vars=True)
else:
next_data = self.next_data
@@ -165,11 +173,23 @@ class Client:
raise RuntimeError("Invalid token or no bots are available.")
bot_list = self.viewer["availableBots"]
+ threads = []
bots = {}
- for bot in bot_list:
+
+ def get_bot_thread(bot):
chat_data = self.get_bot(bot["displayName"])
bots[chat_data["defaultBotObject"]["nickname"]] = chat_data
+ for bot in bot_list:
+ thread = threading.Thread(
+ target=get_bot_thread, args=(bot,), daemon=True)
+ threads.append(thread)
+
+ for thread in threads:
+ thread.start()
+ for thread in threads:
+ thread.join()
+
self.bots = bots
self.bot_names = self.get_bot_names()
return bots
@@ -181,6 +201,10 @@ class Client:
bot_names[bot_nickname] = bot_obj["displayName"]
return bot_names
+ def get_remaining_messages(self, chatbot):
+ chat_data = self.get_bot(self.bot_names[chatbot])
+ return chat_data["defaultBotObject"]["messageLimit"]["numMessagesRemaining"]
+
def get_channel_data(self, channel=None):
logger.info("Downloading channel data...")
r = request_with_retries(self.session.get, self.settings_url)
@@ -447,5 +471,62 @@ class Client:
last_messages = self.get_message_history(chatbot, count=50)[::-1]
logger.info(f"No more messages left to delete.")
+ def create_bot(self, handle, prompt="", base_model="chinchilla", description="",
+ intro_message="", api_key=None, api_bot=False, api_url=None,
+ prompt_public=True, pfp_url=None, linkification=False,
+ markdown_rendering=True, suggested_replies=False, private=False):
+ result = self.send_query("PoeBotCreateMutation", {
+ "model": base_model,
+ "handle": handle,
+ "prompt": prompt,
+ "isPromptPublic": prompt_public,
+ "introduction": intro_message,
+ "description": description,
+ "profilePictureUrl": pfp_url,
+ "apiUrl": api_url,
+ "apiKey": api_key,
+ "isApiBot": api_bot,
+ "hasLinkification": linkification,
+ "hasMarkdownRendering": markdown_rendering,
+ "hasSuggestedReplies": suggested_replies,
+ "isPrivateBot": private
+ })
+
+ data = result["data"]["poeBotCreate"]
+ if data["status"] != "success":
+ raise RuntimeError(
+ f"Poe returned an error while trying to create a bot: {data['status']}")
+ self.get_bots()
+ return data
+
+ def edit_bot(self, bot_id, handle, prompt="", base_model="chinchilla", description="",
+ intro_message="", api_key=None, api_url=None, private=False,
+ prompt_public=True, pfp_url=None, linkification=False,
+ markdown_rendering=True, suggested_replies=False):
+
+ result = self.send_query("PoeBotEditMutation", {
+ "baseBot": base_model,
+ "botId": bot_id,
+ "handle": handle,
+ "prompt": prompt,
+ "isPromptPublic": prompt_public,
+ "introduction": intro_message,
+ "description": description,
+ "profilePictureUrl": pfp_url,
+ "apiUrl": api_url,
+ "apiKey": api_key,
+ "hasLinkification": linkification,
+ "hasMarkdownRendering": markdown_rendering,
+ "hasSuggestedReplies": suggested_replies,
+ "isPrivateBot": private
+ })
+
+ data = result["data"]["poeBotEdit"]
+ if data["status"] != "success":
+ raise RuntimeError(
+ f"Poe returned an error while trying to edit a bot: {data['status']}")
+ self.get_bots()
+ return data
+
load_queries()
diff --git a/quora/graphql/PoeBotCreateMutation.graphql b/quora/graphql/PoeBotCreateMutation.graphql
new file mode 100644
index 00000000..971b4248
--- /dev/null
+++ b/quora/graphql/PoeBotCreateMutation.graphql
@@ -0,0 +1,73 @@
+mutation CreateBotMain_poeBotCreate_Mutation(
+ $model: String!
+ $handle: String!
+ $prompt: String!
+ $isPromptPublic: Boolean!
+ $introduction: String!
+ $description: String!
+ $profilePictureUrl: String
+ $apiUrl: String
+ $apiKey: String
+ $isApiBot: Boolean
+ $hasLinkification: Boolean
+ $hasMarkdownRendering: Boolean
+ $hasSuggestedReplies: Boolean
+ $isPrivateBot: Boolean
+) {
+ poeBotCreate(model: $model, handle: $handle, promptPlaintext: $prompt, isPromptPublic: $isPromptPublic, introduction: $introduction, description: $description, profilePicture: $profilePictureUrl, apiUrl: $apiUrl, apiKey: $apiKey, isApiBot: $isApiBot, hasLinkification: $hasLinkification, hasMarkdownRendering: $hasMarkdownRendering, hasSuggestedReplies: $hasSuggestedReplies, isPrivateBot: $isPrivateBot) {
+ status
+ bot {
+ id
+ ...BotHeader_bot
+ }
+ }
+}
+
+fragment BotHeader_bot on Bot {
+ displayName
+ messageLimit {
+ dailyLimit
+ }
+ ...BotImage_bot
+ ...BotLink_bot
+ ...IdAnnotation_node
+ ...botHelpers_useViewerCanAccessPrivateBot
+ ...botHelpers_useDeletion_bot
+}
+
+fragment BotImage_bot on Bot {
+ displayName
+ ...botHelpers_useDeletion_bot
+ ...BotImage_useProfileImage_bot
+}
+
+fragment BotImage_useProfileImage_bot on Bot {
+ image {
+ __typename
+ ... on LocalBotImage {
+ localName
+ }
+ ... on UrlBotImage {
+ url
+ }
+ }
+ ...botHelpers_useDeletion_bot
+}
+
+fragment BotLink_bot on Bot {
+ displayName
+}
+
+fragment IdAnnotation_node on Node {
+ __isNode: __typename
+ id
+}
+
+fragment botHelpers_useDeletion_bot on Bot {
+ deletionState
+}
+
+fragment botHelpers_useViewerCanAccessPrivateBot on Bot {
+ isPrivateBot
+ viewerIsCreator
+} \ No newline at end of file