制造业人工智能2025-演示平台
一个具有人工智能功能的综合制造执行系统(MES),旨在展示人工智能在工业自动化工作流程中的集成。
🗺️ 新来的? 看 GUIDE-INDEX.md 获取演示、服务和文档的完整地图。这个平台做什么
该存储库包含一个全栈制造平台,展示了:
- 实时工业数据处理 通过MQTT和点火SCADA
- 人工智能驱动的制造洞察 使用检索增强生成(RAG)
- 自动化质量控制 具有智能验证规则
- 微服务架构 用于可扩展的制造业务
- 互动演示 用于演示和概念证明
这是给谁的
| 角色 | 你应该。.. | 从这里开始 |
|---|---|---|
| 演示者/评估员 | 运行脚本演示 | demos/README.md |
| 开发者 | 了解代码库并做出贡献 | docs/development/GETTING-STARTED.md |
| DevOps/部署者 | 部署到环境 | docs/deployment/README.md |
| 建筑师 | 了解系统设计 | ARCHITECTURE.md |
快速开始
先决条件
- Docker&Docker编写
- Node.js 18+(用于包管理)
- GitHub个人访问令牌(安装指南)
1分钟演示
# Clone and setup
git clone
cd icc-ai-in-manufacturing-2025
# Configure environment
cp .env.example .env
# Edit .env with your GitHub token
# Start the platform
docker compose up -d
# Run a demo
./demos/scripts/run-full-stack-demo.sh --auto验证安装
- 点火网关: https://localhost:9043
- Grafana仪表板: http://localhost:3001
- API网关: http://localhost:8000
- 演示状态:
./scripts/demo-preflight.sh
平台体系结构
graph TB
Client[Demo Client] --> Kong[API Gateway :8000]
Kong --> RAG[AI RAG Service :8080]
Kong --> Rules[Rules Engine :3010]
Kong --> Ignition[Ignition Gateway :9043]
RAG --> VectorDB[(Vector Database)]
Rules --> MainDB[(PostgreSQL)]
Ignition --> MainDB
Ignition --> MQTT[MQTT Broker]
classDef service fill:#e1f5fe
classDef database fill:#e8f5e8
classDef gateway fill:#fff3e0关键服务
存储库结构
├── demos/ # Interactive demonstrations
├── services/ # Core platform services
│ ├── ignition/ # SCADA/HMI configurations
│ ├── llama-index/ # AI RAG service
│ ├── rules-engine/ # Validation engine
│ └── monitoring/ # Observability stack
├── docs/ # Documentation hub
│ ├── setup/ # Environment setup guides
│ ├── development/ # Developer resources
│ ├── deployment/ # Deployment guides
│ ├── troubleshooting/# Common issues & fixes
│ └── api/ # API documentation
├── config/ # Service configurations
├── scripts/ # Automation utilities
└── tests/ # Test suites常见任务
运行演示
./demos/scripts/run-full-stack-demo.sh开发设置
# See full setup guide: docs/development/GETTING-STARTED.md
docker compose up -d
npm install故障排除
获取帮助
后续步骤
- 第一次? → Read
GUIDE-INDEX.md用于导航 - 想演示吗? → 从开始
demos/README.md - 想要发展吗? → Check
docs/development/GETTING-STARTED.md - 需要架构概述吗? → See
ARCHITECTURE.md
______________________________________________________________________
💡 专业建议:使用 ./scripts/demo-preflight.sh 在任何演示之前,都要验证一切是否正常工作。
