File size: 476 Bytes
646981b 4afc8ce 646981b 9d5041f 4afc8ce 646981b 9d5041f 646981b 9d5041f 4afc8ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
Context Engineering Visualizer
Main entry point for the application
"""
import sys
import os
# Add src directory to path
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'src'))
from config import setup_logger
from app.ui import launch_ui
# Setup application logger - this initializes handlers
logger = setup_logger("context_visualizer")
if __name__ == "__main__":
logger.info("Starting Context Engineering Visualizer")
launch_ui()
|