get_dependencies
Analyze and retrieve dependencies of a file within a specified project, identifying imports or includes for better code context understanding in tree-sitter-based code analysis.
Instructions
Find dependencies of a file.
Args:
project: Project name
file_path: Path to the file
Returns:
Dictionary of imports/includes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"project",
"file_path"
],
"title": "get_dependenciesArguments",
"type": "object"
}