Spaces:
Sleeping
Sleeping
| """Multi-agent pipeline version with Intent → Composer → Fact Checker.""" | |
| import logging | |
| from src.ui.gradio_app_memory import create_gradio_interface | |
| # Configure logging | |
| logging.basicConfig( | |
| level=logging.INFO, | |
| format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", | |
| ) | |
| logger = logging.getLogger(__name__) | |
| # Create and launch the Gradio interface | |
| logger.info("Starting BFH Studadmin Assist (Multi-Agent Pipeline)...") | |
| demo = create_gradio_interface() | |
| if __name__ == "__main__": | |
| demo.launch() | |