lastin-ai-2/run.py

14 lines
287 B
Python

import os
import sys
# Add the project root directory to Python path
project_root = os.path.dirname(os.path.abspath(__file__))
sys.path.append(project_root)
# Import and run the main function
from src.main import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())