Major Updates: - Add StreamingService with OpenAI Compatible format (backend/common/streaming) - Upgrade Chat component V2 with Ant Design X integration - Implement AIA module with 12 intelligent agents - Create AgentHub with 100% prototype V11 restoration - Create ChatWorkspace with streaming response support - Add ThinkingBlock for deep thinking display - Add useAIStream Hook for OpenAI Compatible stream handling Backend Common Capabilities (~400 lines): - OpenAIStreamAdapter: SSE adapter with OpenAI format - StreamingService: unified streaming service - Support content and reasoning_content dual streams - Deep thinking tag processing (<think>...</think>) Frontend Common Capabilities (~2000 lines): - AIStreamChat: modern streaming chat component - ThinkingBlock: collapsible deep thinking display - ConversationList: conversation management with grouping - useAIStream: OpenAI Compatible stream handler Hook - useConversations: conversation state management Hook - Modern design styles (Ultramodern theme) AIA Module Frontend (~1500 lines): - AgentHub: 12 agent cards with timeline design - ChatWorkspace: fullscreen immersive chat interface - AgentCard: theme-colored cards (blue/yellow/teal/purple) - 5 phases, 12 agents configuration - Responsive layout (desktop + mobile) AIA Module Backend (~900 lines): - agentService: 12 agents config with system prompts - conversationService: refactored with StreamingService - attachmentService: file upload skeleton (30k token limit) - 12 API endpoints with authentication - Full CRUD for conversations and messages Documentation: - AIA module status and development guide - Universal capabilities catalog (11 services) - Quick reference card for developers - System overview updates Testing: - Stream response verified (HTTP 200) - Authentication working correctly - Auto conversation creation working - Deep thinking display working - Message input and send working Status: Core features completed (85%), attachment and history loading pending
AI临床研究平台 - 后端服务
🏠 导航
快速开始
1. 环境要求
- Node.js >= 18
- PostgreSQL 15+
- Redis 7+
2. 安装依赖
npm install
3. 配置环境变量
复制.env.example到.env并配置:
cp .env.example .env
4. 初始化数据库
# 生成Prisma Client
npm run prisma:generate
# 执行数据库迁移
npm run prisma:migrate
# (可选)打开Prisma Studio查看数据
npm run prisma:studio
5. 启动开发服务器
npm run dev
服务器将在 http://localhost:3001 启动
6. 验证服务
访问以下端点验证服务是否正常:
- 健康检查: http://localhost:3001/health
- API入口: http://localhost:3001/api/v1
项目结构
backend/
├── prisma/
│ └── schema.prisma # 数据库模型定义
├── src/
│ ├── config/
│ │ ├── env.ts # 环境变量配置
│ │ └── database.ts # 数据库连接
│ ├── controllers/ # 控制器层
│ ├── services/ # 业务逻辑层
│ ├── routes/ # 路由定义
│ ├── types/ # TypeScript类型定义
│ ├── utils/ # 工具函数
│ └── index.ts # 应用入口
├── .env # 环境变量(不提交到Git)
├── .env.example # 环境变量模板
├── package.json # 项目配置
└── tsconfig.json # TypeScript配置
NPM Scripts
npm run dev- 启动开发服务器(hot reload)npm run build- 构建生产版本npm run start- 启动生产服务器npm run prisma:generate- 生成Prisma Clientnpm run prisma:migrate- 执行数据库迁移npm run prisma:studio- 打开Prisma Studio
数据库设计
详见:../docs/01-设计文档/数据库设计文档.md
API文档
详见:../docs/01-设计文档/API设计规范.md
技术栈
- 框架: Fastify
- ORM: Prisma
- 数据库: PostgreSQL
- 缓存: Redis
- 语言: TypeScript
- 日志: Pino
Day 5 完成情况
✅ 初始化后端项目(Node.js + TypeScript) ✅ 配置Fastify框架 ✅ 配置Prisma ORM ✅ 创建数据库表(执行迁移) ✅ 数据库连接测试通过
所有核心功能已完成!🎉