Spaces:
Running on Zero
Running on Zero
| """UI Tabs Package for Game Config IDE. | |
| This package contains modular UI tab components that can be | |
| imported and used within the main Gradio application. | |
| """ | |
| from .story_graph_tab import create_story_graph_tab | |
| from .study_3d_tab import create_3d_study_tab | |
| from .resources_hub_tab import create_resources_hub_tab | |
| from .mechanic_translation_tab import create_mechanic_translation_tab | |
| from .llm_playtest_tab import create_llm_playtest_tab | |
| from .big_rpg_scale_tab import create_big_rpg_scale_tab | |
| from .dnd_gm_tab import create_dnd_gm_tab | |
| from .story_architect_tab import create_story_architect_tab | |
| from .narrative_engine_tab import create_narrative_engine_tab | |
| from .config_analysis_tab import create_config_analysis_tab | |
| __all__ = [ | |
| 'create_story_graph_tab', | |
| 'create_3d_study_tab', | |
| 'create_resources_hub_tab', | |
| 'create_mechanic_translation_tab', | |
| 'create_llm_playtest_tab', | |
| 'create_big_rpg_scale_tab', | |
| 'create_dnd_gm_tab', | |
| 'create_story_architect_tab', | |
| 'create_narrative_engine_tab', | |
| 'create_config_analysis_tab', | |
| ] | |