Spaces:
Runtime error
Runtime error
import gradio as gr | |
from employee_3 import chatbot_function | |
with gr.Blocks() as demo: | |
gr.Markdown("""# Employees' Reviews""") | |
with gr.Row(): | |
with gr.Column(): | |
input_text = gr.Textbox(label='Input Text') | |
submit_buttton = gr.Button('Submit') | |
with gr.Column(): | |
output_text = gr.Textbox() | |
submit_buttton.click( | |
fn = chatbot_function, | |
inputs=input_text, | |
outputs=output_text, | |
) | |
demo.launch() |