mirror of
https://github.com/microsoft/graphrag.git
synced 2025-11-17 02:25:46 +00:00
11 lines
377 B
Python
11 lines
377 B
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
from graphrag.index.create_pipeline_config import create_pipeline_config
|
|
from graphrag.index.run import run_pipeline, run_pipeline_with_config
|
|
|
|
|
|
def test_exported_functions():
|
|
assert callable(create_pipeline_config)
|
|
assert callable(run_pipeline_with_config)
|
|
assert callable(run_pipeline)
|