Spaces:
Running on Zero
Running on Zero
Upload 28 files
Browse files- app.py +39 -6
- data/intent_dataset.csv +129 -129
- data/latency_eval.json +3 -3
- models/intent_pipeline.joblib +1 -1
app.py
CHANGED
|
@@ -39,13 +39,46 @@ DATA_DIR = os.path.join(ROOT, "data")
|
|
| 39 |
ASSETS_DIR = os.path.join(ROOT, "assets")
|
| 40 |
|
| 41 |
# --------------------------------------------------------------------------
|
| 42 |
-
# Load pre-trained artifacts (fast: no training happens at Space startup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
# --------------------------------------------------------------------------
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
os.path.join(MODELS_DIR, "
|
| 47 |
-
os.path.join(MODELS_DIR, "
|
| 48 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
retriever = KBRetriever()
|
| 50 |
|
| 51 |
# Prefer the pre-generated CSVs (so demo state matches the eval run); fall back to
|
|
|
|
| 39 |
ASSETS_DIR = os.path.join(ROOT, "assets")
|
| 40 |
|
| 41 |
# --------------------------------------------------------------------------
|
| 42 |
+
# Load pre-trained artifacts (fast: no training happens at Space startup
|
| 43 |
+
# under normal conditions). If unpickling fails -- e.g. the models were
|
| 44 |
+
# built with a different scikit-learn version than the one installed in
|
| 45 |
+
# this container -- we transparently rebuild everything from scratch. This
|
| 46 |
+
# is fast (a few seconds, see build_artifacts.py) and makes the app immune
|
| 47 |
+
# to sklearn version-pinning mismatches between build time and deploy time.
|
| 48 |
# --------------------------------------------------------------------------
|
| 49 |
+
|
| 50 |
+
def _load_or_rebuild_artifacts():
|
| 51 |
+
intent_path = os.path.join(MODELS_DIR, "intent_pipeline.joblib")
|
| 52 |
+
anomaly_model_path = os.path.join(MODELS_DIR, "anomaly_iforest.joblib")
|
| 53 |
+
anomaly_scaler_path = os.path.join(MODELS_DIR, "anomaly_scaler.joblib")
|
| 54 |
+
|
| 55 |
+
def _try_load():
|
| 56 |
+
pipeline = load_pipeline(intent_path)
|
| 57 |
+
model, scaler = load_anomaly_artifacts(anomaly_model_path, anomaly_scaler_path)
|
| 58 |
+
# Smoke-test the loaded pipeline against the exact code path the app
|
| 59 |
+
# uses at request time. On a scikit-learn version mismatch, sklearn
|
| 60 |
+
# sometimes unpickles "successfully" but throws later on first real
|
| 61 |
+
# use (e.g. LogisticRegression missing an internal attribute) --
|
| 62 |
+
# catching that here, at import time, is what makes this self-healing.
|
| 63 |
+
intent_predict(pipeline, "healthcheck")
|
| 64 |
+
score_reading(model, scaler, {"motor_temp_c": 55, "vibration_mm_s": 2.2, "current_amps": 12, "belt_speed_mps": 1.5})
|
| 65 |
+
return pipeline, model, scaler
|
| 66 |
+
|
| 67 |
+
try:
|
| 68 |
+
return _try_load()
|
| 69 |
+
except Exception as e: # noqa: BLE001 -- any load/version issue triggers a rebuild
|
| 70 |
+
print(f"[startup] Could not load pre-built model artifacts ({type(e).__name__}: {e}). "
|
| 71 |
+
f"Rebuilding from scratch with the installed scikit-learn version...")
|
| 72 |
+
import build_artifacts
|
| 73 |
+
build_artifacts.build_intent_classifier()
|
| 74 |
+
build_artifacts.build_anomaly_detector()
|
| 75 |
+
build_artifacts.build_retrieval_eval()
|
| 76 |
+
build_artifacts.build_inventory_and_orders()
|
| 77 |
+
print("[startup] Rebuild complete.")
|
| 78 |
+
return _try_load()
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
intent_pipeline, anomaly_model, anomaly_scaler = _load_or_rebuild_artifacts()
|
| 82 |
retriever = KBRetriever()
|
| 83 |
|
| 84 |
# Prefer the pre-generated CSVs (so demo state matches the eval run); fall back to
|
data/intent_dataset.csv
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
text,intent
|
| 2 |
-
Is order #
|
| 3 |
Is the sorter in Zone C running normally?,system_status
|
| 4 |
What is the uptime for Sorter-02 today?,system_status
|
| 5 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
|
@@ -7,70 +7,70 @@ Is the sorter in the receiving dock running normally?,system_status
|
|
| 7 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 8 |
Optimize the pick path for Zone D,picking_optimization
|
| 9 |
Is Crane-03 operational?,system_status
|
| 10 |
-
Has order #
|
| 11 |
What's the difference between AGV and AMR?,general_faq
|
| 12 |
-
What is the current stock level for SKU-
|
| 13 |
Optimize the pick path for the receiving dock,picking_optimization
|
| 14 |
What's the difference between AGV and AMR?,general_faq
|
| 15 |
How can we reduce travel time for pickers in Zone C?,picking_optimization
|
| 16 |
-
What is the current stock level for SKU-
|
| 17 |
-
What's the status of order #
|
| 18 |
-
How much inventory is left for SKU-
|
| 19 |
What is a WMS?,general_faq
|
| 20 |
-
Is SKU-
|
| 21 |
Send AGV AMR-21 to Zone B,agv_navigation
|
| 22 |
Redirect Sorter-02 around the blocked aisle in Zone B,agv_navigation
|
| 23 |
Explain how an AS/RS works,general_faq
|
| 24 |
-
When will order #
|
| 25 |
-
What's the fastest picking route for order #
|
| 26 |
-
Why hasn't order #
|
| 27 |
What KPIs matter most in warehouse automation?,general_faq
|
| 28 |
File an incident report for Zone D,safety_incident
|
| 29 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 30 |
"A worker slipped near Sorter-02, please log it",safety_incident
|
| 31 |
-
What is the current stock level for SKU-
|
| 32 |
Is Crane-03 operational?,system_status
|
| 33 |
-
What is the current stock level for SKU-
|
| 34 |
Are all cranes online in Zone D?,system_status
|
| 35 |
What is predictive maintenance?,general_faq
|
| 36 |
What is the uptime for AMR-21 today?,system_status
|
| 37 |
-
Track order #
|
| 38 |
Log a safety incident involving Crane-05,safety_incident
|
| 39 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 40 |
What KPIs matter most in warehouse automation?,general_faq
|
| 41 |
-
Check inventory count for SKU-
|
| 42 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 43 |
Why is AGV-12 stuck near Zone D?,agv_navigation
|
| 44 |
-
Has order #
|
| 45 |
What is the current location of AGV-07?,agv_navigation
|
| 46 |
-
Do we have enough SKU-
|
| 47 |
Report unsafe pallet stacking in Zone D,safety_incident
|
| 48 |
What's the difference between AGV and AMR?,general_faq
|
| 49 |
-
Track order #
|
| 50 |
"Belt AGV-07 stopped unexpectedly, please check",equipment_maintenance
|
| 51 |
-
Is order #
|
| 52 |
What is the uptime for Conveyor-14 today?,system_status
|
| 53 |
There was a near collision between AGV-12 and a pedestrian in Zone B,safety_incident
|
| 54 |
Is Sorter-02 operational?,system_status
|
| 55 |
How does goods-to-person picking work?,general_faq
|
| 56 |
Report unsafe pallet stacking in Zone A,safety_incident
|
| 57 |
Suggest a wave picking plan for Zone C,picking_optimization
|
| 58 |
-
Has order #
|
| 59 |
-
Show the fulfillment status of #
|
| 60 |
What's the difference between AGV and AMR?,general_faq
|
| 61 |
-
Why hasn't order #
|
| 62 |
What's the difference between AGV and AMR?,general_faq
|
| 63 |
-
What's the fastest picking route for order #
|
| 64 |
-
Show the fulfillment status of #
|
| 65 |
Schedule maintenance for AMR-21,equipment_maintenance
|
| 66 |
Redirect Crane-03 around the blocked aisle in Zone D,agv_navigation
|
| 67 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 68 |
Report unsafe pallet stacking in Zone D,safety_incident
|
| 69 |
-
What's the status of order #
|
| 70 |
-
What's the status of order #
|
| 71 |
What is the current location of Sorter-02?,agv_navigation
|
| 72 |
"A worker slipped near Crane-03, please log it",safety_incident
|
| 73 |
-
Track order #
|
| 74 |
Route Conveyor-14 to picking station 7,agv_navigation
|
| 75 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 76 |
AGV-12 motor temperature seems high,equipment_maintenance
|
|
@@ -78,27 +78,27 @@ Crane Crane-05 reported a fault code,equipment_maintenance
|
|
| 78 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 79 |
Explain how an AS/RS works,general_faq
|
| 80 |
A forklift near-miss was reported in Zone D,safety_incident
|
| 81 |
-
Is order #
|
| 82 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 83 |
-
Give me stock levels across all zones for SKU-
|
| 84 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 85 |
Explain how an AS/RS works,general_faq
|
| 86 |
-
Check inventory count for SKU-
|
| 87 |
There was a near collision between Crane-05 and a pedestrian in Zone D,safety_incident
|
| 88 |
A forklift near-miss was reported in the mezzanine,safety_incident
|
| 89 |
-
How many units of SKU-
|
| 90 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 91 |
Reassign Sorter-02 to charging station,agv_navigation
|
| 92 |
What KPIs matter most in warehouse automation?,general_faq
|
| 93 |
Redirect AGV-12 around the blocked aisle in Zone A,agv_navigation
|
| 94 |
Route AGV-12 to picking station 3,agv_navigation
|
| 95 |
Check system health for the receiving dock,system_status
|
| 96 |
-
Show me the on-hand quantity of SKU-
|
| 97 |
Check system health for Zone A,system_status
|
| 98 |
Crane AMR-21 reported a fault code,equipment_maintenance
|
| 99 |
Redirect AMR-21 around the blocked aisle in the mezzanine,agv_navigation
|
| 100 |
What KPIs matter most in warehouse automation?,general_faq
|
| 101 |
-
Check inventory count for SKU-
|
| 102 |
Is the sorter in Zone A running normally?,system_status
|
| 103 |
What is the uptime for Conveyor-14 today?,system_status
|
| 104 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
|
@@ -106,94 +106,94 @@ What is predictive maintenance?,general_faq
|
|
| 106 |
Redirect AMR-21 around the blocked aisle in Zone B,agv_navigation
|
| 107 |
Reassign Crane-05 to charging station,agv_navigation
|
| 108 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 109 |
-
Give me stock levels across all zones for SKU-
|
| 110 |
What KPIs matter most in warehouse automation?,general_faq
|
| 111 |
-
Do we have enough SKU-
|
| 112 |
Schedule maintenance for Conveyor-14,equipment_maintenance
|
| 113 |
Is AGV-07 operational?,system_status
|
| 114 |
Crane Conveyor-14 reported a fault code,equipment_maintenance
|
| 115 |
What is predictive maintenance?,general_faq
|
| 116 |
What's the difference between AGV and AMR?,general_faq
|
| 117 |
-
What is the current stock level for SKU-
|
| 118 |
Report vibration issue on Sorter-02,equipment_maintenance
|
| 119 |
How can we reduce travel time for pickers in Zone B?,picking_optimization
|
| 120 |
Is Crane-05 operational?,system_status
|
| 121 |
-
Give me stock levels across all zones for SKU-
|
| 122 |
-
Show me the on-hand quantity of SKU-
|
| 123 |
-
Track order #
|
| 124 |
Is Crane-05 operational?,system_status
|
| 125 |
-
Show the fulfillment status of #
|
| 126 |
-
Show me the on-hand quantity of SKU-
|
| 127 |
-
Why hasn't order #
|
| 128 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 129 |
File an incident report for Zone B,safety_incident
|
| 130 |
How does goods-to-person picking work?,general_faq
|
| 131 |
What is predictive maintenance?,general_faq
|
| 132 |
-
Show the fulfillment status of #
|
| 133 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 134 |
Redirect AMR-21 around the blocked aisle in the mezzanine,agv_navigation
|
| 135 |
-
Is SKU-
|
| 136 |
Why is Conveyor-14 stuck near the receiving dock?,agv_navigation
|
| 137 |
How can we reduce travel time for pickers in Zone A?,picking_optimization
|
| 138 |
What is the uptime for Sorter-02 today?,system_status
|
| 139 |
-
Do we have enough SKU-
|
| 140 |
-
What's the status of order #
|
| 141 |
-
How much inventory is left for SKU-
|
| 142 |
-
Check inventory count for SKU-
|
| 143 |
What KPIs matter most in warehouse automation?,general_faq
|
| 144 |
Is Crane-05 operational?,system_status
|
| 145 |
-
How many units of SKU-
|
| 146 |
What KPIs matter most in warehouse automation?,general_faq
|
| 147 |
-
Is order #
|
| 148 |
-
Track order #
|
| 149 |
Report unsafe pallet stacking in Zone B,safety_incident
|
| 150 |
How can we reduce travel time for pickers in Zone D?,picking_optimization
|
| 151 |
-
Check inventory count for SKU-
|
| 152 |
Report unsafe pallet stacking in Zone C,safety_incident
|
| 153 |
What is the current location of Crane-05?,agv_navigation
|
| 154 |
-
Give me stock levels across all zones for SKU-
|
| 155 |
-
Is SKU-
|
| 156 |
What is predictive maintenance?,general_faq
|
| 157 |
-
Is order #
|
| 158 |
-
How many units of SKU-
|
| 159 |
Schedule maintenance for AGV-12,equipment_maintenance
|
| 160 |
What KPIs matter most in warehouse automation?,general_faq
|
| 161 |
-
Is order #
|
| 162 |
-
Show the fulfillment status of #
|
| 163 |
Should we batch pick these orders together?,picking_optimization
|
| 164 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 165 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 166 |
File an incident report for the mezzanine,safety_incident
|
| 167 |
Give me the current status of the WMS integration,system_status
|
| 168 |
-
What's the fastest picking route for order #
|
| 169 |
How can we reduce travel time for pickers in Zone D?,picking_optimization
|
| 170 |
Why is Sorter-02 stuck near the receiving dock?,agv_navigation
|
| 171 |
What is predictive maintenance?,general_faq
|
| 172 |
Report vibration issue on Conveyor-14,equipment_maintenance
|
| 173 |
File an incident report for the receiving dock,safety_incident
|
| 174 |
-
Has order #
|
| 175 |
Redirect AMR-21 around the blocked aisle in Zone D,agv_navigation
|
| 176 |
Schedule maintenance for AMR-21,equipment_maintenance
|
| 177 |
What is the uptime for Sorter-02 today?,system_status
|
| 178 |
Send AGV AMR-21 to Zone D,agv_navigation
|
| 179 |
Route AGV-12 to picking station 7,agv_navigation
|
| 180 |
-
Has order #
|
| 181 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 182 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 183 |
Should we batch pick these orders together?,picking_optimization
|
| 184 |
"Belt AGV-07 stopped unexpectedly, please check",equipment_maintenance
|
| 185 |
Give me the current status of the WMS integration,system_status
|
| 186 |
Are all cranes online in Zone C?,system_status
|
| 187 |
-
Track order #
|
| 188 |
Check system health for the mezzanine,system_status
|
| 189 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 190 |
"A worker slipped near Crane-03, please log it",safety_incident
|
| 191 |
Route Conveyor-14 to picking station 7,agv_navigation
|
| 192 |
-
When will order #
|
| 193 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 194 |
What is the uptime for Conveyor-14 today?,system_status
|
| 195 |
Route AGV-12 to picking station 7,agv_navigation
|
| 196 |
-
Is order #
|
| 197 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 198 |
Check system health for the receiving dock,system_status
|
| 199 |
How do sortation systems decide where to route a parcel?,general_faq
|
|
@@ -203,18 +203,18 @@ A forklift near-miss was reported in Zone A,safety_incident
|
|
| 203 |
What is the uptime for Sorter-02 today?,system_status
|
| 204 |
Is Conveyor-14 operational?,system_status
|
| 205 |
Are all cranes online in the mezzanine?,system_status
|
| 206 |
-
Do we have enough SKU-
|
| 207 |
Why is Conveyor-14 stuck near the receiving dock?,agv_navigation
|
| 208 |
Log a breakdown for Conveyor-14 in Zone A,equipment_maintenance
|
| 209 |
File an incident report for Zone D,safety_incident
|
| 210 |
Why is AGV-12 stuck near Zone A?,agv_navigation
|
| 211 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 212 |
Should we batch pick these orders together?,picking_optimization
|
| 213 |
-
Show me the on-hand quantity of SKU-
|
| 214 |
-
Has order #
|
| 215 |
Redirect Conveyor-14 around the blocked aisle in Zone C,agv_navigation
|
| 216 |
Is AMR-21 operational?,system_status
|
| 217 |
-
How many units of SKU-
|
| 218 |
"A worker slipped near AGV-07, please log it",safety_incident
|
| 219 |
A forklift near-miss was reported in Zone D,safety_incident
|
| 220 |
"Belt Conveyor-14 stopped unexpectedly, please check",equipment_maintenance
|
|
@@ -222,12 +222,12 @@ Log a breakdown for AGV-07 in Zone D,equipment_maintenance
|
|
| 222 |
Crane AMR-21 reported a fault code,equipment_maintenance
|
| 223 |
Is Conveyor-14 operational?,system_status
|
| 224 |
Why is Crane-05 stuck near Zone B?,agv_navigation
|
| 225 |
-
What's the fastest picking route for order #
|
| 226 |
-
Show me the on-hand quantity of SKU-
|
| 227 |
Is the sorter in Zone D running normally?,system_status
|
| 228 |
-
When will order #
|
| 229 |
-
When will order #
|
| 230 |
-
How many units of SKU-
|
| 231 |
What is the uptime for Crane-03 today?,system_status
|
| 232 |
The conveyor belt in the mezzanine is making noise,equipment_maintenance
|
| 233 |
What is predictive maintenance?,general_faq
|
|
@@ -237,31 +237,31 @@ Optimize the pick path for Zone B,picking_optimization
|
|
| 237 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 238 |
How does goods-to-person picking work?,general_faq
|
| 239 |
Reassign AGV-07 to charging station,agv_navigation
|
| 240 |
-
Track order #
|
| 241 |
Crane-03 motor temperature seems high,equipment_maintenance
|
| 242 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 243 |
Should we batch pick these orders together?,picking_optimization
|
| 244 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
| 245 |
-
What is the current stock level for SKU-
|
| 246 |
-
What's the status of order #
|
| 247 |
Check system health for the mezzanine,system_status
|
| 248 |
-
Show the fulfillment status of #
|
| 249 |
What's the difference between AGV and AMR?,general_faq
|
| 250 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 251 |
File an incident report for the mezzanine,safety_incident
|
| 252 |
-
What's the status of order #
|
| 253 |
Log a breakdown for Crane-05 in Zone C,equipment_maintenance
|
| 254 |
Send AGV Conveyor-14 to Zone D,agv_navigation
|
| 255 |
Is AMR-21 operational?,system_status
|
| 256 |
Are all cranes online in Zone A?,system_status
|
| 257 |
Should we batch pick these orders together?,picking_optimization
|
| 258 |
-
When will order #
|
| 259 |
What is the uptime for Crane-05 today?,system_status
|
| 260 |
Report vibration issue on Crane-03,equipment_maintenance
|
| 261 |
Reassign Crane-05 to charging station,agv_navigation
|
| 262 |
Redirect Crane-05 around the blocked aisle in the mezzanine,agv_navigation
|
| 263 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 264 |
-
What's the fastest picking route for order #
|
| 265 |
How can we reduce travel time for pickers in the receiving dock?,picking_optimization
|
| 266 |
"A worker slipped near Crane-05, please log it",safety_incident
|
| 267 |
How can we reduce travel time for pickers in the receiving dock?,picking_optimization
|
|
@@ -282,7 +282,7 @@ Log a safety incident involving Crane-03,safety_incident
|
|
| 282 |
What KPIs matter most in warehouse automation?,general_faq
|
| 283 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 284 |
What KPIs matter most in warehouse automation?,general_faq
|
| 285 |
-
Is order #
|
| 286 |
Crane Crane-03 reported a fault code,equipment_maintenance
|
| 287 |
Suggest a wave picking plan for Zone C,picking_optimization
|
| 288 |
A forklift near-miss was reported in Zone B,safety_incident
|
|
@@ -296,7 +296,7 @@ Log a breakdown for AMR-21 in Zone A,equipment_maintenance
|
|
| 296 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 297 |
Suggest a wave picking plan for Zone D,picking_optimization
|
| 298 |
What is the current location of Crane-05?,agv_navigation
|
| 299 |
-
What's the status of order #
|
| 300 |
The conveyor belt in the receiving dock is making noise,equipment_maintenance
|
| 301 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 302 |
Route Sorter-02 to picking station 12,agv_navigation
|
|
@@ -305,58 +305,58 @@ A forklift near-miss was reported in Zone A,safety_incident
|
|
| 305 |
"Belt Crane-05 stopped unexpectedly, please check",equipment_maintenance
|
| 306 |
Should we batch pick these orders together?,picking_optimization
|
| 307 |
Are all cranes online in Zone A?,system_status
|
| 308 |
-
Track order #
|
| 309 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 310 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 311 |
AGV-12 motor temperature seems high,equipment_maintenance
|
| 312 |
Is Sorter-02 operational?,system_status
|
| 313 |
-
Show me the on-hand quantity of SKU-
|
| 314 |
What KPIs matter most in warehouse automation?,general_faq
|
| 315 |
-
Is order #
|
| 316 |
Suggest a wave picking plan for Zone B,picking_optimization
|
| 317 |
-
When will order #
|
| 318 |
Should we batch pick these orders together?,picking_optimization
|
| 319 |
What is the current location of AMR-21?,agv_navigation
|
| 320 |
Crane Sorter-02 reported a fault code,equipment_maintenance
|
| 321 |
-
Is SKU-
|
| 322 |
-
Check inventory count for SKU-
|
| 323 |
-
What is the current stock level for SKU-
|
| 324 |
Report vibration issue on Conveyor-14,equipment_maintenance
|
| 325 |
Log a breakdown for AMR-21 in Zone B,equipment_maintenance
|
| 326 |
Is the sorter in Zone A running normally?,system_status
|
| 327 |
What is a WMS?,general_faq
|
| 328 |
Send AGV AGV-12 to the receiving dock,agv_navigation
|
| 329 |
-
When will order #
|
| 330 |
-
How much inventory is left for SKU-
|
| 331 |
Should we batch pick these orders together?,picking_optimization
|
| 332 |
Give me the current status of the WMS integration,system_status
|
| 333 |
What is the uptime for AGV-07 today?,system_status
|
| 334 |
The conveyor belt in Zone D is making noise,equipment_maintenance
|
| 335 |
-
Check inventory count for SKU-
|
| 336 |
Give me the current status of the WMS integration,system_status
|
| 337 |
Why is Crane-03 stuck near Zone B?,agv_navigation
|
| 338 |
-
What's the fastest picking route for order #
|
| 339 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 340 |
Check system health for the mezzanine,system_status
|
| 341 |
-
How many units of SKU-
|
| 342 |
-
What's the fastest picking route for order #
|
| 343 |
What KPIs matter most in warehouse automation?,general_faq
|
| 344 |
-
Why hasn't order #
|
| 345 |
Redirect AMR-21 around the blocked aisle in Zone C,agv_navigation
|
| 346 |
Is the sorter in Zone A running normally?,system_status
|
| 347 |
Route Sorter-02 to picking station 12,agv_navigation
|
| 348 |
Schedule maintenance for AGV-07,equipment_maintenance
|
| 349 |
-
When will order #
|
| 350 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 351 |
Send AGV Crane-05 to Zone B,agv_navigation
|
| 352 |
-
Show the fulfillment status of #
|
| 353 |
-
How many units of SKU-
|
| 354 |
-
What is the current stock level for SKU-
|
| 355 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 356 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 357 |
Why is AGV-12 stuck near Zone C?,agv_navigation
|
| 358 |
What KPIs matter most in warehouse automation?,general_faq
|
| 359 |
-
Do we have enough SKU-
|
| 360 |
Check system health for Zone C,system_status
|
| 361 |
Redirect Crane-03 around the blocked aisle in Zone B,agv_navigation
|
| 362 |
Optimize the pick path for the mezzanine,picking_optimization
|
|
@@ -364,18 +364,18 @@ Optimize the pick path for Zone B,picking_optimization
|
|
| 364 |
Report vibration issue on Crane-05,equipment_maintenance
|
| 365 |
What is the uptime for AGV-12 today?,system_status
|
| 366 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
| 367 |
-
What's the status of order #
|
| 368 |
Log a breakdown for AMR-21 in Zone D,equipment_maintenance
|
| 369 |
The sorter in Zone C keeps jamming,equipment_maintenance
|
| 370 |
What is predictive maintenance?,general_faq
|
| 371 |
-
Is SKU-
|
| 372 |
File an incident report for Zone D,safety_incident
|
| 373 |
What is cycle counting?,general_faq
|
| 374 |
-
What's the status of order #
|
| 375 |
There was a near collision between Conveyor-14 and a pedestrian in Zone A,safety_incident
|
| 376 |
-
What is the current stock level for SKU-
|
| 377 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 378 |
-
What is the current stock level for SKU-
|
| 379 |
Explain how an AS/RS works,general_faq
|
| 380 |
Give me the current status of the WMS integration,system_status
|
| 381 |
Route AGV-07 to picking station 12,agv_navigation
|
|
@@ -388,7 +388,7 @@ Redirect AGV-12 around the blocked aisle in the mezzanine,agv_navigation
|
|
| 388 |
Send AGV Crane-03 to Zone A,agv_navigation
|
| 389 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 390 |
What KPIs matter most in warehouse automation?,general_faq
|
| 391 |
-
What's the fastest picking route for order #
|
| 392 |
What's the difference between AGV and AMR?,general_faq
|
| 393 |
What's the difference between AGV and AMR?,general_faq
|
| 394 |
Log a safety incident involving AGV-12,safety_incident
|
|
@@ -396,35 +396,35 @@ File an incident report for the receiving dock,safety_incident
|
|
| 396 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 397 |
Redirect Crane-03 around the blocked aisle in Zone B,agv_navigation
|
| 398 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 399 |
-
Do we have enough SKU-
|
| 400 |
What is the current location of Crane-05?,agv_navigation
|
| 401 |
What is the current location of Conveyor-14?,agv_navigation
|
| 402 |
Log a safety incident involving Crane-05,safety_incident
|
| 403 |
Suggest a wave picking plan for the mezzanine,picking_optimization
|
| 404 |
-
Is order #
|
| 405 |
-
Give me stock levels across all zones for SKU-
|
| 406 |
Give me the current status of the WMS integration,system_status
|
| 407 |
-
Do we have enough SKU-
|
| 408 |
Explain how an AS/RS works,general_faq
|
| 409 |
Explain how an AS/RS works,general_faq
|
| 410 |
-
Do we have enough SKU-
|
| 411 |
-
When will order #
|
| 412 |
Route Crane-03 to picking station 5,agv_navigation
|
| 413 |
-
Check inventory count for SKU-
|
| 414 |
Should we batch pick these orders together?,picking_optimization
|
| 415 |
Is the sorter in Zone A running normally?,system_status
|
| 416 |
-
When will order #
|
| 417 |
There was a near collision between Crane-05 and a pedestrian in Zone B,safety_incident
|
| 418 |
How does goods-to-person picking work?,general_faq
|
| 419 |
-
How much inventory is left for SKU-
|
| 420 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 421 |
Optimize the pick path for Zone D,picking_optimization
|
| 422 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 423 |
-
How many units of SKU-
|
| 424 |
"A worker slipped near AGV-07, please log it",safety_incident
|
| 425 |
-
Show the fulfillment status of #
|
| 426 |
Check system health for Zone D,system_status
|
| 427 |
-
What's the fastest picking route for order #
|
| 428 |
The conveyor belt in Zone A is making noise,equipment_maintenance
|
| 429 |
File an incident report for the receiving dock,safety_incident
|
| 430 |
What is predictive maintenance?,general_faq
|
|
@@ -433,20 +433,20 @@ There was a near collision between AGV-07 and a pedestrian in Zone D,safety_inci
|
|
| 433 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 434 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 435 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 436 |
-
Give me stock levels across all zones for SKU-
|
| 437 |
Is AGV-07 operational?,system_status
|
| 438 |
-
What is the current stock level for SKU-
|
| 439 |
AMR-21 motor temperature seems high,equipment_maintenance
|
| 440 |
Why is Crane-03 stuck near Zone C?,agv_navigation
|
| 441 |
What's the difference between AGV and AMR?,general_faq
|
| 442 |
Why is Sorter-02 stuck near Zone A?,agv_navigation
|
| 443 |
AMR-21 motor temperature seems high,equipment_maintenance
|
| 444 |
-
How much inventory is left for SKU-
|
| 445 |
-
Do we have enough SKU-
|
| 446 |
There was a near collision between AGV-12 and a pedestrian in Zone A,safety_incident
|
| 447 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 448 |
Should we batch pick these orders together?,picking_optimization
|
| 449 |
-
Do we have enough SKU-
|
| 450 |
File an incident report for Zone A,safety_incident
|
| 451 |
Log a breakdown for AGV-07 in Zone B,equipment_maintenance
|
| 452 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
|
@@ -462,20 +462,20 @@ Crane Sorter-02 reported a fault code,equipment_maintenance
|
|
| 462 |
Sorter-02 motor temperature seems high,equipment_maintenance
|
| 463 |
"Belt Crane-05 stopped unexpectedly, please check",equipment_maintenance
|
| 464 |
There was a near collision between Sorter-02 and a pedestrian in Zone D,safety_incident
|
| 465 |
-
Has order #
|
| 466 |
Is Conveyor-14 operational?,system_status
|
| 467 |
-
Has order #
|
| 468 |
What is a WMS?,general_faq
|
| 469 |
Report unsafe pallet stacking in Zone C,safety_incident
|
| 470 |
Route AMR-21 to picking station 3,agv_navigation
|
| 471 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 472 |
Sorter-02 motor temperature seems high,equipment_maintenance
|
| 473 |
What is a WMS?,general_faq
|
| 474 |
-
Do we have enough SKU-
|
| 475 |
Send AGV AGV-12 to Zone D,agv_navigation
|
| 476 |
-
What's the status of order #
|
| 477 |
-
Why hasn't order #
|
| 478 |
Suggest a wave picking plan for the receiving dock,picking_optimization
|
| 479 |
"A worker slipped near Conveyor-14, please log it",safety_incident
|
| 480 |
What's the difference between AGV and AMR?,general_faq
|
| 481 |
-
Track order #
|
|
|
|
| 1 |
text,intent
|
| 2 |
+
Is order #37898 delayed?,order_status
|
| 3 |
Is the sorter in Zone C running normally?,system_status
|
| 4 |
What is the uptime for Sorter-02 today?,system_status
|
| 5 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
|
|
|
| 7 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 8 |
Optimize the pick path for Zone D,picking_optimization
|
| 9 |
Is Crane-03 operational?,system_status
|
| 10 |
+
Has order #26915 shipped yet?,order_status
|
| 11 |
What's the difference between AGV and AMR?,general_faq
|
| 12 |
+
What is the current stock level for SKU-7663?,inventory_check
|
| 13 |
Optimize the pick path for the receiving dock,picking_optimization
|
| 14 |
What's the difference between AGV and AMR?,general_faq
|
| 15 |
How can we reduce travel time for pickers in Zone C?,picking_optimization
|
| 16 |
+
What is the current stock level for SKU-1214?,inventory_check
|
| 17 |
+
What's the status of order #50538?,order_status
|
| 18 |
+
How much inventory is left for SKU-4959?,inventory_check
|
| 19 |
What is a WMS?,general_faq
|
| 20 |
+
Is SKU-9180 in stock at Zone A?,inventory_check
|
| 21 |
Send AGV AMR-21 to Zone B,agv_navigation
|
| 22 |
Redirect Sorter-02 around the blocked aisle in Zone B,agv_navigation
|
| 23 |
Explain how an AS/RS works,general_faq
|
| 24 |
+
When will order #66314 be delivered?,order_status
|
| 25 |
+
What's the fastest picking route for order #52993?,picking_optimization
|
| 26 |
+
Why hasn't order #81176 left the dock yet?,order_status
|
| 27 |
What KPIs matter most in warehouse automation?,general_faq
|
| 28 |
File an incident report for Zone D,safety_incident
|
| 29 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 30 |
"A worker slipped near Sorter-02, please log it",safety_incident
|
| 31 |
+
What is the current stock level for SKU-1705?,inventory_check
|
| 32 |
Is Crane-03 operational?,system_status
|
| 33 |
+
What is the current stock level for SKU-1151?,inventory_check
|
| 34 |
Are all cranes online in Zone D?,system_status
|
| 35 |
What is predictive maintenance?,general_faq
|
| 36 |
What is the uptime for AMR-21 today?,system_status
|
| 37 |
+
Track order #76958 for me,order_status
|
| 38 |
Log a safety incident involving Crane-05,safety_incident
|
| 39 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 40 |
What KPIs matter most in warehouse automation?,general_faq
|
| 41 |
+
Check inventory count for SKU-1240 in the mezzanine,inventory_check
|
| 42 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 43 |
Why is AGV-12 stuck near Zone D?,agv_navigation
|
| 44 |
+
Has order #36763 shipped yet?,order_status
|
| 45 |
What is the current location of AGV-07?,agv_navigation
|
| 46 |
+
Do we have enough SKU-5968 to fulfill 200 units?,inventory_check
|
| 47 |
Report unsafe pallet stacking in Zone D,safety_incident
|
| 48 |
What's the difference between AGV and AMR?,general_faq
|
| 49 |
+
Track order #45880 for me,order_status
|
| 50 |
"Belt AGV-07 stopped unexpectedly, please check",equipment_maintenance
|
| 51 |
+
Is order #77822 delayed?,order_status
|
| 52 |
What is the uptime for Conveyor-14 today?,system_status
|
| 53 |
There was a near collision between AGV-12 and a pedestrian in Zone B,safety_incident
|
| 54 |
Is Sorter-02 operational?,system_status
|
| 55 |
How does goods-to-person picking work?,general_faq
|
| 56 |
Report unsafe pallet stacking in Zone A,safety_incident
|
| 57 |
Suggest a wave picking plan for Zone C,picking_optimization
|
| 58 |
+
Has order #69175 shipped yet?,order_status
|
| 59 |
+
Show the fulfillment status of #72615,order_status
|
| 60 |
What's the difference between AGV and AMR?,general_faq
|
| 61 |
+
Why hasn't order #13114 left the dock yet?,order_status
|
| 62 |
What's the difference between AGV and AMR?,general_faq
|
| 63 |
+
What's the fastest picking route for order #22223?,picking_optimization
|
| 64 |
+
Show the fulfillment status of #80304,order_status
|
| 65 |
Schedule maintenance for AMR-21,equipment_maintenance
|
| 66 |
Redirect Crane-03 around the blocked aisle in Zone D,agv_navigation
|
| 67 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 68 |
Report unsafe pallet stacking in Zone D,safety_incident
|
| 69 |
+
What's the status of order #84458?,order_status
|
| 70 |
+
What's the status of order #26699?,order_status
|
| 71 |
What is the current location of Sorter-02?,agv_navigation
|
| 72 |
"A worker slipped near Crane-03, please log it",safety_incident
|
| 73 |
+
Track order #37216 for me,order_status
|
| 74 |
Route Conveyor-14 to picking station 7,agv_navigation
|
| 75 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 76 |
AGV-12 motor temperature seems high,equipment_maintenance
|
|
|
|
| 78 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 79 |
Explain how an AS/RS works,general_faq
|
| 80 |
A forklift near-miss was reported in Zone D,safety_incident
|
| 81 |
+
Is order #19388 delayed?,order_status
|
| 82 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 83 |
+
Give me stock levels across all zones for SKU-5790,inventory_check
|
| 84 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 85 |
Explain how an AS/RS works,general_faq
|
| 86 |
+
Check inventory count for SKU-9378 in Zone D,inventory_check
|
| 87 |
There was a near collision between Crane-05 and a pedestrian in Zone D,safety_incident
|
| 88 |
A forklift near-miss was reported in the mezzanine,safety_incident
|
| 89 |
+
How many units of SKU-1573 are in Zone D?,inventory_check
|
| 90 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 91 |
Reassign Sorter-02 to charging station,agv_navigation
|
| 92 |
What KPIs matter most in warehouse automation?,general_faq
|
| 93 |
Redirect AGV-12 around the blocked aisle in Zone A,agv_navigation
|
| 94 |
Route AGV-12 to picking station 3,agv_navigation
|
| 95 |
Check system health for the receiving dock,system_status
|
| 96 |
+
Show me the on-hand quantity of SKU-7096,inventory_check
|
| 97 |
Check system health for Zone A,system_status
|
| 98 |
Crane AMR-21 reported a fault code,equipment_maintenance
|
| 99 |
Redirect AMR-21 around the blocked aisle in the mezzanine,agv_navigation
|
| 100 |
What KPIs matter most in warehouse automation?,general_faq
|
| 101 |
+
Check inventory count for SKU-9515 in Zone C,inventory_check
|
| 102 |
Is the sorter in Zone A running normally?,system_status
|
| 103 |
What is the uptime for Conveyor-14 today?,system_status
|
| 104 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
|
|
|
| 106 |
Redirect AMR-21 around the blocked aisle in Zone B,agv_navigation
|
| 107 |
Reassign Crane-05 to charging station,agv_navigation
|
| 108 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 109 |
+
Give me stock levels across all zones for SKU-3527,inventory_check
|
| 110 |
What KPIs matter most in warehouse automation?,general_faq
|
| 111 |
+
Do we have enough SKU-7090 to fulfill 200 units?,inventory_check
|
| 112 |
Schedule maintenance for Conveyor-14,equipment_maintenance
|
| 113 |
Is AGV-07 operational?,system_status
|
| 114 |
Crane Conveyor-14 reported a fault code,equipment_maintenance
|
| 115 |
What is predictive maintenance?,general_faq
|
| 116 |
What's the difference between AGV and AMR?,general_faq
|
| 117 |
+
What is the current stock level for SKU-3744?,inventory_check
|
| 118 |
Report vibration issue on Sorter-02,equipment_maintenance
|
| 119 |
How can we reduce travel time for pickers in Zone B?,picking_optimization
|
| 120 |
Is Crane-05 operational?,system_status
|
| 121 |
+
Give me stock levels across all zones for SKU-5721,inventory_check
|
| 122 |
+
Show me the on-hand quantity of SKU-5559,inventory_check
|
| 123 |
+
Track order #19300 for me,order_status
|
| 124 |
Is Crane-05 operational?,system_status
|
| 125 |
+
Show the fulfillment status of #13571,order_status
|
| 126 |
+
Show me the on-hand quantity of SKU-5098,inventory_check
|
| 127 |
+
Why hasn't order #10859 left the dock yet?,order_status
|
| 128 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 129 |
File an incident report for Zone B,safety_incident
|
| 130 |
How does goods-to-person picking work?,general_faq
|
| 131 |
What is predictive maintenance?,general_faq
|
| 132 |
+
Show the fulfillment status of #96688,order_status
|
| 133 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 134 |
Redirect AMR-21 around the blocked aisle in the mezzanine,agv_navigation
|
| 135 |
+
Is SKU-4451 in stock at Zone B?,inventory_check
|
| 136 |
Why is Conveyor-14 stuck near the receiving dock?,agv_navigation
|
| 137 |
How can we reduce travel time for pickers in Zone A?,picking_optimization
|
| 138 |
What is the uptime for Sorter-02 today?,system_status
|
| 139 |
+
Do we have enough SKU-8632 to fulfill 200 units?,inventory_check
|
| 140 |
+
What's the status of order #39040?,order_status
|
| 141 |
+
How much inventory is left for SKU-9838?,inventory_check
|
| 142 |
+
Check inventory count for SKU-4526 in Zone C,inventory_check
|
| 143 |
What KPIs matter most in warehouse automation?,general_faq
|
| 144 |
Is Crane-05 operational?,system_status
|
| 145 |
+
How many units of SKU-7701 are in Zone A?,inventory_check
|
| 146 |
What KPIs matter most in warehouse automation?,general_faq
|
| 147 |
+
Is order #29501 delayed?,order_status
|
| 148 |
+
Track order #16617 for me,order_status
|
| 149 |
Report unsafe pallet stacking in Zone B,safety_incident
|
| 150 |
How can we reduce travel time for pickers in Zone D?,picking_optimization
|
| 151 |
+
Check inventory count for SKU-3493 in the receiving dock,inventory_check
|
| 152 |
Report unsafe pallet stacking in Zone C,safety_incident
|
| 153 |
What is the current location of Crane-05?,agv_navigation
|
| 154 |
+
Give me stock levels across all zones for SKU-6612,inventory_check
|
| 155 |
+
Is SKU-1080 in stock at Zone C?,inventory_check
|
| 156 |
What is predictive maintenance?,general_faq
|
| 157 |
+
Is order #42539 delayed?,order_status
|
| 158 |
+
How many units of SKU-2112 are in the mezzanine?,inventory_check
|
| 159 |
Schedule maintenance for AGV-12,equipment_maintenance
|
| 160 |
What KPIs matter most in warehouse automation?,general_faq
|
| 161 |
+
Is order #71287 delayed?,order_status
|
| 162 |
+
Show the fulfillment status of #96666,order_status
|
| 163 |
Should we batch pick these orders together?,picking_optimization
|
| 164 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 165 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 166 |
File an incident report for the mezzanine,safety_incident
|
| 167 |
Give me the current status of the WMS integration,system_status
|
| 168 |
+
What's the fastest picking route for order #67193?,picking_optimization
|
| 169 |
How can we reduce travel time for pickers in Zone D?,picking_optimization
|
| 170 |
Why is Sorter-02 stuck near the receiving dock?,agv_navigation
|
| 171 |
What is predictive maintenance?,general_faq
|
| 172 |
Report vibration issue on Conveyor-14,equipment_maintenance
|
| 173 |
File an incident report for the receiving dock,safety_incident
|
| 174 |
+
Has order #11872 shipped yet?,order_status
|
| 175 |
Redirect AMR-21 around the blocked aisle in Zone D,agv_navigation
|
| 176 |
Schedule maintenance for AMR-21,equipment_maintenance
|
| 177 |
What is the uptime for Sorter-02 today?,system_status
|
| 178 |
Send AGV AMR-21 to Zone D,agv_navigation
|
| 179 |
Route AGV-12 to picking station 7,agv_navigation
|
| 180 |
+
Has order #23013 shipped yet?,order_status
|
| 181 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 182 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 183 |
Should we batch pick these orders together?,picking_optimization
|
| 184 |
"Belt AGV-07 stopped unexpectedly, please check",equipment_maintenance
|
| 185 |
Give me the current status of the WMS integration,system_status
|
| 186 |
Are all cranes online in Zone C?,system_status
|
| 187 |
+
Track order #30107 for me,order_status
|
| 188 |
Check system health for the mezzanine,system_status
|
| 189 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 190 |
"A worker slipped near Crane-03, please log it",safety_incident
|
| 191 |
Route Conveyor-14 to picking station 7,agv_navigation
|
| 192 |
+
When will order #20466 be delivered?,order_status
|
| 193 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 194 |
What is the uptime for Conveyor-14 today?,system_status
|
| 195 |
Route AGV-12 to picking station 7,agv_navigation
|
| 196 |
+
Is order #77099 delayed?,order_status
|
| 197 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 198 |
Check system health for the receiving dock,system_status
|
| 199 |
How do sortation systems decide where to route a parcel?,general_faq
|
|
|
|
| 203 |
What is the uptime for Sorter-02 today?,system_status
|
| 204 |
Is Conveyor-14 operational?,system_status
|
| 205 |
Are all cranes online in the mezzanine?,system_status
|
| 206 |
+
Do we have enough SKU-8857 to fulfill 200 units?,inventory_check
|
| 207 |
Why is Conveyor-14 stuck near the receiving dock?,agv_navigation
|
| 208 |
Log a breakdown for Conveyor-14 in Zone A,equipment_maintenance
|
| 209 |
File an incident report for Zone D,safety_incident
|
| 210 |
Why is AGV-12 stuck near Zone A?,agv_navigation
|
| 211 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 212 |
Should we batch pick these orders together?,picking_optimization
|
| 213 |
+
Show me the on-hand quantity of SKU-5184,inventory_check
|
| 214 |
+
Has order #84530 shipped yet?,order_status
|
| 215 |
Redirect Conveyor-14 around the blocked aisle in Zone C,agv_navigation
|
| 216 |
Is AMR-21 operational?,system_status
|
| 217 |
+
How many units of SKU-2141 are in Zone B?,inventory_check
|
| 218 |
"A worker slipped near AGV-07, please log it",safety_incident
|
| 219 |
A forklift near-miss was reported in Zone D,safety_incident
|
| 220 |
"Belt Conveyor-14 stopped unexpectedly, please check",equipment_maintenance
|
|
|
|
| 222 |
Crane AMR-21 reported a fault code,equipment_maintenance
|
| 223 |
Is Conveyor-14 operational?,system_status
|
| 224 |
Why is Crane-05 stuck near Zone B?,agv_navigation
|
| 225 |
+
What's the fastest picking route for order #52316?,picking_optimization
|
| 226 |
+
Show me the on-hand quantity of SKU-8644,inventory_check
|
| 227 |
Is the sorter in Zone D running normally?,system_status
|
| 228 |
+
When will order #59204 be delivered?,order_status
|
| 229 |
+
When will order #59602 be delivered?,order_status
|
| 230 |
+
How many units of SKU-8300 are in Zone A?,inventory_check
|
| 231 |
What is the uptime for Crane-03 today?,system_status
|
| 232 |
The conveyor belt in the mezzanine is making noise,equipment_maintenance
|
| 233 |
What is predictive maintenance?,general_faq
|
|
|
|
| 237 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 238 |
How does goods-to-person picking work?,general_faq
|
| 239 |
Reassign AGV-07 to charging station,agv_navigation
|
| 240 |
+
Track order #11091 for me,order_status
|
| 241 |
Crane-03 motor temperature seems high,equipment_maintenance
|
| 242 |
The sorter in Zone D keeps jamming,equipment_maintenance
|
| 243 |
Should we batch pick these orders together?,picking_optimization
|
| 244 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
| 245 |
+
What is the current stock level for SKU-8634?,inventory_check
|
| 246 |
+
What's the status of order #52708?,order_status
|
| 247 |
Check system health for the mezzanine,system_status
|
| 248 |
+
Show the fulfillment status of #26180,order_status
|
| 249 |
What's the difference between AGV and AMR?,general_faq
|
| 250 |
The sorter in the mezzanine keeps jamming,equipment_maintenance
|
| 251 |
File an incident report for the mezzanine,safety_incident
|
| 252 |
+
What's the status of order #77245?,order_status
|
| 253 |
Log a breakdown for Crane-05 in Zone C,equipment_maintenance
|
| 254 |
Send AGV Conveyor-14 to Zone D,agv_navigation
|
| 255 |
Is AMR-21 operational?,system_status
|
| 256 |
Are all cranes online in Zone A?,system_status
|
| 257 |
Should we batch pick these orders together?,picking_optimization
|
| 258 |
+
When will order #18447 be delivered?,order_status
|
| 259 |
What is the uptime for Crane-05 today?,system_status
|
| 260 |
Report vibration issue on Crane-03,equipment_maintenance
|
| 261 |
Reassign Crane-05 to charging station,agv_navigation
|
| 262 |
Redirect Crane-05 around the blocked aisle in the mezzanine,agv_navigation
|
| 263 |
Suggest a wave picking plan for Zone A,picking_optimization
|
| 264 |
+
What's the fastest picking route for order #11864?,picking_optimization
|
| 265 |
How can we reduce travel time for pickers in the receiving dock?,picking_optimization
|
| 266 |
"A worker slipped near Crane-05, please log it",safety_incident
|
| 267 |
How can we reduce travel time for pickers in the receiving dock?,picking_optimization
|
|
|
|
| 282 |
What KPIs matter most in warehouse automation?,general_faq
|
| 283 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 284 |
What KPIs matter most in warehouse automation?,general_faq
|
| 285 |
+
Is order #74973 delayed?,order_status
|
| 286 |
Crane Crane-03 reported a fault code,equipment_maintenance
|
| 287 |
Suggest a wave picking plan for Zone C,picking_optimization
|
| 288 |
A forklift near-miss was reported in Zone B,safety_incident
|
|
|
|
| 296 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 297 |
Suggest a wave picking plan for Zone D,picking_optimization
|
| 298 |
What is the current location of Crane-05?,agv_navigation
|
| 299 |
+
What's the status of order #87757?,order_status
|
| 300 |
The conveyor belt in the receiving dock is making noise,equipment_maintenance
|
| 301 |
A forklift near-miss was reported in Zone C,safety_incident
|
| 302 |
Route Sorter-02 to picking station 12,agv_navigation
|
|
|
|
| 305 |
"Belt Crane-05 stopped unexpectedly, please check",equipment_maintenance
|
| 306 |
Should we batch pick these orders together?,picking_optimization
|
| 307 |
Are all cranes online in Zone A?,system_status
|
| 308 |
+
Track order #36358 for me,order_status
|
| 309 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 310 |
Report unsafe pallet stacking in the receiving dock,safety_incident
|
| 311 |
AGV-12 motor temperature seems high,equipment_maintenance
|
| 312 |
Is Sorter-02 operational?,system_status
|
| 313 |
+
Show me the on-hand quantity of SKU-2270,inventory_check
|
| 314 |
What KPIs matter most in warehouse automation?,general_faq
|
| 315 |
+
Is order #22755 delayed?,order_status
|
| 316 |
Suggest a wave picking plan for Zone B,picking_optimization
|
| 317 |
+
When will order #46139 be delivered?,order_status
|
| 318 |
Should we batch pick these orders together?,picking_optimization
|
| 319 |
What is the current location of AMR-21?,agv_navigation
|
| 320 |
Crane Sorter-02 reported a fault code,equipment_maintenance
|
| 321 |
+
Is SKU-8193 in stock at the mezzanine?,inventory_check
|
| 322 |
+
Check inventory count for SKU-4760 in the mezzanine,inventory_check
|
| 323 |
+
What is the current stock level for SKU-7210?,inventory_check
|
| 324 |
Report vibration issue on Conveyor-14,equipment_maintenance
|
| 325 |
Log a breakdown for AMR-21 in Zone B,equipment_maintenance
|
| 326 |
Is the sorter in Zone A running normally?,system_status
|
| 327 |
What is a WMS?,general_faq
|
| 328 |
Send AGV AGV-12 to the receiving dock,agv_navigation
|
| 329 |
+
When will order #40339 be delivered?,order_status
|
| 330 |
+
How much inventory is left for SKU-5187?,inventory_check
|
| 331 |
Should we batch pick these orders together?,picking_optimization
|
| 332 |
Give me the current status of the WMS integration,system_status
|
| 333 |
What is the uptime for AGV-07 today?,system_status
|
| 334 |
The conveyor belt in Zone D is making noise,equipment_maintenance
|
| 335 |
+
Check inventory count for SKU-9221 in Zone B,inventory_check
|
| 336 |
Give me the current status of the WMS integration,system_status
|
| 337 |
Why is Crane-03 stuck near Zone B?,agv_navigation
|
| 338 |
+
What's the fastest picking route for order #39330?,picking_optimization
|
| 339 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 340 |
Check system health for the mezzanine,system_status
|
| 341 |
+
How many units of SKU-7921 are in the mezzanine?,inventory_check
|
| 342 |
+
What's the fastest picking route for order #36192?,picking_optimization
|
| 343 |
What KPIs matter most in warehouse automation?,general_faq
|
| 344 |
+
Why hasn't order #72092 left the dock yet?,order_status
|
| 345 |
Redirect AMR-21 around the blocked aisle in Zone C,agv_navigation
|
| 346 |
Is the sorter in Zone A running normally?,system_status
|
| 347 |
Route Sorter-02 to picking station 12,agv_navigation
|
| 348 |
Schedule maintenance for AGV-07,equipment_maintenance
|
| 349 |
+
When will order #49814 be delivered?,order_status
|
| 350 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 351 |
Send AGV Crane-05 to Zone B,agv_navigation
|
| 352 |
+
Show the fulfillment status of #77475,order_status
|
| 353 |
+
How many units of SKU-9050 are in the mezzanine?,inventory_check
|
| 354 |
+
What is the current stock level for SKU-8851?,inventory_check
|
| 355 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 356 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 357 |
Why is AGV-12 stuck near Zone C?,agv_navigation
|
| 358 |
What KPIs matter most in warehouse automation?,general_faq
|
| 359 |
+
Do we have enough SKU-3849 to fulfill 200 units?,inventory_check
|
| 360 |
Check system health for Zone C,system_status
|
| 361 |
Redirect Crane-03 around the blocked aisle in Zone B,agv_navigation
|
| 362 |
Optimize the pick path for the mezzanine,picking_optimization
|
|
|
|
| 364 |
Report vibration issue on Crane-05,equipment_maintenance
|
| 365 |
What is the uptime for AGV-12 today?,system_status
|
| 366 |
Crane AGV-12 reported a fault code,equipment_maintenance
|
| 367 |
+
What's the status of order #14373?,order_status
|
| 368 |
Log a breakdown for AMR-21 in Zone D,equipment_maintenance
|
| 369 |
The sorter in Zone C keeps jamming,equipment_maintenance
|
| 370 |
What is predictive maintenance?,general_faq
|
| 371 |
+
Is SKU-3836 in stock at Zone A?,inventory_check
|
| 372 |
File an incident report for Zone D,safety_incident
|
| 373 |
What is cycle counting?,general_faq
|
| 374 |
+
What's the status of order #34002?,order_status
|
| 375 |
There was a near collision between Conveyor-14 and a pedestrian in Zone A,safety_incident
|
| 376 |
+
What is the current stock level for SKU-5377?,inventory_check
|
| 377 |
Report vibration issue on AMR-21,equipment_maintenance
|
| 378 |
+
What is the current stock level for SKU-7925?,inventory_check
|
| 379 |
Explain how an AS/RS works,general_faq
|
| 380 |
Give me the current status of the WMS integration,system_status
|
| 381 |
Route AGV-07 to picking station 12,agv_navigation
|
|
|
|
| 388 |
Send AGV Crane-03 to Zone A,agv_navigation
|
| 389 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 390 |
What KPIs matter most in warehouse automation?,general_faq
|
| 391 |
+
What's the fastest picking route for order #52930?,picking_optimization
|
| 392 |
What's the difference between AGV and AMR?,general_faq
|
| 393 |
What's the difference between AGV and AMR?,general_faq
|
| 394 |
Log a safety incident involving AGV-12,safety_incident
|
|
|
|
| 396 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 397 |
Redirect Crane-03 around the blocked aisle in Zone B,agv_navigation
|
| 398 |
"Belt AGV-12 stopped unexpectedly, please check",equipment_maintenance
|
| 399 |
+
Do we have enough SKU-1497 to fulfill 200 units?,inventory_check
|
| 400 |
What is the current location of Crane-05?,agv_navigation
|
| 401 |
What is the current location of Conveyor-14?,agv_navigation
|
| 402 |
Log a safety incident involving Crane-05,safety_incident
|
| 403 |
Suggest a wave picking plan for the mezzanine,picking_optimization
|
| 404 |
+
Is order #15665 delayed?,order_status
|
| 405 |
+
Give me stock levels across all zones for SKU-1705,inventory_check
|
| 406 |
Give me the current status of the WMS integration,system_status
|
| 407 |
+
Do we have enough SKU-6979 to fulfill 200 units?,inventory_check
|
| 408 |
Explain how an AS/RS works,general_faq
|
| 409 |
Explain how an AS/RS works,general_faq
|
| 410 |
+
Do we have enough SKU-3890 to fulfill 200 units?,inventory_check
|
| 411 |
+
When will order #23395 be delivered?,order_status
|
| 412 |
Route Crane-03 to picking station 5,agv_navigation
|
| 413 |
+
Check inventory count for SKU-6599 in Zone D,inventory_check
|
| 414 |
Should we batch pick these orders together?,picking_optimization
|
| 415 |
Is the sorter in Zone A running normally?,system_status
|
| 416 |
+
When will order #29139 be delivered?,order_status
|
| 417 |
There was a near collision between Crane-05 and a pedestrian in Zone B,safety_incident
|
| 418 |
How does goods-to-person picking work?,general_faq
|
| 419 |
+
How much inventory is left for SKU-1963?,inventory_check
|
| 420 |
"A worker slipped near AMR-21, please log it",safety_incident
|
| 421 |
Optimize the pick path for Zone D,picking_optimization
|
| 422 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 423 |
+
How many units of SKU-1944 are in the receiving dock?,inventory_check
|
| 424 |
"A worker slipped near AGV-07, please log it",safety_incident
|
| 425 |
+
Show the fulfillment status of #66984,order_status
|
| 426 |
Check system health for Zone D,system_status
|
| 427 |
+
What's the fastest picking route for order #21706?,picking_optimization
|
| 428 |
The conveyor belt in Zone A is making noise,equipment_maintenance
|
| 429 |
File an incident report for the receiving dock,safety_incident
|
| 430 |
What is predictive maintenance?,general_faq
|
|
|
|
| 433 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 434 |
A forklift near-miss was reported in the receiving dock,safety_incident
|
| 435 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
| 436 |
+
Give me stock levels across all zones for SKU-8767,inventory_check
|
| 437 |
Is AGV-07 operational?,system_status
|
| 438 |
+
What is the current stock level for SKU-6146?,inventory_check
|
| 439 |
AMR-21 motor temperature seems high,equipment_maintenance
|
| 440 |
Why is Crane-03 stuck near Zone C?,agv_navigation
|
| 441 |
What's the difference between AGV and AMR?,general_faq
|
| 442 |
Why is Sorter-02 stuck near Zone A?,agv_navigation
|
| 443 |
AMR-21 motor temperature seems high,equipment_maintenance
|
| 444 |
+
How much inventory is left for SKU-6680?,inventory_check
|
| 445 |
+
Do we have enough SKU-5318 to fulfill 200 units?,inventory_check
|
| 446 |
There was a near collision between AGV-12 and a pedestrian in Zone A,safety_incident
|
| 447 |
Reassign Conveyor-14 to charging station,agv_navigation
|
| 448 |
Should we batch pick these orders together?,picking_optimization
|
| 449 |
+
Do we have enough SKU-1063 to fulfill 200 units?,inventory_check
|
| 450 |
File an incident report for Zone A,safety_incident
|
| 451 |
Log a breakdown for AGV-07 in Zone B,equipment_maintenance
|
| 452 |
Recommend a picking strategy for high-velocity SKUs,picking_optimization
|
|
|
|
| 462 |
Sorter-02 motor temperature seems high,equipment_maintenance
|
| 463 |
"Belt Crane-05 stopped unexpectedly, please check",equipment_maintenance
|
| 464 |
There was a near collision between Sorter-02 and a pedestrian in Zone D,safety_incident
|
| 465 |
+
Has order #78709 shipped yet?,order_status
|
| 466 |
Is Conveyor-14 operational?,system_status
|
| 467 |
+
Has order #14046 shipped yet?,order_status
|
| 468 |
What is a WMS?,general_faq
|
| 469 |
Report unsafe pallet stacking in Zone C,safety_incident
|
| 470 |
Route AMR-21 to picking station 3,agv_navigation
|
| 471 |
How do sortation systems decide where to route a parcel?,general_faq
|
| 472 |
Sorter-02 motor temperature seems high,equipment_maintenance
|
| 473 |
What is a WMS?,general_faq
|
| 474 |
+
Do we have enough SKU-3593 to fulfill 200 units?,inventory_check
|
| 475 |
Send AGV AGV-12 to Zone D,agv_navigation
|
| 476 |
+
What's the status of order #38333?,order_status
|
| 477 |
+
Why hasn't order #55768 left the dock yet?,order_status
|
| 478 |
Suggest a wave picking plan for the receiving dock,picking_optimization
|
| 479 |
"A worker slipped near Conveyor-14, please log it",safety_incident
|
| 480 |
What's the difference between AGV and AMR?,general_faq
|
| 481 |
+
Track order #93785 for me,order_status
|
data/latency_eval.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
-
"intent_classifier_ms": 0.
|
| 3 |
-
"anomaly_detector_ms":
|
| 4 |
-
"kb_retrieval_ms": 0.
|
| 5 |
"note": "LLM generation latency depends on the external Inference API call and is measured live in the app, not benchmarked here."
|
| 6 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"intent_classifier_ms": 0.309,
|
| 3 |
+
"anomaly_detector_ms": 17.703,
|
| 4 |
+
"kb_retrieval_ms": 0.446,
|
| 5 |
"note": "LLM generation latency depends on the external Inference API call and is measured live in the app, not benchmarked here."
|
| 6 |
}
|
models/intent_pipeline.joblib
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 65196
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bbdf1c95a8a9dac3baa157e22462025c8e40dae5ea10b483a8d0e1506c106c1
|
| 3 |
size 65196
|