batch_explain_entities
Explains multiple code entities in a single call by reusing the search index, boosting efficiency compared to individual explanations.
Instructions
Explain multiple code entities in a single call. Loads the search index once and looks up each entity name. More efficient than calling explain_entity repeatedly.
Requires: index_repository must be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_path | Yes | Path to the indexed repository | |
| entity_names | Yes | List of entity names to explain (max 20) | |
| depth | No | Depth of explanation: 'shallow' (search index only, default) or 'full' (calls explain_entity for each) |