Gradio_App / mygradio.py
Wei-Meng's picture
Upload folder using huggingface_hub
935be53 verified
raw
history blame contribute delete
310 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(share = True)