ODPS™ AI / LLM SYSTEM DESIGN

SECTION H.22 — LLM WORKFLOW DESIGN // ADMIN VIEW

CLAUDE SONNET 4.6 // ANTHROPIC API // DESIGNED ARCHITECTURE
CURRENT AI WORKFLOW — WHAT IS LIVE TODAY
NODE 01
CAD INGEST
Filename keyword
parsing (current)
NODE 02
MAT_PARSE
AI keyword matching
+ manual override
✓ LIVE
NODE 04
AI_COMPLY
Rules-based compliance
routing per vertical
✓ LIVE
NODE 05
QUOTE_GEN
AI-optimized pricing
SEC-C engine
✓ LIVE
NODE 09
PPA_AUDIT
AI analysis block
in certificate
✓ LIVE
DESIGNED AI WORKFLOW — FULL LLM INTEGRATION (H.22)
INPUT
CAD FILE
STEP/IGES/STL
uploaded by user
H.22-A
GEOMETRY LLM
LLM interprets
CAD geometry,
suggests material
H.22-B
COMPLIANCE LLM
Checks regulatory
requirements,
flags risks
H.22-C
VENDOR MATCH AI
Scores vendors
by capability +
compliance fit
H.22-D
PRICE OPTIMIZE
AI negotiates
optimal tier +
delivery mode
H.22-E
AUDIT AI
AI generates
compliance summary
for certificate
H.23
VECTOR DB
Stores embeddings
for vendor/part
similarity search

LLM MODEL SELECTION

VECTOR DB / ML STORAGE (H.23)

AI SAFETY + AUDITABILITY (H.24)

CURRENT AI PROMPT ARCHITECTURE

EXAMPLE DESIGNED LLM PROMPT — NODE 02 MAT_PARSE
SYSTEM: You are a manufacturing compliance AI for ODPS™. Given a CAD file description, identify the most likely material composition for each body/assembly, considering the active regulatory vertical. USER: File: bracket_assembly.step | Vertical: Aerospace | Detected bodies: 3 Body 1: primary structural, ~45g estimated mass, angular geometry Body 2: fastener pattern, small cylindrical features Body 3: surface coating layer ASSISTANT OUTPUT (structured JSON): { "bodies": [ {"id": 1, "material": "Aluminum 7075-T6", "confidence": 0.87, "compliance": "AS9100/NADCAP"}, {"id": 2, "material": "Titanium Grade 5 — ITAR", "confidence": 0.72, "itar_flag": true}, {"id": 3, "material": "Anodize Type III", "confidence": 0.91, "process": "Surface Treatment"} ], "override_recommended": false, "itar_review_required": true }