Enrich

Supply Chain and Logistics

Data with Advanced AI

Forecast reorders, flag port delays, and suggest mode shifts from your data and public disruptions
Inventory and transport are a timing game.
NiftyBot forecasts reorders, flags port delays, and suggests mode shifts from your data and public disruptions. Costs fall while service levels hold.
Complexity: Medium
Port Delay Watch
Ocean schedules wobble fast. This call estimates delay risk for a Maersk Los Angeles arrival and proposes a mitigation step. Ops gets ahead of downstream stockouts.
REQUEST

{ "source": { "carrier": "Maersk", "vessel_eta_port": "Port of Los Angeles", "eta_date": "2025-09-06", "pol": "Yantian", "pod": "Los Angeles", "container_count": 22 }, "requests": [ { "field_name": "delay_risk", "field_type": "categorical", "instructions": "Return one of: Low, Medium, High" }, { "field_name": "mitigation_step" } ] }
RESPONSE

{ "enrichments": [ { "field_name": "delay_risk", "value": "Medium", "confidence": 0.72, "method": "assessment", "reasoning": "Late-summer transpacific arrivals face variable berth congestion; inland rail capacity moderate." }, { "field_name": "mitigation_step", "value": "Pre-book drayage with 48-hour flex window and stage a split delivery to top-volume DC first.", "confidence": 0.7, "method": "reasoning", "reasoning": "Flex pickup and split drops reduce downstream stockout exposure if discharge slips." } ] }
Complexity: High
Reorder Recommender
Under-ordering loses shelf space; over-ordering eats cash. This call recommends a reorder for Dove body wash into a Walmart DC using run-rate and lead time. You keep fill rates without tying up capital.
REQUEST

{ "source": { "manufacturer": "Unilever", "retailer_dc": "Walmart DC-6022", "sku_name": "Dove Body Wash 22oz", "weekly_units_run_rate": 1180, "on_hand_units": 2100, "lead_time_days": 9, "service_level_target": 0.95 }, "requests": [ { "field_name": "reorder_quantity", "field_type": "numeric" }, { "field_name": "stockout_risk_after_order", "field_type": "categorical", "instructions": "Return one of: Low, Medium, High" } ] }
RESPONSE

{ "enrichments": [ { "field_name": "reorder_quantity", "value": 1400, "confidence": 0.78, "method": "calculation", "reasoning": "Covers lead-time demand plus safety stock to meet service level while avoiding excess days of supply." }, { "field_name": "stockout_risk_after_order", "value": "Low", "confidence": 0.75, "method": "assessment", "reasoning": "Post-order projected DOS exceeds lead-time demand with buffer for demand variance." } ] }