demo / app.py
Xmaster6y's picture
new repo structure
0d998a6 unverified
raw
history blame
287 Bytes
"""
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()