0.5×← Perlahan · Cepat →
💬Tekan Play Demo untuk lihat bagaimana Lecture Note Generator menjana nota.
Demo Complete — All Stages Generated
01 WhatsApp Command
02 Requirement Analysis
Menunggu Sedang aktif Selesai
03 Python Script Generation
1
📥
Ambil bahan sumberFetch source materials
2
📐
Struktur kandunganStructure content outline
3
✍️
Tulis nota kuliahGenerate lecture notes
4
📋
Format & eksportFormat and export notes
import pandas as pd
from datetime import datetime
def generate_notes(source, template):
outline = parse_outline(source['chapters'])
notes = []
for chapter in outline:
note = template.format(
title=chapter['title'],
content=chapter['summary'],
key_points=chapter['key_points']
)
notes.append(note)
return notes
source = pd.read_json('course_material.json')
notes = generate_notes(source, LECTURE_TEMPLATE)
with open('lecture_notes.md', 'w') as f:
for note in notes:
f.write(note + '\n---\n')
print(f'Generated {len(notes)} lecture notes')
04 Block Diagram
Menunggu Sedang aktif Selesai
05 System Schematic
Menunggu Sedang aktif Selesai
⚠️ Review generated notes for accuracy against source materials before distribution.
06 Simulasi Note Generation
Mula Penjanaan
07 Lecture Note Report
Terminal Log
[SISTEM] Lecture Note Generator sedia
System Architecture
🤖 Agent Layer
Material fetcher
Content structurer
Note generator
🎓 Education Layer
Course materials
Note templates
Export system
Quality check
Safety Notes
- Verify generated notes against original source materials for accuracy.
- Respect copyright of source materials used for note generation.
- Configure academic integrity checks for distributed notes.
- Browser demo uses simulated data only.