FramePack-F1 / app.py
Munz2Turipa's picture
Upload folder using huggingface_hub
222129f verified
import gradio as gr
def greet(name):
return f"Hello, {name}!"
# Setting up the Gradio interface
interface = gr.Interface(fn=greet, inputs="text", outputs="text")
# Launch the app and make it work inside Docker
interface.launch(server_name="0.0.0.0", server_port=7860)