AI_Chatbot / debug_cfg.py
Hamza-Naimat's picture
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
Raw
History Blame Contribute Delete
315 Bytes
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()