mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-03 01:32:09 +08:00
Some checks are pending
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
* Add GraphRAG Cache package.
18 lines
428 B
Python
18 lines
428 B
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
"""The GraphRAG Cache package."""
|
|
|
|
from graphrag_cache.cache import Cache
|
|
from graphrag_cache.cache_config import CacheConfig
|
|
from graphrag_cache.cache_factory import create_cache, register_cache
|
|
from graphrag_cache.cache_type import CacheType
|
|
|
|
__all__ = [
|
|
"Cache",
|
|
"CacheConfig",
|
|
"CacheType",
|
|
"create_cache",
|
|
"register_cache",
|
|
]
|