Type
knowledge_apiTechnology
Vector Search & Embeddings
Common Use Cases
Searching documentationFind relevant guides, API docs, runbooks, and technical documentation
Finding relevant policiesDiscover compliance requirements, security policies, and procedures
Discovering similar issuesFind past tickets, incidents, and resolutions for similar problems
Context-aware retrievalRetrieve information based on meaning, not just keywords
How It Works
1
Content Ingestion
Knowledge sources are indexed: documentation sites, code repositories, ticketing systems, communication archives
2
Embedding Generation
Text is converted to vector embeddings that capture semantic meaning
3
Semantic Search
Queries are converted to embeddings, matched with similar content, and ranked by relevance
4
Reranking (Optional)
Results can be reranked using advanced models for better accuracy
Configuration
Example Configuration:📋 Full Configuration Reference
📋 Full Configuration Reference
| Parameter | Type | Default | Description |
|---|---|---|---|
knowledge_sources | array | [] | Which sources to search |
max_results | number | 10 | Maximum results to return |
similarity_threshold | number | 0.7 | Minimum similarity score (0-1) |
enable_reranking | boolean | true | Use reranking for better results |
reranking_model | string | ”cohere” | Reranking model to use |
filter_by_date | boolean | false | Filter to recent content only |
days_lookback | number | 90 | How many days back to search |
include_snippets | boolean | true | Include content excerpts |
snippet_length | number | 200 | Characters per snippet |
include_metadata | boolean | true | Include source, date, author |
Quick Start
View Complete Examples
See full search patterns, incident response queries, and policy compliance examples
Query Examples
Technical Documentation
Query:Past Incidents
Query:Policy Compliance
Query:Security Best Practices
Restrict Knowledge Sources
Restrict Knowledge Sources
Limit
knowledge_sources to only necessary sources.Set Similarity Threshold
Set Similarity Threshold
Use appropriate
similarity_threshold to ensure quality results.Filter Sensitive Content
Filter Sensitive Content
Use metadata filters to exclude sensitive or restricted content.
Troubleshooting & Related Skills
No Results Found
No Results Found
Solutions:
- Lower
similarity_thresholdvalue - Check knowledge sources are indexed and syncing
- Verify query isn’t too specific
Irrelevant Results
Irrelevant Results
Solutions:
- Increase
similarity_thresholdfor higher quality - Enable reranking for better relevance
- Use more specific query phrasing
Slow Search Performance
Slow Search Performance
Solutions:
- Reduce
max_resultsvalue - Disable reranking if not needed
- Limit
knowledge_sourcesto fewer sources