hugegraph-ai
integrates HugeGraph with artificial intelligence capabilities, providing comprehensive support for developers to build AI-powered graph applications.
[!NOTE] For a complete deployment guide and detailed examples, please refer to hugegraph-llm/README.md
# Clone the repository git clone https://github.com/apache/incubator-hugegraph-ai.git cd incubator-hugegraph-ai # Set up environment and start services cp docker/env.template docker/.env # Edit docker/.env to set your PROJECT_PATH cd docker # same as `docker-compose` (Legacy) docker compose -f docker-compose-network.yml up -d # Access services: # - HugeGraph Server: http://localhost:8080 # - RAG Service: http://localhost:8001
# 1. Start HugeGraph Server docker run -itd --name=server -p 8080:8080 hugegraph/hugegraph # 2. Clone and set up the project git clone https://github.com/apache/incubator-hugegraph-ai.git cd incubator-hugegraph-ai # 3. Install dependencies with workspace management # uv sync automatically creates venv (.venv) and installs base dependencies # NOTE: If download is slow, uncomment mirror lines in pyproject.toml or use: uv config --global index.url https://pypi.tuna.tsinghua.edu.cn/simple # Or create local uv.toml with mirror settings to avoid git diff (see uv.toml example in root) uv sync --extra llm # Install LLM-specific dependencies # Or install all optional dependencies: uv sync --all-extras # 4. Activate virtual environment (recommended for easier commands) source .venv/bin/activate # 5. Start the demo (no uv run prefix needed when venv activated) cd hugegraph-llm python -m hugegraph_llm.demo.rag_demo.app # Visit http://127.0.0.1:8001
[!NOTE] Examples assume you've activated the virtual environment with
source .venv/bin/activate
from hugegraph_llm.operators.graph_rag_task import RAGPipeline # Initialize RAG pipeline graph_rag = RAGPipeline() # Ask questions about your graph result = (graph_rag .extract_keywords(text="Tell me about Al Pacino.") .keywords_to_vid() .query_graphdb(max_deep=2, max_graph_items=30) .merge_dedup_rerank() .synthesize_answer() .run())
from hugegraph_llm.models.llms.init_llm import LLMs from hugegraph_llm.operators.kg_construction_task import KgBuilder # Build KG from text TEXT = "Your text content here..." builder = KgBuilder(LLMs().get_chat_llm()) (builder .import_schema(from_hugegraph="hugegraph") .chunk_split(TEXT) .extract_info(extract_type="property_graph") .commit_to_hugegraph() .run())
# Install ML dependencies (ml module is not in workspace) uv sync --extra ml source .venv/bin/activate # Run ML algorithms cd hugegraph-ml python examples/your_ml_example.py
Large language model integration for graph applications:
Graph machine learning with 20+ implemented algorithms:
[!NOTE] hugegraph-ml is not part of the workspace but linked via path dependency
Python client for HugeGraph operations:
And here are links of other repositories:
We welcome contributions! Please see our contribution guidelines for details.
[!IMPORTANT] For project contributors using AI coding tools, please follow these guidelines:
- Start Here: First read
rules/README.md
for the complete AI-assisted development workflow- Module Context: When
basic-introduction.md
exists in any module, rename it as context for your LLM (e.g.,CLAUDE.md
,copilot-instructions.md
)- Documentation Standards: Follow the structured documentation approach in
rules/prompts/project-general.md
- Deep Analysis: For complex features, refer to
rules/prompts/project-deep.md
for comprehensive code analysis methodology- Code Quality: Maintain consistency with existing patterns and ensure proper type annotations
- Testing: Follow TDD principles and ensure comprehensive test coverage for new features
These guidelines ensure consistent code quality and maintainable development workflow with AI assistance.
Development Setup:
# 1. Clone and navigate to project git clone https://github.com/apache/incubator-hugegraph-ai.git cd incubator-hugegraph-ai # 2. Install all development dependencies # uv sync creates venv automatically and installs base dependencies uv sync --all-extras # Install all optional dependency groups source .venv/bin/activate # Activate for easier command usage # 3. Run tests for workspace members cd hugegraph-llm && pytest cd ../hugegraph-python-client && pytest # 4. Run tests for path dependencies cd ../hugegraph-ml && pytest # If tests exist # 5. Format and lint code ./style/code_format_and_analysis.sh # 6. Add new dependencies to workspace uv add numpy # Add to base dependencies uv add --group dev pytest-mock # Add to dev group
Key Points:
hugegraph-ai is licensed under Apache 2.0 License.