JulsdL's picture
Refactored the code for better maintainability in preparation for LangGraph multi-agent implementation
c4eb0c2
raw
history blame
248 Bytes
import os
from dotenv import load_dotenv
import aims_tutor.chainlit_frontend as cl_frontend
# Load environment variables
load_dotenv()
# Main entry point
if __name__ == "__main__":
cl_frontend.start_chat()
cl_frontend.handle_user_query()