knowledge-base-retrieve
Search the Knowledge Base to retrieve company policies, procedures, technical documentation, or project data. Use this tool to find relevant information and answer company-specific questions efficiently.
Instructions
Look up information in the Knowledge Base. Use this tool when you need to:
Find relevant documents or information on specific topics
Retrieve company policies, procedures, or guidelines
Access product specifications or technical documentation
Get contextual information to answer company-specific questions
Find historical data or information about projects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The query to search for data in the Knowledge Base | |
rerank | No | Whether to rerank the results based on relevance. Defaults to true. | |
topK | No | The maximum number of results to return. Defaults to 10. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The query to search for data in the Knowledge Base",
"type": "string"
},
"rerank": {
"default": true,
"description": "Whether to rerank the results based on relevance. Defaults to true.",
"type": "boolean"
},
"topK": {
"default": 10,
"description": "The maximum number of results to return. Defaults to 10.",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}