| What it retrieves | Why retrieval |
|---|---|
| Table descriptions, validated SQL queries, business rules | The Analyst grounds every query in known patterns. Without retrieval, the model invents column names and misreads enum values. |
Dash: SQL grounded in known patterns
Dash holds three kinds of knowledge under oneKnowledge instance:
| Knowledge | Purpose |
|---|---|
| Table metadata | Column meanings, value enums, gotchas |
| Validated query patterns | Tested SQL the Analyst can adapt |
| Business rules | ”MRR excludes trials”, “active means ended_at IS NULL” |
search_type="hybrid" runs both vector similarity and BM25 keyword search, then merges results. Catches both “what’s the same idea worded differently?” (semantic) and “find the doc that mentions this exact term” (keyword).
Loading knowledge
Knowledge content gets loaded once at boot or via a script:--recreate rebuilds from scratch. Without the flag, content gets upserted by primary key.
How retrieval gets injected
Whenadd_knowledge_to_context=True, AgentOS:
- Takes the user’s message.
- Runs hybrid search against the
Knowledgevector DB. - Pulls top-k chunks with metadata (configurable).
- Injects them into the system prompt under a “Relevant context” section.
- The model answers with both the message and the retrieved context.
search_knowledge=True is also set, the agent gets a search_knowledge_base(query) tool and can run additional searches mid-run when it needs to.
See it in action
| Try in chat | What happens |
|---|---|
| Dash: “what’s our MRR trend?” | Analyst retrieves MRR definition + matching query, writes grounded SQL. |
| Dash: “why is churn so high?” | Analyst retrieves churn definitions, finds matching query patterns, executes, interprets. |
| Dash: “show me revenue by plan” | Analyst pulls table metadata for subscriptions, generates the aggregation. |
When hybrid search isn’t enough
For very large knowledge bases, add reranking. PgVector + a reranker (Cohere, BGE) tightens the top-k:agents/dash/