MyAIApp / myapp.py
Wei-Meng's picture
Upload folder using huggingface_hub
8e0a93c verified
raw
history blame contribute delete
228 Bytes
import gradio as gr
def chat(message):
return f"Hello, {message}"
# bind it to gradio
gr.Interface(fn = chat,
title = "Hello, Gradio!",
inputs = "text",
outputs = "text").launch()