Spaces:
Runtime error
Runtime error
""" | |
Main Gradio module. | |
""" | |
import gradio as gr | |
from src.interfaces import feature_interface | |
demo = gr.TabbedInterface( | |
[ | |
feature_interface, | |
], | |
[ | |
"Feature Activation", | |
], | |
title="Lczero Planning Demo", | |
analytics_enabled=False, | |
) | |
demo.launch() | |