Spaces:
Building
Building
File size: 416 Bytes
5a2de49 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# This is a sample Python script.
# Press ⌃R to execute it or replace it with your code.
# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
import gradio as gr
def greet(name, intensity):
return "Hello........., " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch(share=False)
|