gradioappdemo / main.py
PTWZ's picture
Upload folder using huggingface_hub
5a2de49 verified
raw
history blame
416 Bytes
# 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)