Implement drift detection using cosine similarity between issue description embedding and chronological note embeddings. Sliding window (size 3) identifies topic drift points. Includes human and robot output formatters. New files: drift.rs, similarity.rs Closes: bd-1cjx
48 lines
1.8 KiB
Rust
48 lines
1.8 KiB
Rust
pub mod auth_test;
|
|
pub mod count;
|
|
pub mod doctor;
|
|
pub mod drift;
|
|
pub mod embed;
|
|
pub mod generate_docs;
|
|
pub mod ingest;
|
|
pub mod init;
|
|
pub mod list;
|
|
pub mod search;
|
|
pub mod show;
|
|
pub mod stats;
|
|
pub mod sync;
|
|
pub mod sync_status;
|
|
pub mod timeline;
|
|
pub mod who;
|
|
|
|
pub use auth_test::run_auth_test;
|
|
pub use count::{
|
|
print_count, print_count_json, print_event_count, print_event_count_json, run_count,
|
|
run_count_events,
|
|
};
|
|
pub use doctor::{DoctorChecks, print_doctor_results, run_doctor};
|
|
pub use drift::{DriftResponse, print_drift_human, print_drift_json, run_drift};
|
|
pub use embed::{print_embed, print_embed_json, run_embed};
|
|
pub use generate_docs::{print_generate_docs, print_generate_docs_json, run_generate_docs};
|
|
pub use ingest::{
|
|
DryRunPreview, IngestDisplay, print_dry_run_preview, print_dry_run_preview_json,
|
|
print_ingest_summary, print_ingest_summary_json, run_ingest, run_ingest_dry_run,
|
|
};
|
|
pub use init::{InitInputs, InitOptions, InitResult, run_init};
|
|
pub use list::{
|
|
ListFilters, MrListFilters, open_issue_in_browser, open_mr_in_browser, print_list_issues,
|
|
print_list_issues_json, print_list_mrs, print_list_mrs_json, run_list_issues, run_list_mrs,
|
|
};
|
|
pub use search::{
|
|
SearchCliFilters, SearchResponse, print_search_results, print_search_results_json, run_search,
|
|
};
|
|
pub use show::{
|
|
print_show_issue, print_show_issue_json, print_show_mr, print_show_mr_json, run_show_issue,
|
|
run_show_mr,
|
|
};
|
|
pub use stats::{print_stats, print_stats_json, run_stats};
|
|
pub use sync::{SyncOptions, SyncResult, print_sync, print_sync_json, run_sync};
|
|
pub use sync_status::{print_sync_status, print_sync_status_json, run_sync_status};
|
|
pub use timeline::{TimelineParams, print_timeline, print_timeline_json_with_meta, run_timeline};
|
|
pub use who::{WhoRun, print_who_human, print_who_json, run_who};
|