mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-18 08:45:39 +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.12) (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.12) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.12) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.12) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.12) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.12) (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.12) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.12) (push) Waiting to run
Python Unit Tests / python-ci (ubuntu-latest, 3.12) (push) Waiting to run
Python Unit Tests / python-ci (windows-latest, 3.12) (push) Waiting to run
* Add graphrag-storage.
21 lines
479 B
Python
21 lines
479 B
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
"""The GraphRAG Storage package."""
|
|
|
|
from graphrag_storage.storage import Storage
|
|
from graphrag_storage.storage_config import StorageConfig
|
|
from graphrag_storage.storage_factory import (
|
|
create_storage,
|
|
register_storage,
|
|
)
|
|
from graphrag_storage.storage_type import StorageType
|
|
|
|
__all__ = [
|
|
"Storage",
|
|
"StorageConfig",
|
|
"StorageType",
|
|
"create_storage",
|
|
"register_storage",
|
|
]
|