graph-rag / main.py
GitHub Action
Automated sync to Hugging Face
b602961
raw
history blame contribute delete
180 Bytes
"""
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()