2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
2023-08-27 15:37:44 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
import time
|
2023-09-03 08:26:26 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
from ...typing import CreateResult, Messages
|
2024-01-01 16:48:57 +00:00
|
|
|
from ..base_provider import AbstractProvider
|
2023-11-20 13:00:40 +00:00
|
|
|
from ..helper import format_prompt
|
2023-12-02 04:40:07 +00:00
|
|
|
from ...webdriver import WebDriver, WebDriverSession
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
models = {
|
|
|
|
"theb-ai": "TheB.AI",
|
|
|
|
"theb-ai-free": "TheB.AI Free",
|
|
|
|
"gpt-3.5-turbo": "GPT-3.5 Turbo (New)",
|
|
|
|
"gpt-3.5-turbo-16k": "GPT-3.5-16K",
|
|
|
|
"gpt-4-turbo": "GPT-4 Turbo",
|
|
|
|
"gpt-4": "GPT-4",
|
|
|
|
"gpt-4-32k": "GPT-4 32K",
|
|
|
|
"claude-2": "Claude 2",
|
|
|
|
"claude-instant-1": "Claude Instant 1.2",
|
|
|
|
"palm-2": "PaLM 2",
|
|
|
|
"palm-2-32k": "PaLM 2 32K",
|
|
|
|
"palm-2-codey": "Codey",
|
|
|
|
"palm-2-codey-32k": "Codey 32K",
|
|
|
|
"vicuna-13b-v1.5": "Vicuna v1.5 13B",
|
|
|
|
"llama-2-7b-chat": "Llama 2 7B",
|
|
|
|
"llama-2-13b-chat": "Llama 2 13B",
|
|
|
|
"llama-2-70b-chat": "Llama 2 70B",
|
|
|
|
"code-llama-7b": "Code Llama 7B",
|
|
|
|
"code-llama-13b": "Code Llama 13B",
|
|
|
|
"code-llama-34b": "Code Llama 34B",
|
|
|
|
"qwen-7b-chat": "Qwen 7B"
|
|
|
|
}
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
class Theb(AbstractProvider):
|
2023-11-17 10:16:49 +00:00
|
|
|
url = "https://beta.theb.ai"
|
|
|
|
working = True
|
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
supports_gpt_4 = True
|
|
|
|
supports_stream = True
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
@classmethod
|
2023-07-28 10:07:17 +00:00
|
|
|
def create_completion(
|
2023-11-17 10:16:49 +00:00
|
|
|
cls,
|
2023-07-28 10:07:17 +00:00
|
|
|
model: str,
|
2023-10-09 11:33:20 +00:00
|
|
|
messages: Messages,
|
|
|
|
stream: bool,
|
|
|
|
proxy: str = None,
|
2023-11-20 13:00:40 +00:00
|
|
|
webdriver: WebDriver = None,
|
2023-11-19 04:36:04 +00:00
|
|
|
virtual_display: bool = True,
|
2023-10-09 11:33:20 +00:00
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
2023-11-17 10:16:49 +00:00
|
|
|
if model in models:
|
|
|
|
model = models[model]
|
|
|
|
prompt = format_prompt(messages)
|
2023-11-20 13:00:40 +00:00
|
|
|
web_session = WebDriverSession(webdriver, virtual_display=virtual_display, proxy=proxy)
|
2023-11-19 04:36:04 +00:00
|
|
|
with web_session as driver:
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
|
|
from selenium.webdriver.support import expected_conditions as EC
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-11-19 04:36:04 +00:00
|
|
|
# Register fetch hook
|
|
|
|
script = """
|
|
|
|
window._fetch = window.fetch;
|
2023-11-20 13:00:40 +00:00
|
|
|
window.fetch = async (url, options) => {
|
2023-11-19 04:36:04 +00:00
|
|
|
// Call parent fetch method
|
2023-11-20 13:00:40 +00:00
|
|
|
const response = await window._fetch(url, options);
|
2023-11-19 04:36:04 +00:00
|
|
|
if (!url.startsWith("/api/conversation")) {
|
|
|
|
return result;
|
|
|
|
}
|
2023-11-20 13:00:40 +00:00
|
|
|
// Copy response
|
|
|
|
copy = response.clone();
|
|
|
|
window._reader = response.body.pipeThrough(new TextDecoderStream()).getReader();
|
|
|
|
return copy;
|
2023-11-19 04:36:04 +00:00
|
|
|
}
|
|
|
|
window._last_message = "";
|
|
|
|
"""
|
|
|
|
driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", {
|
|
|
|
"source": script
|
|
|
|
})
|
|
|
|
|
|
|
|
try:
|
|
|
|
driver.get(f"{cls.url}/home")
|
|
|
|
wait = WebDriverWait(driver, 5)
|
|
|
|
wait.until(EC.visibility_of_element_located((By.ID, "textareaAutosize")))
|
|
|
|
except:
|
|
|
|
driver = web_session.reopen()
|
|
|
|
driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", {
|
|
|
|
"source": script
|
|
|
|
})
|
|
|
|
driver.get(f"{cls.url}/home")
|
|
|
|
wait = WebDriverWait(driver, 240)
|
|
|
|
wait.until(EC.visibility_of_element_located((By.ID, "textareaAutosize")))
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
try:
|
|
|
|
driver.find_element(By.CSS_SELECTOR, ".driver-overlay").click()
|
|
|
|
driver.find_element(By.CSS_SELECTOR, ".driver-overlay").click()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
if model:
|
|
|
|
# Load model panel
|
|
|
|
wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, "#SelectModel svg")))
|
|
|
|
time.sleep(0.1)
|
|
|
|
driver.find_element(By.CSS_SELECTOR, "#SelectModel svg").click()
|
|
|
|
try:
|
|
|
|
driver.find_element(By.CSS_SELECTOR, ".driver-overlay").click()
|
|
|
|
driver.find_element(By.CSS_SELECTOR, ".driver-overlay").click()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
# Select model
|
|
|
|
selector = f"div.flex-col div.items-center span[title='{model}']"
|
|
|
|
wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, selector)))
|
|
|
|
span = driver.find_element(By.CSS_SELECTOR, selector)
|
|
|
|
container = span.find_element(By.XPATH, "//div/../..")
|
|
|
|
button = container.find_element(By.CSS_SELECTOR, "button.btn-blue.btn-small.border")
|
|
|
|
button.click()
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-10-23 07:46:25 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
# Submit prompt
|
|
|
|
wait.until(EC.visibility_of_element_located((By.ID, "textareaAutosize")))
|
|
|
|
driver.find_element(By.ID, "textareaAutosize").send_keys(prompt)
|
|
|
|
driver.find_element(By.ID, "textareaAutosize").send_keys(Keys.ENTER)
|
2023-08-20 15:10:02 +00:00
|
|
|
|
2023-11-17 10:16:49 +00:00
|
|
|
# Read response with reader
|
|
|
|
script = """
|
|
|
|
if(window._reader) {
|
|
|
|
chunk = await window._reader.read();
|
|
|
|
if (chunk['done']) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
message = '';
|
2023-11-20 13:00:40 +00:00
|
|
|
chunk['value'].split('\\r\\n').forEach((line, index) => {
|
2023-11-17 10:16:49 +00:00
|
|
|
if (line.startsWith('data: ')) {
|
|
|
|
try {
|
|
|
|
line = JSON.parse(line.substring('data: '.length));
|
|
|
|
message = line["args"]["content"];
|
|
|
|
} catch(e) { }
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (message) {
|
|
|
|
try {
|
|
|
|
return message.substring(window._last_message.length);
|
|
|
|
} finally {
|
|
|
|
window._last_message = message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
"""
|
|
|
|
while True:
|
|
|
|
chunk = driver.execute_script(script)
|
|
|
|
if chunk:
|
|
|
|
yield chunk
|
|
|
|
elif chunk != "":
|
|
|
|
break
|
|
|
|
else:
|
2023-11-19 04:36:04 +00:00
|
|
|
time.sleep(0.1)
|