MyGradioApp / mygradio.py
Wei-Meng's picture
Upload folder using huggingface_hub
4123d50 verified
raw
history blame contribute delete
298 Bytes
import gradio as gr
def my_chatbot(message):
return "Hello, " + message
# bind it to gradio
interface = gr.Interface(fn = my_chatbot,
title = "Hello, Gradio!",
inputs = "text",
outputs = "text")
interface.launch()