File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11//! Multi-step commit message generation.
22//!
3+ //! This module consolidates the functionality from the original multi-step modules:
4+ //! - `multi_step_analysis.rs` - File analysis, scoring, and candidate generation
5+ //! - `multi_step_integration.rs` - API integration, diff parsing, orchestration
6+ //! - `simple_multi_step.rs` - Simplified direct API approach
7+ //!
38//! Implements a sophisticated analysis pipeline:
49//! 1. Parse diff into individual files
510//! 2. Analyze each file (lines changed, category, impact)
Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ pub mod filesystem;
77pub mod openai;
88pub mod profiling;
99pub mod function_calling;
10+
11+ pub mod debug_output;
12+ pub mod generation;
1013pub mod multi_step_analysis;
1114pub mod multi_step_integration;
1215pub mod simple_multi_step;
13- pub mod debug_output;
14- pub mod generation;
1516
1617// Re-exports
1718pub use profiling:: Profile ;
You can’t perform that action at this time.
0 commit comments