search-knowledge-base
Query a knowledge base to retrieve relevant information using a specific ID and search term, with options to customize the number of results.
Instructions
Search a knowledge base for relevant information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
knowledgeBaseId | Yes | Knowledge base ID | |
query | Yes | Search query | |
resultCount | No | Number of results |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"knowledgeBaseId": {
"description": "Knowledge base ID",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
},
"resultCount": {
"default": 5,
"description": "Number of results",
"type": "number"
}
},
"required": [
"knowledgeBaseId",
"query"
],
"type": "object"
}