search-docs
Search Pinecone documentation to find relevant information quickly by entering a query, simplifying access to specific technical details.
Instructions
Search Pinecone documentation for relevant information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The text to search for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The text to search for.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}