Enhanced Insights with daily summary embeddings

Bump to 0.5.0. Added daily summary generation job
This commit is contained in:
Cameron
2026-01-05 09:13:16 -05:00
parent 43b7c2b8ec
commit 11e725c443
18 changed files with 2348 additions and 61 deletions

View File

@@ -1,12 +1,16 @@
pub mod embedding_job;
pub mod daily_summary_job;
pub mod handlers;
pub mod insight_generator;
pub mod ollama;
pub mod sms_client;
pub use embedding_job::embed_contact_messages;
pub use daily_summary_job::generate_daily_summaries;
pub use handlers::{
delete_insight_handler, generate_insight_handler, get_all_insights_handler,
get_available_models_handler, get_insight_handler,
};
pub use insight_generator::InsightGenerator;
pub use ollama::OllamaClient;
pub use sms_client::SmsApiClient;
pub use sms_client::{SmsApiClient, SmsMessage};