|
| 1 | +# ManufacturingAgentSuite |
| 2 | + |
| 3 | +`ManufacturingAgentSuite` is a proposed OPEA GenAIExamples blueprint for |
| 4 | +route-isolated industrial action-card agents. |
| 5 | + |
| 6 | +The example demonstrates how one Gateway and Manufacturing Megaservice can |
| 7 | +route plant-floor evidence to five governed manufacturing workflows: |
| 8 | + |
| 9 | +| Route | Workflow | Output target | |
| 10 | +| --- | --- | --- | |
| 11 | +| `maintenance` | Predictive maintenance / lao-shi-fu escalation | `maintenance_work_order` | |
| 12 | +| `iqc` | Incoming and in-process quality control | `qms_quality_event` | |
| 13 | +| `changeover` | SKU changeover verification | `changeover_checklist` | |
| 14 | +| `wi` | Released work-instruction guidance | `wi_reference` | |
| 15 | +| `hazard` | EHS hazard observation | `ehs_case` | |
| 16 | + |
| 17 | +## Architecture |
| 18 | + |
| 19 | +```text |
| 20 | +Plant evidence |
| 21 | + -> Gateway |
| 22 | + -> Manufacturing Megaservice |
| 23 | + -> route registry: maintenance / iqc / changeover / wi / hazard |
| 24 | + -> route-specific source evidence |
| 25 | + -> deterministic evaluator |
| 26 | + -> guardrails |
| 27 | + -> bounded action card |
| 28 | +``` |
| 29 | + |
| 30 | +The full WearEdge reference implementation also includes Qdrant RAG, OPEA |
| 31 | +embedding profiles, an official OPEA TEI path, benchmark evidence, and a browser |
| 32 | +demo console: |
| 33 | + |
| 34 | +```text |
| 35 | +https://github.com/davidmillerak2026-sys/wearedge-opea-manufacturing |
| 36 | +``` |
| 37 | + |
| 38 | +## Quick Start On Xeon |
| 39 | + |
| 40 | +```bash |
| 41 | +cd ManufacturingAgentSuite/docker_compose/intel/cpu/xeon |
| 42 | +docker compose up -d |
| 43 | +curl http://localhost:8899/v1/agents |
| 44 | +curl http://localhost:8899/v1/agents/maintenance/demo |
| 45 | +curl http://localhost:8899/v1/scorecard |
| 46 | +``` |
| 47 | + |
| 48 | +Optional OPEA TEI profile: |
| 49 | + |
| 50 | +```bash |
| 51 | +docker compose -f compose.yaml -f compose.opea-tei.yaml up -d |
| 52 | +``` |
| 53 | + |
| 54 | +## Endpoints |
| 55 | + |
| 56 | +| Endpoint | Purpose | |
| 57 | +| --- | --- | |
| 58 | +| `GET /healthz` | Service health and configured embedding profile | |
| 59 | +| `GET /v1/agents` | Route registry | |
| 60 | +| `GET /v1/agents/{mode}/demo` | Fixed demo request and bounded action card | |
| 61 | +| `POST /v1/agents/{mode}/infer` | Route-specific inference contract | |
| 62 | +| `GET /v1/scorecard` | Five-route validation scorecard | |
| 63 | + |
| 64 | +## Guardrail Boundary |
| 65 | + |
| 66 | +The example must not claim autonomous restart, quality release, maintenance |
| 67 | +release, safety clearance, final root cause, customer acceptance, or remaining |
| 68 | +useful life. Restricted decisions remain human-confirmed. |
0 commit comments