Skip to main content
Version: dev

Web UI Overview

DB-GPT ships with a web interface at http://localhost:5670.

Main areas​

  • Chat — normal chat, data chat, Excel chat, knowledge chat
  • Knowledge Base — upload files and build RAG datasets
  • Dashboard — generate charts and reports from natural language
  • App Management — create and manage DB-GPT applications

Feature map​

FeatureDescriptionSection
ChatMulti-turn conversation with LLMsChat
Chat DataNatural language queries on connected databases (Text2SQL)Chat
Chat ExcelUpload and query Excel files with natural languageChat
Chat KnowledgeRAG conversations over your uploaded documentsKnowledge Base
DashboardAuto-generated charts and reports from dataDashboard
App StoreBrowse and install community applicationsApp Management
AWEL FlowVisual workflow editor for building AI pipelinesAWEL Flow
Agent WorkspaceConfigure and run multi-agent tasksApp Management

Accessing the Web UI​

After starting the DB-GPT server, the Web UI is available at:

http://localhost:5670
Running the front-end separately

For front-end development, you can run the Next.js app independently:

cd web && npm install
cp .env.template .env
# Set API_BASE_URL=http://localhost:5670
npm run dev

Then visit http://localhost:3000.

What to try first​

  1. Open Chat and confirm the configured model responds
  2. Open Knowledge Base if you want RAG over documents
  3. Open Dashboard if you want Text2SQL and charts
  4. Open Apps if you want reusable app configurations

Next steps​

TopicLink
Start chattingChat
Set up knowledge baseKnowledge Base
Build workflowsAWEL Flow