Skip to main content

batuta/oracle/coursera/
mod.rs

1//! Coursera Reading Asset Generation
2//!
3//! Generates four types of Coursera "Reading" assets from transcripts:
4//! - **Banner**: 1200x400 PNG with title and concept bubbles
5//! - **Reflection**: Bloom's taxonomy questions with arXiv citations
6//! - **Key Concepts**: Extracted concepts with definitions and code examples
7//! - **Vocabulary**: Course-wide vocabulary organized by category
8
9pub mod arxiv_db;
10pub mod banner;
11pub mod key_concepts;
12pub mod reflection;
13pub mod transcript;
14pub mod types;
15pub mod vocabulary;
16
17pub use types::*;