Spaces:
Running
Running
from pyChatGPT import ChatGPT | |
import gradio as gr | |
import os, json | |
from loguru import logger | |
import random | |
session_token = os.environ.get('SessionToken') | |
# logger.info(f"session_token_: {session_token}") | |
def get_response_from_chatbot(text): | |
try: | |
api = ChatGPT(session_token) | |
resp = api.send_message(text) | |
api.refresh_auth() | |
api.reset_conversation() | |
response = resp['message'] | |
logger.info(f"response_: {response}") | |
except: | |
response = "Sorry, I'm am tired." | |
return response | |
def chat(message, chat_history): | |
out_chat = [] | |
if chat_history != '': | |
out_chat = json.loads(chat_history) | |
# print(f'chat_1_{chat_history}') | |
response = get_response_from_chatbot(message) | |
out_chat.append((message, response)) | |
chat_history = json.dumps(out_chat) | |
# print(f'chat_2_{chat_history}') | |
return out_chat, chat_history | |
start_work = """async() => { | |
function isMobile() { | |
try { | |
document.createEvent("TouchEvent"); return true; | |
} catch(e) { | |
return false; | |
} | |
} | |
function getClientHeight() | |
{ | |
var clientHeight=0; | |
if(document.body.clientHeight&&document.documentElement.clientHeight) { | |
var clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight; | |
} else { | |
var clientHeight = (document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight; | |
} | |
return clientHeight; | |
} | |
function setNativeValue(element, value) { | |
const valueSetter = Object.getOwnPropertyDescriptor(element.__proto__, 'value').set; | |
const prototype = Object.getPrototypeOf(element); | |
const prototypeValueSetter = Object.getOwnPropertyDescriptor(prototype, 'value').set; | |
if (valueSetter && valueSetter !== prototypeValueSetter) { | |
prototypeValueSetter.call(element, value); | |
} else { | |
valueSetter.call(element, value); | |
} | |
} | |
var gradioEl = document.querySelector('body > gradio-app').shadowRoot; | |
if (!gradioEl) { | |
gradioEl = document.querySelector('body > gradio-app'); | |
} | |
if (typeof window['gradioEl'] === 'undefined') { | |
window['gradioEl'] = gradioEl; | |
const page1 = window['gradioEl'].querySelectorAll('#page_1')[0]; | |
const page2 = window['gradioEl'].querySelectorAll('#page_2')[0]; | |
page1.style.display = "none"; | |
page2.style.display = "block"; | |
window['div_count'] = 0; | |
window['chat_bot'] = window['gradioEl'].querySelectorAll('#chat_bot')[0]; | |
window['chat_bot1'] = window['gradioEl'].querySelectorAll('#chat_bot1')[0]; | |
window['checkChange'] = function checkChange() { | |
try { | |
if (window['chat_bot'].children[2].children[0].children.length > window['div_count']) { | |
new_len = window['chat_bot'].children[2].children[0].children.length - window['div_count']; | |
for (var i = 0; i < new_len; i++) { | |
new_div = window['chat_bot'].children[2].children[0].children[window['div_count'] + i].cloneNode(true); | |
window['chat_bot1'].children[2].children[0].appendChild(new_div); | |
} | |
window['div_count'] = chat_bot.children[2].children[0].children.length; | |
} | |
for (var i = 0; i < window['chat_bot1'].children[0].children.length; i++) { | |
window['chat_bot1'].children[0].removeChild(window['chat_bot1'].children[0].children[i]); | |
} | |
for (var i = 0; i < window['chat_bot'].children[0].children.length; i++) { | |
new_div = window['chat_bot'].children[0].children[i].cloneNode(true); | |
window['chat_bot1'].children[0].appendChild(new_div); | |
} | |
} catch(e) { | |
} | |
} | |
window['checkChange_interval'] = window.setInterval("window.checkChange()", 500); | |
} | |
return false; | |
}""" | |
with gr.Blocks(title='chat with chatgpt') as demo: | |
with gr.Group(elem_id="page_1", visible=True) as page_1: | |
with gr.Box(): | |
with gr.Row(): | |
start_button = gr.Button("Let's GO!", elem_id="start-btn", visible=True) | |
start_button.click(fn=None, inputs=[], outputs=[], _js=start_work) | |
with gr.Group(elem_id="page_2", visible=False) as page_2: | |
with gr.Row(elem_id="prompt_row"): | |
chatbot = gr.Chatbot(elem_id="chat_bot").style(color_map=("green", "blue")) | |
chatbot1 = gr.Chatbot(elem_id="chat_bot1").style(color_map=("green", "blue")) | |
with gr.Row(): | |
prompt_input0 = gr.Textbox(lines=1, label="prompt",show_label=False) | |
chat_history = gr.Textbox(lines=4, label="prompt", visible=False) | |
submit_btn = gr.Button(value = "submit",elem_id="submit-btn").style( | |
margin=True, | |
rounded=(True, True, True, True), | |
width=100 | |
) | |
submit_btn.click(fn=chat, | |
inputs=[prompt_input0, chat_history], | |
outputs=[chatbot, chat_history], | |
) | |
demo.launch(debug = True) |