Files
Source/pythonSource/gradio/app1.py
T
2026-05-26 22:31:40 +09:00

13 lines
228 B
Python

import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
api_name="predict"
)
demo.launch()