File size: 323 Bytes
17e463c
d685ec9
 
 
 
17e463c
 
d685ec9
17e463c
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
import chatter

prompt_input = gr.Textbox(label="Prompt")
response_output = gr.Textbox(label="Response")

def chatbot_interface(prompt):
    response = chatter.answer(prompt)
    return response
    
iface = gr.Interface(fn=chatbot_interface, inputs=prompt_input, outputs=response_output)
iface.launch()