query_doc_content
Perform full-text search over indexed electronics PDFs (datasheets, user guides) from TI, ST, ADI. Returns relevant document URLs and page numbers for further reading.
Instructions
BM25 full-text search over indexed chunks. Each hit includes docUrl and pageNum — use them with read_doc_page for full page text. Requires PDFs indexed via read_doc (lookup alone does not index).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vendor | Yes | Vendor ID: TI, ST, ADI. | |
| query | Yes | The text to search for within indexed documents (e.g., 'VCELL register', 'SoC calculation', 'maximum input voltage'). | |
| part | No | Optional: restrict search to documents for a specific part number (e.g., 'BQ40Z50'). | |
| docType | No | Optional: restrict search to a specific document type ('user_guide' for TRMs, 'datasheet' for electrical specs). | |
| limit | No | Max number of results to return (default: 8, max: 20). |