Skip to main content

Memgraph graph database adapter for cognee

Project description

Cognee Community Graph Adapter - Memgraph

This package provides a Memgraph graph database adapter for the Cognee framework.

Installation

pip install cognee-community-graph-adapter-memgraph

Usage

import asyncio
import cognee
from cognee.infrastructure.databases.graph import get_graph_engine
from cognee_community_graph_adapter_memgraph import register
import pathlib
import os
import pprint

async def main():
    # Register the Memgraph adapter
    register()
    
    # Configure cognee to use Memgraph
    cognee.config.set_graph_database_provider("memgraph")
    
    # Set up your Memgraph connection
    cognee.config.set_graph_db_config({
        "graph_database_url": "bolt://localhost:7687",
        "graph_database_username": "memgraph",
        "graph_database_password": "memgraph"
    })
    
    # Optional: Set custom data and system directories
    system_path = pathlib.Path(__file__).parent
    cognee.config.system_root_directory(os.path.join(system_path, ".cognee_system"))
    cognee.config.data_root_directory(os.path.join(system_path, ".data_storage"))
    
    # Sample data to add to the knowledge graph
    sample_data = [
        "Artificial intelligence is a branch of computer science that aims to create intelligent machines.",
        "Machine learning is a subset of AI that focuses on algorithms that can learn from data.",
        "Deep learning is a subset of machine learning that uses neural networks with many layers.",
        "Natural language processing enables computers to understand and process human language.",
        "Computer vision allows machines to interpret and make decisions based on visual information."
    ]
    
    try:
        print("Adding data to Cognee...")
        await cognee.add(sample_data, "ai_knowledge")
        
        print("Processing data with Cognee...")
        await cognee.cognify(["ai_knowledge"])
        
        print("Searching for insights...")
        search_results = await cognee.search(
            query_type=cognee.SearchType.GRAPH_COMPLETION,
            query_text="artificial intelligence"
        )
        
        print(f"Found {len(search_results)} insights:")
        for i, result in enumerate(search_results, 1):
            print(f"{i}. {result}")
            
        print("\nSearching with Chain of Thought reasoning...")
        await cognee.search(
            query_type=cognee.SearchType.GRAPH_COMPLETION_COT,
            query_text="How does machine learning relate to artificial intelligence and what are its applications?"
        )

        print("\nYou can get the graph data directly, or visualize it in an HTML file like below:")
        
        # Get graph data directly
        graph_engine = await get_graph_engine()
        graph_data = await graph_engine.get_graph_data()
        
        print("\nDirect graph data:")
        pprint.pprint(graph_data)

        # Or visualize it in HTML
        print("\nVisualizing the graph...")
        await cognee.visualize_graph(system_path / "graph.html")
        print(f"Graph visualization saved to {system_path / 'graph.html'}")

    except Exception as e:
        print(f"Error: {e}")
        print("Make sure Memgraph is running and accessible at bolt://localhost:7687")

if __name__ == "__main__":
    asyncio.run(main())

Requirements

  • Python >= 3.10, <= 3.13
  • Memgraph database instance
  • neo4j driver (for Bolt protocol support)

Configuration

The adapter requires the following configuration using the set_graph_db_config() method:

cognee.config.set_graph_db_config({
    "graph_database_url": "bolt://localhost:7687",      # Memgraph database URL
    "graph_database_username": "memgraph",              # Username for authentication
    "graph_database_password": "memgraph"               # Password for authentication
})

Environment Variables

Set the following environment variables or pass them directly in the config:

export GRAPH_DATABASE_URL="bolt://localhost:7687"
export GRAPH_DATABASE_USERNAME="memgraph"
export GRAPH_DATABASE_PASSWORD="memgraph"

Alternative: You can also use the .env.template file from the main cognee repository. Copy it to your project directory, rename it to .env, and fill in your Memgraph configuration values.

Optional Configuration

You can also set custom directories for system and data storage:

cognee.config.system_root_directory("/path/to/system")
cognee.config.data_root_directory("/path/to/data")

Features

  • Full support for Memgraph's property graph model
  • Optimized queries for graph operations
  • Async/await support
  • Transaction support
  • Comprehensive error handling
  • Advanced search functionality:
    • Graph completion search
    • Chain of Thought (COT) reasoning
  • Direct graph data access via get_graph_engine()
  • HTML graph visualization with cognee.visualize_graph()
  • Custom directory configuration

Example

See example.py for a complete working example that demonstrates:

  • Setting up the Memgraph adapter
  • Adding comprehensive AI/ML knowledge to the graph
  • Processing data with cognee
  • Searching with graph completion
  • Chain of Thought reasoning searches
  • Direct graph data access and inspection
  • HTML graph visualization
  • Comprehensive error handling

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cognee_community_graph_adapter_memgraph-0.1.4.tar.gz (400.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file cognee_community_graph_adapter_memgraph-0.1.4.tar.gz.

File metadata

File hashes

Hashes for cognee_community_graph_adapter_memgraph-0.1.4.tar.gz
Algorithm Hash digest
SHA256 65551dd02bc88041ccd33c87f6ac97e3aba34357a8edb7172f4e5721431a1999
MD5 823880f01f107259232d67be08ad05d8
BLAKE2b-256 01ba4aeb2760d0adc56b4b9dd642bbf2277318b0524cc880290947e848a83aea

See more details on using hashes here.

File details

Details for the file cognee_community_graph_adapter_memgraph-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for cognee_community_graph_adapter_memgraph-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0234cb85027bd0e7ed9879a9ffb49725a974c1e1905d4440bde661d9d65f064e
MD5 1956fee1e425ca28fa272f27bc3795a7
BLAKE2b-256 f8b50b015564607a3ae15626d27780abfed6f84991ef87916b85e4837044901f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page