search_documents
Query and retrieve documents from a specified index using custom search parameters, enabling precise data retrieval in OpenSearch clusters.
Instructions
Search documents in an index with a custom query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"title": "Body",
"type": "object"
},
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index",
"body"
],
"title": "search_documentsArguments",
"type": "object"
}