doc_get
Retrieve a specific document from a HoloViz project by providing its path. Use doc_list to discover valid document paths first.
Instructions
Retrieve a specific document by path and project.
Use this tool to look up a specific document within a project.
Tip: Use the doc_list tool first to discover valid document paths for a project, then pass the exact source_path value here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The relative path to the source document as returned by doc_list (e.g., "doc/about/index.md", "doc/how_to/callbacks/periodic.md"). Note: paths include a project-specific prefix such as "doc/". | |
| project | Yes | the name of the project (e.g., "panel", "panel-material-ui", "hvplot", "my-custom-project") |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The title of the document. | |
| url | Yes | The URL of the rendered, target document. | |
| project | Yes | The project to which the document belongs. | |
| source_path | Yes | The path to the document within the project. | |
| source_url | Yes | The URL to the source document. | |
| is_reference | Yes | Indicates if the document is a reference guide. | |
| description | No | A brief description of the document. | |
| content | No | The content of the documentation, if available. In Markdown format if possible. | |
| relevance_score | No | Relevance score of the document, where 1 is the highest score indicating an exact match. |