File size: 341 Bytes
cd44748
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2024 Microsoft Corporation.
# Licensed under the MIT License
from graphrag.index import (
    create_pipeline_config,
    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)