azaharizaman / nexus-quotation-intelligence
AI-driven quotation normalization and intelligence orchestrator.
Package info
github.com/azaharizaman/nexus-quotation-intelligence
pkg:composer/azaharizaman/nexus-quotation-intelligence
v0.1.0-alpha1
2026-05-05 02:28 UTC
Requires
- php: >=8.3
- azaharizaman/nexus-currency: dev-main
- azaharizaman/nexus-document: dev-main
- azaharizaman/nexus-machine-learning: dev-main
- azaharizaman/nexus-procurement: dev-main
- azaharizaman/nexus-uom: dev-main
Requires (Dev)
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2026-05-05 03:34:48 UTC
README
AI-driven quotation normalization and intelligence orchestrator for the Atomy (Nexus) project.
Overview
This orchestrator bridges the gap between structured ERP procurement and unstructured vendor quotes (PDF/Excel). It coordinates the following pipeline:
- Ingestion: Upload and validation of unstructured quote documents.
- Extraction: AI-driven extraction of line items and commercial terms.
- Normalization: Semantic mapping to taxonomies (UNSPSC) and unit/currency normalization.
- Risk Assessment: Detection of pricing anomalies and term deviations.
- Traceability: Linking every data point back to its source snippet in the original document.
Architecture
- Layer 2 Orchestrator: Coordinates multiple Layer 1 packages (
Procurement,MachineLearning,Document,Uom,Currency). - Async Workflow: Uses an event-driven pipeline for document processing.
- Traceable VOs: Uses
ExtractionEvidenceandQuoteSnippetto maintain audit trails.
Usage
use Nexus\QuotationIntelligence\Contracts\QuotationIntelligenceCoordinatorInterface; // Orchestrate the full intelligence flow $coordinator->processQuote($tenantId, $documentId);