File size: 228 Bytes
8e0a93c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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()