File size: 245 Bytes
312c075
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

def chatbot(input_text):
  # Use YouChat to process the input and generate a response
  response = youchat.process(input_text)
  return response

iface = gr.Interface(fn=chatbot, inputs="text", outputs="text")
iface.launch()