Spaces:
Sleeping
Sleeping
feat: Enhanced Universal Digital FTE — Advanced Test Suite & Multi-Client Refinement. Added Jikan bulk ingestion, hardened server logic, and a comprehensive suite of load, stress, and behavioral tests. Updated UI for live monitoring and active database switching.
6c653ef | import sys | |
| import os | |
| from pathlib import Path | |
| # Add project root to sys.path to import app | |
| sys.path.append(os.getcwd()) | |
| from app import get_config | |
| def debug_cfg(): | |
| cfg = get_config("mal") | |
| print(f"Secondary Prompt: {cfg.get('secondary_prompt', 'NOT FOUND')}") | |
| if __name__ == "__main__": | |
| debug_cfg() | |