from dotenv import load_dotenv from src.ui import build_app load_dotenv() app = build_app() if __name__ == "__main__": app.launch()