Spaces:
Runtime error
Runtime error
File size: 276 Bytes
d2ad521 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"""
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()
|