chunk_details
Retrieve full content of a specific code chunk by its ID, enabling focused examination after identifying relevant code sections through intelligent search tools.
Instructions
Get full content of a specific chunk.
Returns chunk content as string.
Common patterns:
1. Final step after find_matching_chunks_in_file finds relevant chunks
2. Examining implementations after finding definitions/uses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chunk_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chunk_id": {
"title": "Chunk Id",
"type": "string"
}
},
"required": [
"chunk_id"
],
"title": "chunk_detailsArguments",
"type": "object"
}