Quick Start
Welcome to Discover. This guide walks you through the full flow — from logging in to running your first query using a Coordinator Agent.
-
Log In
Open Discover in your browser and sign in with your credentials.
→ See Logging In for SSO and username/password login options.
-
Configure your LLM
Discover needs a language model before you can create any agents.
- In the left sidebar, hover over User Settings and click Model Providers.
- Select your LLM provider (e.g. Gemini) and enter your API key.
- Click Add Model, then click Set Default Model and choose the default models for chat and embedding.
→ Full instructions: Model Providers
-
Add a Knowledge Base (optional)
If your agents need to search documents, API definitions, or any reference material, set up a Knowledge Base before creating agents.
- Click Knowledge Base in the left sidebar and click Create Knowledge Base.
- Upload your documents and parse them.
→ Full instructions: Creating Knowledge Bases
-
Create an Agent
Choose the agent type that fits your data source:
Database Agent — connects to a relational database (PostgreSQL, MySQL, MariaDB) and answers questions by generating SQL.
- Click Agent in the left sidebar, then click New Agent.
- Give it a name and select Database Agent.
- Enter your database connection details and click Test Connection.
- Click Fetch DDL to load your schema, select the relevant tables, and enrich descriptions.
- (Optional) Add domain knowledge — business rules or metric definitions the agent should know.
- Click Create Agent.
→ Full instructions: Database Agent · Fetching Schema
API Agent — connects to a REST API and answers questions by generating API payloads.
- Click Agent in the left sidebar, then click New Agent.
- Give it a name and select API Agent.
- Fill in the API URL, method, headers, and field definitions.
- Click Create Agent.
→ Full instructions: API Agent
-
Create a Coordinator Agent
A Coordinator Agent sits in front of your sub-agents and routes queries intelligently. You need at least one sub-agent (your Database Agent from the step above) before creating one.
- On the Agent page, click New Agent, give it a name, and select Coordinator Agent.
- Select your Database Agent as a sub-agent.
- Review the auto-generated prompts and click Create Agent.
→ Full instructions: Coordinator Agent
-
Run Your First Query
- Open your Coordinator Agent and click Run.
- Type a question in plain English, for example:
“What were total sales last month?”
- The Coordinator Agent routes the question to your Database Agent, which generates and executes the SQL, then returns the answer.
What’s Next
Section titled “What’s Next”Now that you have a working setup, explore what else Discover can do:
- Adding Users — invite your team and assign roles
- Role Management — understand what each role can access
- API Keys — connect Discover to an external system
- Updating Your Prompts — customise agent behaviour
- Agent Components — build custom workflows beyond the templates