Enqueue resource_events jobs for all issues/MRs after discussion sync, then drain the queue by fetching state/label/milestone events from GitLab API and storing them via transaction-based wrappers. Adds progress events, count tracking through orchestrator->ingest->sync result chain, and respects fetch_resource_events config flag. Includes clippy fixes across codebase from parallel agent work. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
317 B
Rust
10 lines
317 B
Rust
pub mod change_detector;
|
|
pub mod chunk_ids;
|
|
pub mod chunking;
|
|
pub mod ollama;
|
|
pub mod pipeline;
|
|
|
|
pub use change_detector::{PendingDocument, count_pending_documents, find_pending_documents};
|
|
pub use chunking::{CHUNK_MAX_BYTES, CHUNK_OVERLAP_CHARS, split_into_chunks};
|
|
pub use pipeline::{EmbedResult, embed_documents};
|