Spaces:
Running on Zero
Running on Zero
| """ | |
| Variables moved to make reading a bit easier - NOW SPLIT INTO MODULES | |
| This file re-exports everything from the split modules for backwards compatibility. | |
| All existing `from relatively_constant_variables import *` will continue to work. | |
| Modules: | |
| - knowledge_base_data.py: RAG knowledge base | |
| - story_elements.py: Player engagement items, story events, conflict ideas | |
| - timeline_and_features.py: Timeline features, game inspirations, mermaid structures | |
| - game_configs.py: Game states, configs, ExampleGameConfigs | |
| - prompts_and_outputs.py: LLM prompts and their outputs | |
| - platform_templates.py: PlayCanvas, Twine, HTML templates | |
| """ | |
| # Re-export everything from split modules | |
| from knowledge_base_data import * | |
| from story_elements import * | |
| from timeline_and_features import * | |
| from game_configs import * | |
| from prompts_and_outputs import * | |
| from platform_templates import * | |
| # Misc items that didn't fit elsewhere | |
| GameIdeasForPromptstodiscusswithSOTALLM = ["Programming Interview", "Coaching an NPC into the main character", "High pressure environment eg. Chefs Kitchen, Pitstop", "Moral Injury"] | |