rrag 0.1.0-alpha.2

High-performance Rust framework for Retrieval-Augmented Generation with pluggable components, async-first design, and comprehensive observability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
//! # RRAG Pipeline System
//!
//! Composable, async-first processing pipelines for building complex RAG workflows
//! from simple, reusable components. Features parallel execution, error handling,
//! comprehensive monitoring, and type-safe data flow.
//!
//! ## Features
//!
//! - **Composable Steps**: Build complex workflows from simple, reusable components
//! - **Type-Safe Data Flow**: Compile-time validation of pipeline data types
//! - **Async Execution**: Full async/await support with parallel step execution
//! - **Error Handling**: Robust error handling with optional error recovery
//! - **Monitoring**: Built-in execution tracking and performance metrics
//! - **Flexible Configuration**: Extensive configuration options for behavior tuning
//! - **Caching Support**: Optional step result caching for performance
//!
//! ## Quick Start
//!
//! ### Basic Pipeline
//!
//! ```rust
//! use rrag::prelude::*;
//!
//! # #[tokio::main]
//! # async fn main() -> RragResult<()> {
//! // Create a simple text processing pipeline
//! let pipeline = RagPipelineBuilder::new()
//!     .add_step(TextPreprocessingStep::new(vec![
//!         TextOperation::NormalizeWhitespace,
//!         TextOperation::RemoveSpecialChars,
//!     ]))
//!     .add_step(DocumentChunkingStep::new(
//!         ChunkingStrategy::FixedSize { size: 512, overlap: 64 }
//!     ))
//!     .build();
//!
//! // Execute pipeline
//! let context = PipelineContext::new(PipelineData::Text(
//!     "This is some text to process through the pipeline.".to_string()
//! ));
//!
//! let result = pipeline.execute(context).await?;
//! println!("Pipeline completed in {}ms", result.total_execution_time());
//! # Ok(())
//! # }
//! ```
//!
//! ### Advanced RAG Pipeline
//!
//! ```rust
//! use rrag::prelude::*;
//! use std::sync::Arc;
//!
//! # #[tokio::main]
//! # async fn main() -> RragResult<()> {
//! // Create a comprehensive RAG processing pipeline
//! let embedding_provider = Arc::new(OpenAIEmbeddingProvider::new("api-key"));
//! let embedding_service = Arc::new(EmbeddingService::new(embedding_provider));
//!
//! let pipeline = RagPipelineBuilder::new()
//!     .with_config(PipelineConfig {
//!         enable_parallelism: true,
//!         max_parallel_steps: 4,
//!         enable_caching: true,
//!         ..Default::default()
//!     })
//!     .add_step(TextPreprocessingStep::new(vec![
//!         TextOperation::NormalizeWhitespace,
//!         TextOperation::RemoveExtraWhitespace,
//!     ]))
//!     .add_step(DocumentChunkingStep::new(
//!         ChunkingStrategy::Semantic { similarity_threshold: 0.8 }
//!     ))
//!     .add_step(EmbeddingStep::new(embedding_service))
//!     .add_step(RetrievalStep::new())
//!     .build();
//!
//! // Process documents
//! let documents = vec![
//!     Document::new("First document content"),
//!     Document::new("Second document content"),
//! ];
//!
//! let context = PipelineContext::new(PipelineData::Documents(documents))
//!     .with_metadata("batch_id", "batch-123".into())
//!     .with_metadata("priority", "high".into());
//!
//! let result = pipeline.execute(context).await?;
//! println!("Processed {} documents", result.execution_history.len());
//! # Ok(())
//! # }
//! ```
//!
//! ### Custom Pipeline Steps
//!
//! ```rust
//! use rrag::prelude::*;
//! use async_trait::async_trait;
//!
//! // Define a custom pipeline step
//! struct CustomValidationStep {
//!     min_length: usize,
//! }
//!
//! #[async_trait]
//! impl PipelineStep for CustomValidationStep {
//!     fn name(&self) -> &str { "custom_validation" }
//!     fn description(&self) -> &str { "Validates document content length" }
//!     fn input_types(&self) -> Vec<&'static str> { vec!["Document", "Documents"] }
//!     fn output_type(&self) -> &'static str { "Document|Documents" }
//!
//!     async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
//!         // Custom validation logic here
//!         match &context.data {
//!             PipelineData::Document(doc) => {
//!                 if doc.content_length() < self.min_length {
//!                     return Err(RragError::validation(
//!                         "document_length",
//!                         format!("minimum {}", self.min_length),
//!                         doc.content_length().to_string()
//!                     ));
//!                 }
//!             }
//!             _ => return Err(RragError::document_processing("Invalid input type"))
//!         }
//!         Ok(context)
//!     }
//! }
//!
//! # #[tokio::main]
//! # async fn main() -> RragResult<()> {
//! // Use the custom step in a pipeline
//! let pipeline = RagPipelineBuilder::new()
//!     .add_step(CustomValidationStep { min_length: 100 })
//!     .add_step(TextPreprocessingStep::new(vec![TextOperation::NormalizeWhitespace]))
//!     .build();
//! # Ok(())
//! # }
//! ```
//!
//! ## Pipeline Configuration
//!
//! ```rust
//! use rrag::prelude::*;
//!
//! let config = PipelineConfig {
//!     max_execution_time: 600, // 10 minutes
//!     continue_on_error: true, // Continue processing on step failures
//!     enable_parallelism: true,
//!     max_parallel_steps: 8,
//!     enable_caching: true,
//!     custom_config: [
//!         ("batch_size".to_string(), 100.into()),
//!         ("retry_attempts".to_string(), 3.into()),
//!     ].into_iter().collect(),
//! };
//! ```
//!
//! ## Error Handling
//!
//! ```rust
//! use rrag::prelude::*;
//!
//! # #[tokio::main]
//! # async fn main() {
//! match pipeline.execute(context).await {
//!     Ok(result) => {
//!         println!("Pipeline completed successfully");
//!         println!("Total time: {}ms", result.total_execution_time());
//!         
//!         if result.has_failures() {
//!             println!("Some steps failed but pipeline continued");
//!             for step in &result.execution_history {
//!                 if !step.success {
//!                     println!("Step '{}' failed: {:?}", step.step_id, step.error_message);
//!                 }
//!             }
//!         }
//!     }
//!     Err(RragError::Timeout { operation, duration_ms }) => {
//!         eprintln!("Pipeline timed out in {}: {}ms", operation, duration_ms);
//!     }
//!     Err(e) => {
//!         eprintln!("Pipeline failed: {}", e);
//!     }
//! }
//! # }
//! ```
//!
//! ## Performance Optimization
//!
//! - **Parallel Execution**: Steps that don't depend on each other run concurrently
//! - **Caching**: Enable result caching for expensive operations
//! - **Batch Processing**: Process multiple items together when possible
//! - **Memory Management**: Efficient data structures and minimal copying
//! - **Async Operations**: Non-blocking I/O and CPU-intensive operations
//!
//! ## Built-in Steps
//!
//! RRAG provides several built-in pipeline steps:
//!
//! - [`TextPreprocessingStep`]: Text normalization and cleaning
//! - [`DocumentChunkingStep`]: Document chunking with various strategies  
//! - [`EmbeddingStep`]: Embedding generation with provider abstraction
//! - [`RetrievalStep`]: Vector similarity search and retrieval
//! - Custom steps via the [`PipelineStep`] trait

use crate::{
    Document, DocumentChunk, DocumentChunker, Embedding, EmbeddingService, RetrievalService,
    RragError, RragResult, SearchResult, StorageService,
};
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use std::time::Instant;

/// Execution context for pipeline processing
///
/// Carries data, metadata, configuration, and execution history through
/// a pipeline. Each pipeline execution gets its own context that tracks
/// all steps, timing, errors, and intermediate results.
///
/// # Example
///
/// ```rust
/// use rrag::prelude::*;
///
/// let context = PipelineContext::new(PipelineData::Text(
///     "Document content to process".to_string()
/// ))
/// .with_metadata("source", "api".into())
/// .with_metadata("priority", "high".into());
///
/// println!("Processing execution: {}", context.execution_id);
/// ```
#[derive(Debug, Clone)]
pub struct PipelineContext {
    /// Execution ID for tracking
    pub execution_id: String,

    /// Input data for the pipeline
    pub data: PipelineData,

    /// Execution metadata
    pub metadata: HashMap<String, serde_json::Value>,

    /// Step execution history
    pub execution_history: Vec<StepExecution>,

    /// Pipeline configuration
    pub config: PipelineConfig,
}

/// Data types that can flow through pipeline steps
///
/// Represents the various types of data that can be processed by pipeline steps.
/// Each step declares which input types it accepts and which output type it produces,
/// enabling compile-time validation of pipeline composition.
///
/// # Type Safety
///
/// The pipeline system uses these variants to ensure type safety:
/// - Steps declare compatible input/output types
/// - Runtime validation ensures data type correctness
/// - Clear error messages for type mismatches
///
/// # Example
///
/// ```rust
/// use rrag::prelude::*;
///
/// // Different data types that can flow through pipelines
/// let text_data = PipelineData::Text("Raw text content".to_string());
/// let doc_data = PipelineData::Document(Document::new("Document content"));
/// let docs_data = PipelineData::Documents(vec![
///     Document::new("First doc"),
///     Document::new("Second doc"),
/// ]);
/// ```
#[derive(Debug, Clone)]
pub enum PipelineData {
    /// Raw text input
    Text(String),

    /// Document input
    Document(Document),

    /// Multiple documents
    Documents(Vec<Document>),

    /// Document chunks
    Chunks(Vec<DocumentChunk>),

    /// Embeddings
    Embeddings(Vec<Embedding>),

    /// Search results
    SearchResults(Vec<SearchResult>),

    /// JSON data
    Json(serde_json::Value),
}

/// Pipeline configuration
#[derive(Debug, Clone)]
pub struct PipelineConfig {
    /// Maximum execution time in seconds
    pub max_execution_time: u64,

    /// Whether to continue on step errors
    pub continue_on_error: bool,

    /// Parallel execution where possible
    pub enable_parallelism: bool,

    /// Maximum parallel steps
    pub max_parallel_steps: usize,

    /// Enable step caching
    pub enable_caching: bool,

    /// Custom configuration
    pub custom_config: HashMap<String, serde_json::Value>,
}

impl Default for PipelineConfig {
    fn default() -> Self {
        Self {
            max_execution_time: 300, // 5 minutes
            continue_on_error: false,
            enable_parallelism: true,
            max_parallel_steps: 4,
            enable_caching: false,
            custom_config: HashMap::new(),
        }
    }
}

/// Step execution record
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StepExecution {
    /// Step name/ID
    pub step_id: String,

    /// Execution start time
    pub start_time: chrono::DateTime<chrono::Utc>,

    /// Execution duration in milliseconds
    pub duration_ms: u64,

    /// Whether step succeeded
    pub success: bool,

    /// Error message if failed
    pub error_message: Option<String>,

    /// Step metadata
    pub metadata: HashMap<String, serde_json::Value>,
}

impl PipelineContext {
    /// Create new pipeline context
    pub fn new(data: PipelineData) -> Self {
        Self {
            execution_id: uuid::Uuid::new_v4().to_string(),
            data,
            metadata: HashMap::new(),
            execution_history: Vec::new(),
            config: PipelineConfig::default(),
        }
    }

    /// Create with configuration
    pub fn with_config(data: PipelineData, config: PipelineConfig) -> Self {
        Self {
            execution_id: uuid::Uuid::new_v4().to_string(),
            data,
            metadata: HashMap::new(),
            execution_history: Vec::new(),
            config,
        }
    }

    /// Add metadata
    pub fn with_metadata(mut self, key: impl Into<String>, value: serde_json::Value) -> Self {
        self.metadata.insert(key.into(), value);
        self
    }

    /// Record step execution
    pub fn record_step(&mut self, step_execution: StepExecution) {
        self.execution_history.push(step_execution);
    }

    /// Get total execution time
    pub fn total_execution_time(&self) -> u64 {
        self.execution_history
            .iter()
            .map(|step| step.duration_ms)
            .sum()
    }

    /// Check if any step failed
    pub fn has_failures(&self) -> bool {
        self.execution_history.iter().any(|step| !step.success)
    }
}

/// Core trait for implementing pipeline steps
///
/// Each pipeline step implements this trait to define its behavior, input/output types,
/// dependencies, and execution logic. Steps are composable building blocks that can
/// be combined to create complex processing workflows.
///
/// # Design Principles
///
/// - **Single Responsibility**: Each step should do one thing well
/// - **Type Safety**: Declare input/output types for validation
/// - **Async First**: All execution is async for better concurrency
/// - **Error Handling**: Comprehensive error reporting with context
/// - **Monitoring**: Built-in execution tracking and metrics
///
/// # Example Implementation
///
/// ```rust
/// use rrag::prelude::*;
/// use async_trait::async_trait;
///
/// struct UppercaseStep;
///
/// #[async_trait]
/// impl PipelineStep for UppercaseStep {
///     fn name(&self) -> &str { "uppercase_text" }
///     fn description(&self) -> &str { "Converts text to uppercase" }
///     fn input_types(&self) -> Vec<&'static str> { vec!["Text"] }
///     fn output_type(&self) -> &'static str { "Text" }
///
///     async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
///         match &context.data {
///             PipelineData::Text(text) => {
///                 context.data = PipelineData::Text(text.to_uppercase());
///                 Ok(context)
///             }
///             _ => Err(RragError::document_processing("Expected Text input"))
///         }
///     }
/// }
/// ```
///
/// # Parallel Execution
///
/// Steps can declare whether they support parallel execution:
///
/// ```rust
/// # use rrag::prelude::*;
/// # use async_trait::async_trait;
/// # struct MyStep;
/// # #[async_trait]
/// # impl PipelineStep for MyStep {
/// #   fn name(&self) -> &str { "my_step" }
/// #   fn description(&self) -> &str { "description" }
/// #   fn input_types(&self) -> Vec<&'static str> { vec!["Text"] }
/// #   fn output_type(&self) -> &'static str { "Text" }
/// #   async fn execute(&self, context: PipelineContext) -> RragResult<PipelineContext> { Ok(context) }
/// // Override to disable parallelization for stateful operations
/// fn is_parallelizable(&self) -> bool {
///     false // This step cannot run in parallel
/// }
///
/// // Declare dependencies on other steps
/// fn dependencies(&self) -> Vec<&str> {
///     vec!["preprocessing", "validation"]
/// }
/// # }
/// ```
#[async_trait]
pub trait PipelineStep: Send + Sync {
    /// Step name/identifier
    fn name(&self) -> &str;

    /// Step description
    fn description(&self) -> &str;

    /// Input data types this step accepts
    fn input_types(&self) -> Vec<&'static str>;

    /// Output data type this step produces
    fn output_type(&self) -> &'static str;

    /// Execute the step
    async fn execute(&self, context: PipelineContext) -> RragResult<PipelineContext>;

    /// Validate input data
    fn validate_input(&self, _data: &PipelineData) -> RragResult<()> {
        // Default implementation - override for custom validation
        Ok(())
    }

    /// Whether this step can run in parallel with others
    fn is_parallelizable(&self) -> bool {
        true
    }

    /// Dependencies on other steps (step names)
    fn dependencies(&self) -> Vec<&str> {
        Vec::new()
    }
}

/// Built-in text preprocessing step for content normalization
///
/// Applies a sequence of text transformations to clean and normalize content
/// before further processing. Supports common operations like whitespace
/// normalization, case conversion, and special character handling.
///
/// # Supported Operations
///
/// - **Whitespace Normalization**: Collapse multiple spaces into single spaces
/// - **Case Conversion**: Convert text to lowercase for consistency
/// - **Special Character Removal**: Remove non-alphanumeric characters
/// - **Regex Replacement**: Custom pattern-based text replacement
///
/// # Example
///
/// ```rust
/// use rrag::prelude::*;
///
/// let step = TextPreprocessingStep::new(vec![
///     TextOperation::NormalizeWhitespace,
///     TextOperation::RemoveSpecialChars,
///     TextOperation::ToLowercase,
/// ]);
///
/// // Can also be built fluently
/// let step = TextPreprocessingStep::new(vec![])
///     .with_operation(TextOperation::NormalizeWhitespace)
///     .with_operation(TextOperation::RegexReplace {
///         pattern: r"\d+".to_string(),
///         replacement: "[NUMBER]".to_string(),
///     });
/// ```
///
/// # Performance
///
/// - Operations are applied in sequence for predictable results
/// - String allocations are minimized where possible
/// - Regex operations are compiled once and reused
/// - Supports batch processing for multiple documents
pub struct TextPreprocessingStep {
    /// Preprocessing operations to apply
    operations: Vec<TextOperation>,
}

/// Text preprocessing operations for document processing
#[derive(Debug, Clone)]
pub enum TextOperation {
    /// Convert to lowercase
    ToLowercase,

    /// Remove extra whitespace
    NormalizeWhitespace,

    /// Remove special characters
    RemoveSpecialChars,

    /// Custom regex replacement
    RegexReplace {
        /// Regular expression pattern to match
        pattern: String,
        /// Replacement string for matched patterns
        replacement: String,
    },
}

impl TextPreprocessingStep {
    /// Create a new text preprocessing step with specified operations
    pub fn new(operations: Vec<TextOperation>) -> Self {
        Self { operations }
    }

    fn process_text(&self, text: &str) -> String {
        let mut result = text.to_string();

        for operation in &self.operations {
            result = match operation {
                TextOperation::ToLowercase => result.to_lowercase(),
                TextOperation::NormalizeWhitespace => {
                    result.split_whitespace().collect::<Vec<_>>().join(" ")
                }
                TextOperation::RemoveSpecialChars => result
                    .chars()
                    .filter(|c| c.is_alphanumeric() || c.is_whitespace())
                    .collect(),
                TextOperation::RegexReplace {
                    pattern,
                    replacement,
                } => {
                    // Simple implementation - in production would use regex crate
                    result.replace(pattern, replacement)
                }
            };
        }

        result
    }
}

#[async_trait]
impl PipelineStep for TextPreprocessingStep {
    fn name(&self) -> &str {
        "text_preprocessing"
    }

    fn description(&self) -> &str {
        "Preprocesses text data with various normalization operations"
    }

    fn input_types(&self) -> Vec<&'static str> {
        vec!["Text", "Document", "Documents"]
    }

    fn output_type(&self) -> &'static str {
        "Text|Document|Documents"
    }

    async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
        let start_time = Instant::now();
        let step_start = chrono::Utc::now();

        let processed_data = match &context.data {
            PipelineData::Text(text) => PipelineData::Text(self.process_text(text)),
            PipelineData::Document(doc) => {
                // Create a new document with processed content
                let processed_content = self.process_text(doc.content_str());
                let mut new_doc = Document::new(processed_content);
                new_doc.id = doc.id.clone();
                new_doc.metadata = doc.metadata.clone();
                new_doc.content_hash = doc.content_hash.clone();
                new_doc.created_at = doc.created_at;
                PipelineData::Document(new_doc)
            }
            PipelineData::Documents(docs) => {
                let processed_docs: Vec<Document> = docs
                    .iter()
                    .map(|doc| {
                        let processed_content = self.process_text(doc.content_str());
                        let mut new_doc = Document::new(processed_content);
                        new_doc.id = doc.id.clone();
                        new_doc.metadata = doc.metadata.clone();
                        new_doc.content_hash = doc.content_hash.clone();
                        new_doc.created_at = doc.created_at;
                        new_doc
                    })
                    .collect();
                PipelineData::Documents(processed_docs)
            }
            _ => {
                let error = "Input must be Text, Document, or Documents";
                context.record_step(StepExecution {
                    step_id: self.name().to_string(),
                    start_time: step_start,
                    duration_ms: start_time.elapsed().as_millis() as u64,
                    success: false,
                    error_message: Some(error.to_string()),
                    metadata: HashMap::new(),
                });
                return Err(RragError::document_processing(error));
            }
        };

        context.data = processed_data;

        context.record_step(StepExecution {
            step_id: self.name().to_string(),
            start_time: step_start,
            duration_ms: start_time.elapsed().as_millis() as u64,
            success: true,
            error_message: None,
            metadata: HashMap::new(),
        });

        Ok(context)
    }
}

/// Document chunking step
pub struct DocumentChunkingStep {
    /// Document chunker instance
    chunker: DocumentChunker,
}

impl DocumentChunkingStep {
    /// Create a new document chunking step with the specified chunker
    pub fn new(chunker: DocumentChunker) -> Self {
        Self { chunker }
    }
}

#[async_trait]
impl PipelineStep for DocumentChunkingStep {
    fn name(&self) -> &str {
        "document_chunking"
    }

    fn description(&self) -> &str {
        "Splits documents into smaller chunks for processing"
    }

    fn input_types(&self) -> Vec<&'static str> {
        vec!["Document", "Documents"]
    }

    fn output_type(&self) -> &'static str {
        "Chunks"
    }

    async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
        let start_time = Instant::now();
        let step_start = chrono::Utc::now();

        let chunks = match &context.data {
            PipelineData::Document(doc) => self.chunker.chunk_document(doc)?,
            PipelineData::Documents(docs) => {
                let mut all_chunks = Vec::new();
                for doc in docs {
                    all_chunks.extend(self.chunker.chunk_document(doc)?);
                }
                all_chunks
            }
            _ => {
                let error = "Input must be Document or Documents";
                context.record_step(StepExecution {
                    step_id: self.name().to_string(),
                    start_time: step_start,
                    duration_ms: start_time.elapsed().as_millis() as u64,
                    success: false,
                    error_message: Some(error.to_string()),
                    metadata: HashMap::new(),
                });
                return Err(RragError::document_processing(error));
            }
        };

        context.data = PipelineData::Chunks(chunks);

        context.record_step(StepExecution {
            step_id: self.name().to_string(),
            start_time: step_start,
            duration_ms: start_time.elapsed().as_millis() as u64,
            success: true,
            error_message: None,
            metadata: HashMap::new(),
        });

        Ok(context)
    }
}

/// Embedding generation step
pub struct EmbeddingStep {
    /// Embedding service
    embedding_service: Arc<EmbeddingService>,
}

impl EmbeddingStep {
    /// Create a new embedding generation step with the specified service
    pub fn new(embedding_service: Arc<EmbeddingService>) -> Self {
        Self { embedding_service }
    }
}

#[async_trait]
impl PipelineStep for EmbeddingStep {
    fn name(&self) -> &str {
        "embedding_generation"
    }

    fn description(&self) -> &str {
        "Generates embeddings for documents or chunks"
    }

    fn input_types(&self) -> Vec<&'static str> {
        vec!["Document", "Documents", "Chunks"]
    }

    fn output_type(&self) -> &'static str {
        "Embeddings"
    }

    async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
        let start_time = Instant::now();
        let step_start = chrono::Utc::now();

        let embeddings = match &context.data {
            PipelineData::Document(doc) => {
                vec![self.embedding_service.embed_document(doc).await?]
            }
            PipelineData::Documents(docs) => self.embedding_service.embed_documents(docs).await?,
            PipelineData::Chunks(chunks) => self.embedding_service.embed_chunks(chunks).await?,
            _ => {
                let error = "Input must be Document, Documents, or Chunks";
                context.record_step(StepExecution {
                    step_id: self.name().to_string(),
                    start_time: step_start,
                    duration_ms: start_time.elapsed().as_millis() as u64,
                    success: false,
                    error_message: Some(error.to_string()),
                    metadata: HashMap::new(),
                });
                return Err(RragError::embedding("pipeline", error));
            }
        };

        context.data = PipelineData::Embeddings(embeddings);

        context.record_step(StepExecution {
            step_id: self.name().to_string(),
            start_time: step_start,
            duration_ms: start_time.elapsed().as_millis() as u64,
            success: true,
            error_message: None,
            metadata: HashMap::new(),
        });

        Ok(context)
    }
}

/// Retrieval step for similarity search
pub struct RetrievalStep {
    /// Retrieval service
    retrieval_service: Arc<RetrievalService>,

    /// Search configuration
    search_config: SearchStepConfig,
}

/// Configuration for search/retrieval step
#[derive(Debug, Clone)]
pub struct SearchStepConfig {
    /// Number of results to retrieve
    pub limit: usize,

    /// Minimum similarity threshold
    pub min_score: f32,

    /// Search query text (if not using embeddings)
    pub query_text: Option<String>,
}

impl Default for SearchStepConfig {
    fn default() -> Self {
        Self {
            limit: 10,
            min_score: 0.0,
            query_text: None,
        }
    }
}

impl RetrievalStep {
    /// Create a new retrieval step with default configuration
    pub fn new(retrieval_service: Arc<RetrievalService>) -> Self {
        Self {
            retrieval_service,
            search_config: SearchStepConfig::default(),
        }
    }

    /// Create a new retrieval step with custom configuration
    pub fn with_config(retrieval_service: Arc<RetrievalService>, config: SearchStepConfig) -> Self {
        Self {
            retrieval_service,
            search_config: config,
        }
    }
}

#[async_trait]
impl PipelineStep for RetrievalStep {
    fn name(&self) -> &str {
        "similarity_retrieval"
    }

    fn description(&self) -> &str {
        "Performs similarity search using embeddings"
    }

    fn input_types(&self) -> Vec<&'static str> {
        vec!["Embeddings"]
    }

    fn output_type(&self) -> &'static str {
        "SearchResults"
    }

    async fn execute(&self, mut context: PipelineContext) -> RragResult<PipelineContext> {
        let start_time = Instant::now();
        let step_start = chrono::Utc::now();

        let search_results = match &context.data {
            PipelineData::Embeddings(embeddings) => {
                if embeddings.is_empty() {
                    Vec::new()
                } else {
                    // Use the first embedding as query (could be enhanced)
                    let query_embedding = embeddings[0].clone();
                    self.retrieval_service
                        .search_embedding(query_embedding, Some(self.search_config.limit))
                        .await?
                }
            }
            _ => {
                let error = "Input must be Embeddings";
                context.record_step(StepExecution {
                    step_id: self.name().to_string(),
                    start_time: step_start,
                    duration_ms: start_time.elapsed().as_millis() as u64,
                    success: false,
                    error_message: Some(error.to_string()),
                    metadata: HashMap::new(),
                });
                return Err(RragError::retrieval(error));
            }
        };

        context.data = PipelineData::SearchResults(search_results);

        context.record_step(StepExecution {
            step_id: self.name().to_string(),
            start_time: step_start,
            duration_ms: start_time.elapsed().as_millis() as u64,
            success: true,
            error_message: None,
            metadata: HashMap::new(),
        });

        Ok(context)
    }
}

/// Pipeline for composing multiple steps
pub struct Pipeline {
    /// Pipeline steps in execution order
    steps: Vec<Arc<dyn PipelineStep>>,

    /// Pipeline configuration
    config: PipelineConfig,

    /// Pipeline metadata
    metadata: HashMap<String, serde_json::Value>,
}

impl Pipeline {
    /// Create new pipeline
    pub fn new() -> Self {
        Self {
            steps: Vec::new(),
            config: PipelineConfig::default(),
            metadata: HashMap::new(),
        }
    }

    /// Create with configuration
    pub fn with_config(config: PipelineConfig) -> Self {
        Self {
            steps: Vec::new(),
            config,
            metadata: HashMap::new(),
        }
    }

    /// Add a step to the pipeline
    pub fn add_step(mut self, step: Arc<dyn PipelineStep>) -> Self {
        self.steps.push(step);
        self
    }

    /// Add metadata
    pub fn with_metadata(mut self, key: impl Into<String>, value: serde_json::Value) -> Self {
        self.metadata.insert(key.into(), value);
        self
    }

    /// Execute the pipeline
    pub async fn execute(&self, initial_data: PipelineData) -> RragResult<PipelineContext> {
        let mut context = PipelineContext::with_config(initial_data, self.config.clone());

        // Add pipeline metadata to context
        context.metadata.extend(self.metadata.clone());

        let start_time = Instant::now();

        for step in &self.steps {
            // Check timeout
            if start_time.elapsed().as_secs() > self.config.max_execution_time {
                return Err(RragError::timeout(
                    "pipeline_execution",
                    self.config.max_execution_time * 1000,
                ));
            }

            // Validate input
            if let Err(e) = step.validate_input(&context.data) {
                if !self.config.continue_on_error {
                    return Err(e);
                }
                // Record error and continue
                context.record_step(StepExecution {
                    step_id: step.name().to_string(),
                    start_time: chrono::Utc::now(),
                    duration_ms: 0,
                    success: false,
                    error_message: Some(e.to_string()),
                    metadata: HashMap::new(),
                });
                continue;
            }

            // Execute step (clone context to satisfy borrow checker)
            let context_clone = PipelineContext {
                execution_id: context.execution_id.clone(),
                data: context.data.clone(),
                metadata: context.metadata.clone(),
                execution_history: context.execution_history.clone(),
                config: context.config.clone(),
            };

            match step.execute(context_clone).await {
                Ok(new_context) => {
                    context = new_context;
                }
                Err(e) => {
                    if !self.config.continue_on_error {
                        return Err(e);
                    }
                    // Record error and continue with unchanged context
                    context.record_step(StepExecution {
                        step_id: step.name().to_string(),
                        start_time: chrono::Utc::now(),
                        duration_ms: 0,
                        success: false,
                        error_message: Some(e.to_string()),
                        metadata: HashMap::new(),
                    });
                }
            }
        }

        Ok(context)
    }

    /// Get pipeline step information
    pub fn get_step_info(&self) -> Vec<PipelineStepInfo> {
        self.steps
            .iter()
            .map(|step| PipelineStepInfo {
                name: step.name().to_string(),
                description: step.description().to_string(),
                input_types: step.input_types().iter().map(|s| s.to_string()).collect(),
                output_type: step.output_type().to_string(),
                is_parallelizable: step.is_parallelizable(),
                dependencies: step.dependencies().iter().map(|s| s.to_string()).collect(),
            })
            .collect()
    }
}

impl Default for Pipeline {
    fn default() -> Self {
        Self::new()
    }
}

/// Pipeline step information for introspection
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineStepInfo {
    /// Name of the pipeline step
    pub name: String,
    /// Description of what the step does
    pub description: String,
    /// Types of input data this step accepts
    pub input_types: Vec<String>,
    /// Type of output data this step produces
    pub output_type: String,
    /// Whether this step can run in parallel with others
    pub is_parallelizable: bool,
    /// Names of steps this step depends on
    pub dependencies: Vec<String>,
}

/// Pre-built pipeline builder for common RAG workflows
pub struct RagPipelineBuilder {
    /// Embedding service
    embedding_service: Option<Arc<EmbeddingService>>,

    /// Retrieval service
    retrieval_service: Option<Arc<RetrievalService>>,

    /// Storage service
    storage_service: Option<Arc<StorageService>>,

    /// Pipeline configuration
    config: PipelineConfig,
}

impl RagPipelineBuilder {
    /// Create a new RAG pipeline builder
    pub fn new() -> Self {
        Self {
            embedding_service: None,
            retrieval_service: None,
            storage_service: None,
            config: PipelineConfig::default(),
        }
    }

    /// Set the embedding service for the pipeline
    pub fn with_embedding_service(mut self, service: Arc<EmbeddingService>) -> Self {
        self.embedding_service = Some(service);
        self
    }

    /// Set the retrieval service for the pipeline
    pub fn with_retrieval_service(mut self, service: Arc<RetrievalService>) -> Self {
        self.retrieval_service = Some(service);
        self
    }

    /// Set the storage service for the pipeline
    pub fn with_storage_service(mut self, service: Arc<StorageService>) -> Self {
        self.storage_service = Some(service);
        self
    }

    /// Set custom configuration for the pipeline
    pub fn with_config(mut self, config: PipelineConfig) -> Self {
        self.config = config;
        self
    }

    /// Build document ingestion pipeline
    pub fn build_ingestion_pipeline(&self) -> RragResult<Pipeline> {
        let embedding_service = self
            .embedding_service
            .as_ref()
            .ok_or_else(|| RragError::config("embedding_service", "required", "missing"))?;

        let pipeline = Pipeline::with_config(self.config.clone())
            .add_step(Arc::new(TextPreprocessingStep::new(vec![
                TextOperation::NormalizeWhitespace,
                TextOperation::ToLowercase,
            ])))
            .add_step(Arc::new(DocumentChunkingStep::new(DocumentChunker::new())))
            .add_step(Arc::new(EmbeddingStep::new(embedding_service.clone())));

        Ok(pipeline)
    }

    /// Build query pipeline for search
    pub fn build_query_pipeline(&self) -> RragResult<Pipeline> {
        let embedding_service = self
            .embedding_service
            .as_ref()
            .ok_or_else(|| RragError::config("embedding_service", "required", "missing"))?;

        let retrieval_service = self
            .retrieval_service
            .as_ref()
            .ok_or_else(|| RragError::config("retrieval_service", "required", "missing"))?;

        let pipeline = Pipeline::with_config(self.config.clone())
            .add_step(Arc::new(TextPreprocessingStep::new(vec![
                TextOperation::NormalizeWhitespace,
            ])))
            .add_step(Arc::new(EmbeddingStep::new(embedding_service.clone())))
            .add_step(Arc::new(RetrievalStep::new(retrieval_service.clone())));

        Ok(pipeline)
    }
}

impl Default for RagPipelineBuilder {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{Document, EmbeddingService, InMemoryRetriever, LocalEmbeddingProvider};

    #[tokio::test]
    async fn test_text_preprocessing_step() {
        let step = TextPreprocessingStep::new(vec![
            TextOperation::ToLowercase,
            TextOperation::NormalizeWhitespace,
        ]);

        let context = PipelineContext::new(PipelineData::Text("  HELLO    WORLD  ".to_string()));
        let result = step.execute(context).await.unwrap();

        if let PipelineData::Text(processed) = result.data {
            assert_eq!(processed, "hello world");
        } else {
            panic!("Expected Text output");
        }

        assert!(result.execution_history[0].success);
    }

    #[tokio::test]
    async fn test_document_chunking_step() {
        let step = DocumentChunkingStep::new(DocumentChunker::new());

        let doc = Document::new(
            "This is a test document with some content that should be chunked appropriately.",
        );
        let context = PipelineContext::new(PipelineData::Document(doc));

        let result = step.execute(context).await.unwrap();

        if let PipelineData::Chunks(chunks) = result.data {
            assert!(!chunks.is_empty());
        } else {
            panic!("Expected Chunks output");
        }
    }

    #[tokio::test]
    async fn test_embedding_step() {
        let provider = Arc::new(LocalEmbeddingProvider::new("test-model", 128));
        let embedding_service = Arc::new(EmbeddingService::new(provider));
        let step = EmbeddingStep::new(embedding_service);

        let doc = Document::new("Test document for embedding");
        let context = PipelineContext::new(PipelineData::Document(doc));

        let result = step.execute(context).await.unwrap();

        if let PipelineData::Embeddings(embeddings) = result.data {
            assert_eq!(embeddings.len(), 1);
            assert_eq!(embeddings[0].dimensions, 128);
        } else {
            panic!("Expected Embeddings output");
        }
    }

    #[tokio::test]
    async fn test_pipeline_execution() {
        let provider = Arc::new(LocalEmbeddingProvider::new("test-model", 128));
        let embedding_service = Arc::new(EmbeddingService::new(provider));

        let pipeline = Pipeline::new()
            .add_step(Arc::new(TextPreprocessingStep::new(vec![
                TextOperation::ToLowercase,
            ])))
            .add_step(Arc::new(EmbeddingStep::new(embedding_service)));

        let doc = Document::new("TEST DOCUMENT");
        let result = pipeline.execute(PipelineData::Document(doc)).await.unwrap();

        // Should have executed 2 steps
        assert_eq!(result.execution_history.len(), 2);
        assert!(result.execution_history.iter().all(|step| step.success));

        // Final output should be embeddings
        if let PipelineData::Embeddings(embeddings) = result.data {
            assert_eq!(embeddings.len(), 1);
        } else {
            panic!("Expected Embeddings output");
        }
    }

    #[tokio::test]
    async fn test_rag_pipeline_builder() {
        let provider = Arc::new(LocalEmbeddingProvider::new("test-model", 128));
        let embedding_service = Arc::new(EmbeddingService::new(provider));

        let builder = RagPipelineBuilder::new().with_embedding_service(embedding_service);

        let pipeline = builder.build_ingestion_pipeline().unwrap();
        let step_info = pipeline.get_step_info();

        assert_eq!(step_info.len(), 3); // preprocessing, chunking, embedding
        assert_eq!(step_info[0].name, "text_preprocessing");
        assert_eq!(step_info[1].name, "document_chunking");
        assert_eq!(step_info[2].name, "embedding_generation");
    }

    #[test]
    fn test_pipeline_context() {
        let mut context = PipelineContext::new(PipelineData::Text("test".to_string()))
            .with_metadata(
                "test_key",
                serde_json::Value::String("test_value".to_string()),
            );

        assert_eq!(
            context.metadata.get("test_key").unwrap().as_str().unwrap(),
            "test_value"
        );

        let step_execution = StepExecution {
            step_id: "test_step".to_string(),
            start_time: chrono::Utc::now(),
            duration_ms: 100,
            success: true,
            error_message: None,
            metadata: HashMap::new(),
        };

        context.record_step(step_execution);

        assert_eq!(context.execution_history.len(), 1);
        assert_eq!(context.total_execution_time(), 100);
        assert!(!context.has_failures());
    }
}