Get the document's full tree structure (without text) to find relevant sections.
()
| 66 | |
| 67 | @function_tool |
| 68 | def get_document_structure() -> str: |
| 69 | """Get the document's full tree structure (without text) to find relevant sections.""" |
| 70 | return client.get_document_structure(doc_id) |
| 71 | |
| 72 | @function_tool |
| 73 | def get_page_content(pages: str) -> str: |
nothing calls this directly
no test coverage detected