0.5×← Perlahan · Cepat →
💬Tekan Play Demo untuk lihat bagaimana Machine Maintenance Agent mengurus jadual penyelenggaraan.
Demo Complete All Stages Generated
01 WhatsApp Command
02 Requirement Analysis
Menunggu Sedang aktif Selesai
03 Python Script Generation
1
🔧
Data mesinFetch machine runtime & history
2
📅
Jadual servisPlan maintenance intervals
3
🔮
RamalanPredict next failure window
4
📋
Log & laporanGenerate maintenance report
import pandas as pd
from datetime import timedelta
def schedule_maintenance(machine_id, hours_run, interval=500):
next_service = hours_run + interval
return {'machine': machine_id, 'next_at': next_service}
def predict_failure(machine_data, threshold=0.85):
risk_score = machine_data['vibration'] * 0.4 + machine_data['temp'] * 0.3 + machine_data['hours'] * 0.3
return risk_score > threshold
# Generate maintenance schedule
04 Block Diagram
Menunggu Sedang aktif Selesai
05 System Schematic
Menunggu Sedang aktif Selesai
⚠️ Verify machine availability with production team before scheduling maintenance.
06 Simulasi Maintenance Schedule
Mula Servis
07 Maintenance Report
Terminal Log
[SISTEM] Manufacturing Machine Maintenance Agent sedia
System Architecture
🤖 Agent Layer
Scheduler
Predictor
Alert manager
🏭 Manufacturing Layer
Machine DB
IoT sensors
Maintenance log
Reports
Safety Notes
- Verify machine availability with production team before scheduling maintenance.
- Configure role-based access for maintenance data.
- Audit all maintenance actions for compliance.
- Browser demo uses simulated data only.