π¬Tekan Play Demo untuk lihat Employee Onboarding Agent.
Demo Complete All Stages Generated
01 WhatsApp Command
π€
Generic Agent AI AINNA Agent
β Neural Link Active
02 Requirement Analysis
Mode
Onboarding
Steps
6
Docs
Ready
IT Setup
Pending
Menunggu Sedang aktif Selesai
03 Python Script Generation
1
π₯
Ambil data pekerjaLoad employee profile
2
π
Jalankan alur kerjaExecute onboarding workflow
3
β οΈ
Semak persediaanVerify checklist items
4
π
Jana laporanGenerate onboarding report
import pandas as pd
from datetime import datetime
def check_onboarding_step(emp_id, step):
# Check if onboarding step is complete
status = pd.read_sql("SELECT status FROM onboarding WHERE emp_id = ? AND step = ?", (emp_id, step))
return status[0] if status else 'pending'
def generate_onboarding_plan(emp_id):
# Create onboarding workflow
steps = ['docs', 'it', 'training', 'access', 'mentor', 'review']
return {step: check_onboarding_step(emp_id, step) for step in steps}
04 Block Diagram
Menunggu Sedang aktif Selesai
05 System Schematic
Menunggu Sedang aktif Selesai
β οΈ Onboarding data should be verified before finalizing employee records.