Xmaster6y's picture
call interface
d2ad521 unverified
raw
history blame
276 Bytes
"""
Main Gradio module.
"""
import gradio as gr
from src import (
call_interface,
)
demo = gr.TabbedInterface(
[
call_interface.interface,
],
[
"Call",
],
title="GPT-2 Stockfish Debug",
analytics_enabled=False,
)
demo.launch()