build_dependency_graph_with_ai
Builds a dependency graph of the codebase using AI.
Arguments
Name | Type | Description | Required |
---|---|---|---|
dependency_prompt | prompt | The prompt to use to extract dependencies and build relationships between files. | |
exclude_path_patterns | array | The paths to exclude from the constructed graph. This should start at the root and can end at any folder or file and can be a glob pattern with wildcards. Allowed match patterns:
Args: exclude_patterns (List[str]): List of patterns to exclude files. files (List[str]): List of files to be filtered. Example patterns with explanation:
| |
preferred_extensions_for_resolution | array | The preferred extensions for resolution of file paths. | |
cost_limit | number | The maximum cost limit as a whole dollar amount for building the dependency graph. | |
files_to_index | array | A list of specific files to index for building the dependency graph. |
Returns
Type | Description |
---|---|
null | Does not return a value. Builds a graph in memory. |
Example
Last updated