Files
2026-03-24 18:07:22 +08:00

34 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# APBO Boat Agent
基于 LangChain + LangGraph 的问数 Agent 项目,提供 SQL 生成、执行与流式返回能力。
## 核心流程
完整流程图见 [docs/README.md](./docs/README.md)。
主链路:
`analyze_intent -> process_input -> normalize_input -> classify_query_mode -> match_table -> load_sql_prompt -> build_sql_plan -> generate_sql -> execute_sql -> generate_response -> update_context`
## 顶层模块
- [agent/README.md](./agent/README.md):Agent 状态与节点编排
- [api/README.md](./api/README.md):FastAPI 接口层
- [config/README.md](./config/README.md):配置与提示词资源
- [docs/README.md](./docs/README.md):核心流程图
- [examples/README.md](./examples/README.md):最小示例
- [k8s/README.md](./k8s/README.md):部署清单
- [schemas/README.md](./schemas/README.md):请求响应模型
- [scripts/README.md](./scripts/README.md):调试与同步脚本
- [services/README.md](./services/README.md):基础服务层
- [tests/README.md](./tests/README.md):自动化测试
- [tools/README.md](./tools/README.md):工具实现
- [workflows/README.md](./workflows/README.md):工作流管理
## 快速启动
```bash
pip install -r requirements.txt
python server.py
```