Spaces:
Running
Running
File size: 287 Bytes
41a0620 0d998a6 41a0620 0d998a6 41a0620 0d998a6 41a0620 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""
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()
|