> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 概览

> Zeus Web 平台概览

Zeus Web 是一个基于浏览器的 AI Agent 界面，使用 Next.js 构建，提供功能完整的对话式 AI 体验。

## 架构

```mermaid theme={null}
flowchart TD
    A["用户浏览器\nNext.js 16 + React 19 + TailwindCSS + Zustand"]
    B["Next.js API Routes\n认证 · MCP · 会话管理 · 知识库\nPostgreSQL (Drizzle ORM)"]
    C["Python FastAPI 后端\nLangChain · DeepAgents · LangGraph · RAG"]
    A -->|"HTTPS / SSE"| B
    B -->|"HTTP + JWT"| C
```

## 技术栈

| 层级      | 技术                                                     |
| ------- | ------------------------------------------------------ |
| **前端**  | Next.js 16, React 19, TypeScript, TailwindCSS, Zustand |
| **后端**  | FastAPI, LangChain, DeepAgents, LangGraph              |
| **数据库** | PostgreSQL 16 (Drizzle ORM + pgvector)                 |
| **认证**  | Better Auth, JWT, OAuth 2.0                            |

## 了解更多

<CardGroup cols={2}>
  <Card title="认证" icon="lock" href="/zh/platforms/web/auth">
    Better Auth 用户认证（邮箱密码、OAuth）
  </Card>

  <Card title="数据库" icon="database" href="/zh/platforms/web/database">
    数据库架构与 Drizzle ORM
  </Card>

  <Card title="核心概念" icon="brain" href="/zh/documentation/fundamentals/agent-runtime">
    Agent 运行时、工具、记忆、知识库
  </Card>

  <Card title="渠道" icon="message" href="/zh/documentation/channels/overview">
    飞书、Slack 等渠道集成
  </Card>
</CardGroup>
