File size: 180 Bytes
f5754e0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""
Entry point for the application
You can run the API server using: uv run python main.py
"""

from src.graph_rag_service.main import main

if __name__ == "__main__":
    main()