<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new analytic capability that calculates descriptive graph metrics for pipeline runs when enabled. - Updated the execution flow to include an option for activating the graph metrics step. - **Chores** - Removed the previous mechanism for storing descriptive metrics to streamline the system. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Igor Ilic <30923996+dexters1@users.noreply.github.com> Co-authored-by: Boris <boris@topoteretes.com>
21 lines
655 B
Python
21 lines
655 B
Python
from .api.v1.add import add
|
|
from .api.v1.cognify import cognify
|
|
from .api.v1.config.config import config
|
|
from .api.v1.datasets.datasets import datasets
|
|
from .api.v1.prune import prune
|
|
from .api.v1.search import SearchType, get_search_history, search
|
|
from .api.v1.visualize import visualize_graph, start_visualization_server
|
|
from cognee.modules.visualization.cognee_network_visualization import (
|
|
cognee_network_visualization,
|
|
)
|
|
from .modules.data.operations.get_pipeline_run_metrics import get_pipeline_run_metrics
|
|
|
|
# Pipelines
|
|
from .modules import pipelines
|
|
|
|
try:
|
|
import dotenv
|
|
|
|
dotenv.load_dotenv(override=True)
|
|
except ImportError:
|
|
pass
|