File size: 230 Bytes
4d35acc
 
 
 
 
 
 
 
1a06dc4
4d35acc
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def echo(message, history):
    return f"Echo: {message}"

gr.ChatInterface(
    fn=echo,
    examples=["What is the capital of France?"],
    run_examples_on_click=False,
    cache_examples=False,
).launch()