aprender-orchestrate 0.31.2

Sovereign AI orchestration: autonomous agents, ML serving, code analysis, and transpilation pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Coursera Reading Asset Generation
//!
//! Generates four types of Coursera "Reading" assets from transcripts:
//! - **Banner**: 1200x400 PNG with title and concept bubbles
//! - **Reflection**: Bloom's taxonomy questions with arXiv citations
//! - **Key Concepts**: Extracted concepts with definitions and code examples
//! - **Vocabulary**: Course-wide vocabulary organized by category

pub mod arxiv_db;
pub mod banner;
pub mod key_concepts;
pub mod reflection;
pub mod transcript;
pub mod types;
pub mod vocabulary;

pub use types::*;