gradio
Installation
SKILL.md
Gradio
Installation
# Install Gradio
pip install gradio
Quick Start — Simple Interface
# hello.py — Minimal Gradio app with a text interface
import gradio as gr
def greet(name: str, intensity: int) -> str:
return "Hello, " + name + "!" * intensity
demo = gr.Interface(
Related skills