echo / app.py
Tonic's picture
Update app.py
c2bec13 verified
raw
history blame contribute delete
197 Bytes
import gradio as gr
def echo(echo, slider):
return f"Echo: {echo}, Intensity: {slider}"
demo = gr.Interface(
fn=echo,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()