bfh-studadmin-assist / app_multi.py
awellis's picture
Add app_multi.py for multi-agent pipeline and update README to document both versions
3d30148
raw
history blame contribute delete
521 Bytes
"""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()