Duplicated from kolibril13/tldraw-solara-test
4373daa f10a729 6fa48ff f10a729 6fa48ff f10a729
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr def greet(name, intensity): return "Hello22, " + name + "!" * int(intensity) demo = gr.Interface( fn=greet, inputs=["text", "slider"], outputs=["text"], ) demo.launch()