File size: 11,407 Bytes
576ab27 337d5a6 576ab27 73c385a cf5ac16 576ab27 73c385a cf5ac16 73c385a c472017 73c385a c472017 73c385a 576ab27 c472017 576ab27 c472017 576ab27 73c385a 576ab27 73c385a 576ab27 73c385a 576ab27 c472017 576ab27 73c385a 576ab27 14f318a c472017 25d16ea 576ab27 cf5ac16 c472017 25d16ea c472017 25d16ea c472017 25d16ea c472017 25d16ea 576ab27 337d5a6 14f318a 576ab27 73c385a b876d66 25d16ea b876d66 25d16ea c472017 337d5a6 c472017 73c385a 25d16ea 576ab27 14f318a 337d5a6 576ab27 25d16ea 576ab27 14f318a 73c385a 576ab27 14f318a 73c385a 14f318a 73c385a 14f318a 73c385a 14f318a 73c385a 14f318a 73c385a 14f318a 576ab27 14f318a ea82286 25d16ea ea82286 25d16ea ea82286 25d16ea 14f318a ea82286 25d16ea b876d66 4848391 25d16ea b876d66 14f318a 73c385a 25d16ea 14f318a 4848391 25d16ea 14f318a 73c385a 14f318a 576ab27 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
import io
from fastapi import FastAPI, File, UploadFile
import subprocess
import os
import requests
import random
import shutil
import json
# from transformers import AutoModelForQuestionAnswering, AutoTokenizer, pipeline
from pydantic import BaseModel
from typing import Annotated
from fastapi import Form
import selenium
from selenium import webdriver
from selenium.webdriver import ChromeOptions
from selenium.webdriver.chrome.service import Service
import threading
import random
import string
import time
# from selenium.webdriver.firefox.options import Options
# options = FirefoxOptions()
# options.headless = True
# service = Service()
# driver = webdriver.Firefox(options= options,service=service)
# driver.get("https://yuntian-deng-chatgpt.hf.space/")
# driver.get("https://yuntian-deng-chatgpt.hf.space/")
class Query(BaseModel):
text: str
host:str
from fastapi import FastAPI, Request, Depends, UploadFile, File
from fastapi.exceptions import HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=True,
allow_methods=['*'],
allow_headers=['*'],
)
# cred = credentials.Certificate('key.json')
# app1 = firebase_admin.initialize_app(cred)
# db = firestore.client()
# data_frame = pd.read_csv('data.csv')
from selenium.webdriver.common.by import By
from pymongo.mongo_client import MongoClient
@app.on_event("startup")
async def startup_event():
print("on startup")
# t = threading.Thread(target=makeqimg)
# t.start()
mycol = None
@app.post("/url")
async def get_url(request: Request ):
return "k"
# data = await request.json()
# text = data['url']
# mongo_url=text
# print("mongo url ",text)
# global mycol
# if mycol==None:
# myclient = MongoClient(mongo_url)
# try:
# myclient.admin.command('ping')
# print("Pinged your deployment. You successfully connected to MongoDB!")
# except Exception as e:
# print(e)
# mydb = myclient['open-ai-api-keys']
# mycol= mydb['key']
# extract()
def extract():
options = ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('-headless')
service = Service()
driver = webdriver.Chrome(options= options,service=service)
global mycol
# global driver
if True:
# time.sleep(60)
try:
driver.get("https://talkai.info/chat/")
element = driver.find_element(By.CSS_SELECTOR,".chat")
api_key = element.get_attribute("data-api-key")
dict={"key":"open-ai"}
mycol.delete_one(dict)
dict={"key":"open-ai","value":api_key}
mycol.insert_one(dict)
print(api_key)
driver.delete_all_cookies()
driver.quit()
except Exception as e:
print('error in extract ',e)
pass
# time.sleep(60)
from queue import Queue
chatq = Queue()
imgq= Queue()
def makeqchat():
while chatq.qsize()<2:
print("appending in chat queue")
options = ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('-headless')
service = Service()
driver = webdriver.Chrome(options= options,service=service)
driver.get("https://talkai.info/chat/")
chatq.put(driver)
def makeqimg():
while imgq.qsize()<2:
print("appending in img queue")
options = ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('-headless')
service = Service()
driver = webdriver.Chrome(options= options,service=service)
driver.get("https://talkai.info/image/")
imgq.put(driver)
@app.post("/")
async def get_answer(request: Request ):
data = await request.json()
text = data['text']
host= ''
temperature=-1
try:
temperature= data['temperature']
temperature= float(temperature)
temperature= round(temperature,1)
except:
print("No temperature")
# N = 20
# res = ''.join(random.choices(string.ascii_uppercase +
# string.digits, k=N))
# res= res+ str(time.time())
id= ''
# t = threading.Thread(target=do_ML, args=(id,text,host,0))
# t.start()
res= do_ML(id,text,host,0,temperature)
dict={"ChatGPT":res}
# dict= {"id":id}
return JSONResponse(dict)
def do_ML(id:str,text:str,host:str, trycount:int,temperature:float):
try:
starttime=time.time()
options = ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('-headless')
service = Service()
driver = webdriver.Chrome(options= options,service=service)
driver.get("https://talkai.info/chat/")
if temperature>=0 and temperature<=2:
try:
print("setting temperature ",temperature)
while True:
currtime= time.time()
if(currtime>starttime+10):
return "Requested Could not be proceed"
try:
setting_button = driver.find_element(By.ID, "openSettings")
setting_button.click()
break
except:
time.sleep(0.2)
while True:
currtime= time.time()
if(currtime>starttime+10):
return "Requested Could not be proceed"
try:
input_element = driver.find_element(By.CLASS_NAME,"styled-slider")
new_value = temperature
driver.execute_script("arguments[0].value = arguments[1]", input_element, new_value)
break
except:
time.sleep(0.2)
while True:
currtime= time.time()
if(currtime>starttime+10):
return "Requested Could not be proceed"
try:
confirm_button = driver.find_element(By.CLASS_NAME, "settingsButtonConfirm")
confirm_button.click()
break
except:
time.sleep(0.2)
except:
print("could not set temperature")
while True:
currtime= time.time()
if(currtime>starttime+10):
return "Requested Could not be proceed"
try:
textarea = driver.find_element(By.CSS_SELECTOR, "textarea")
textarea.send_keys(text)
button = driver.find_element(By.CLASS_NAME, "sectionChatFormButton")
button.click()
break
except:
time.sleep(0.2)
prev =""
# time.sleep(2)
while True:
time.sleep(0.2)
# currtime= time.time()
# if(currtime>starttime+18.5):
# return "Requested Could not be proceed"
value=""
try:
messages = driver.find_elements(By.CLASS_NAME, 'messageContain')
last_message_contain = messages[len(messages)-2]
value = last_message_contain.text
value = value[8:len(value)]
print(value)
if value=="Please, wait...":
continue
except:
continue
driver.delete_all_cookies()
driver.quit()
return value
except:
print("Error")
driver.delete_all_cookies()
if trycount>3:
return
driver.quit()
return do_ML(id,text,host,trycount+1)
@app.post("/image")
async def get_answer(q: Query ):
text = q.text
host= q.host
# N = 20
# res = ''.join(random.choices(string.ascii_uppercase +
# string.digits, k=N))
# res= res+ str(time.time())
id= ''
# t = threading.Thread(target=do_ML2, args=(id,text,host,0))
# t.start()
url = do_ML2(id,text,host,0)
dict= {"url":url}
# dict= {"id":id}
return JSONResponse(dict)
def do_ML2(id:str,text:str,host:str, trycount:int):
starttime=time.time()
options = ChromeOptions()
options.add_argument('--no-sandbox')
options.add_argument('-headless')
service = Service()
driver = webdriver.Chrome(options= options,service=service)
driver.get("https://talkai.info/image/")
try:
while True:
currtime= time.time()
if(currtime>starttime+5):
raise ValueError("h")
# return "Requested Could not be proceed"
try:
textarea = driver.find_element(By.CSS_SELECTOR, "textarea")
textarea.send_keys(text)
time.sleep(0.1)
button = driver.find_element(By.CLASS_NAME, "sectionChatFormButton")
button.click()
break
except:
time.sleep(0.2)
# time.sleep(2)
while True:
currtime= time.time()
if(currtime>starttime+40):
raise ValueError("j")
return "Requested Could not be proceed"
time.sleep(0.2)
# currtime= time.time()
# if(currtime>starttime+18.5):
try:
messages = driver.find_elements(By.CLASS_NAME,"messageContain")
x= messages[len(messages)-2]
# Extract the text from the 'p' element within the 'div' with class 'messageContain'
message_text = x.find_element(By.TAG_NAME,"p").text
if message_text=='The request could not be processed':
return "The request could not be processed"
except Exception as e:
print(e)
pass
# return "Request Could not be proceed"
try:
messages = driver.find_elements(By.XPATH, "//div[@class='messageContain']/p/img")
last_message_contain = messages[len(messages)-2]
src = last_message_contain.get_attribute("src")
print(src)
driver.delete_all_cookies()
driver.quit()
return src
break
except:
continue
except:
print("Error")
driver.delete_all_cookies()
if trycount>2:
return "Request Could not be proceed"
driver.quit()
return do_ML2(id,text,host,trycount+1)
|