Spaces:
Runtime error
Runtime error
File size: 230 Bytes
f5d76bb |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
# Load the Gradio space
demo = gr.load(name="Yuanshi/OminiControl", src="spaces")
# Disable API access for all functions
if hasattr(demo, "fns"):
for fn in demo.fns.values():
fn.api_name = False
|