Skip to main content
Dash is a self-learning data agent that gets better with every query. Most Text-to-SQL agents are stateless. They make mistakes, you fix them, then they make the same mistake again because every session starts fresh. Dash fixes this by grounding its answers in 6 layers of context and learning from every run. Checkout the repo for more details.

How It Works

Dash retrieves relevant context at query time via hybrid search, generates grounded SQL, executes it, and delivers insights.

The Six Layers of Context

Self-Learning

Dash improves without retraining or fine-tuning through two complementary systems: When a query fails because position is TEXT and not INTEGER, Dash saves that. Next time, it knows. When your team is focused on IPO prep, Dash learns that “revenue” means ARR, not bookings, and that the board wants cohort retention broken out by enterprise vs SMB.

Insights, Not Just Rows

Dash reasons about what makes an answer useful, not just technically correct. Question: Who won the most races in 2019?

Run Locally

Confirm Dash is running at http://localhost:8000/docs.

Connect to the control plane

  1. Open os.agno.com and sign in
  2. Click Add OSLocal
  3. Enter http://localhost:8000

Deploy to Railway

The script provisions PostgreSQL, configures environment variables, and deploys your application. Then load your data and knowledge in production:
Connect via the control plane:
  1. Open os.agno.com
  2. Click Add OSLive
  3. Enter your Railway domain

Example Prompts

Try these on the sample F1 dataset:
  • Who won the most F1 World Championships?
  • How many races has Lewis Hamilton won?
  • Compare Ferrari vs Mercedes points 2015-2020

Adding Your Own Data

Dash works best when it understands how your organization talks about data. The knowledge base lives in three directories: knowledge/tables/ for table metadata: schema descriptions, column meanings, data quality notes. knowledge/queries/ for validated SQL patterns that are known to work. knowledge/business/ for metric definitions, business rules, and common gotchas. Load or update knowledge at any time:

Run Evals

Dash ships with an evaluation suite: string matching, LLM grading, and golden SQL comparison.

Source

For architecture details, knowledge format reference, and local development setup, see the GitHub repo.