ChatBot / app.py
Rehman1603's picture
Create app.py
9e588c3
raw
history blame contribute delete
368 Bytes
import gradio as gr
from ChatBot import chat_clone
block=gr.Blocks()
with block:
gr.Markdown("<h1>AI Chat bot for Student Career Consuling</h1>")
chatbot=gr.Chatbot()
message=gr.Textbox(placeholder="Enter your Query")
state=gr.State()
send=gr.Button("Send")
send.click(chat_clone,inputs=[message,state],outputs=[chatbot,state])
block.launch(debug=True)