From 70bdaea8f7405d2cd87c7889ccda4d2a7ff56138 Mon Sep 17 00:00:00 2001 From: lxobr <122801072+lxobr@users.noreply.github.com> Date: Sat, 23 Nov 2024 14:04:45 +0100 Subject: [PATCH] feat: COG-546 create dependency graph Add `get_repo_dependency_graph` cognee task: - Extracts Python file paths and their source code from a repository. - Builds a directed dependency graph of Python files. - Identifies direct dependencies using `get_local_script_dependencies`. - Represents file relationships as nodes and edges in a `networkx.DiGraph`. - Includes a checker script for generating and displaying the graph.