search_document
Locate specific content within a document by entering a document ID and search query. Retrieve formatted results with relevant context for efficient document analysis.
Instructions
Search for specific content within a document.
Args:
doc_id: Document identifier
query: Search term or phrase
Returns:
Formatted search results with context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"title": "Doc Id",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"doc_id",
"query"
],
"title": "search_documentArguments",
"type": "object"
}