chatGPT / app.py
yizhangliu's picture
Update app.py
c304179
raw
history blame
904 Bytes
from pyChatGPT import ChatGPT
import gradio as gr
import os
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, history):
history = history or []
response = get_response_from_chatbot(message)
history.append((message, response))
return history, history
chatbot = gr.Chatbot().style(color_map=("green", "gray"))
demo = gr.Interface(
chat,
["text", "state"],
[chatbot, "state"],
allow_flagging="never",
)
demo.launch(debug = True)