hysts's picture
hysts HF Staff
Update app.py
1a06dc4 verified
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()