reasonkit-core 0.1.8

The Reasoning Engine — Auditable Reasoning for Production AI | Rust-Native | Turn Prompts into Protocols
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
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
//! # Async ReasoningLoop Engine
//!
//! High-performance async reasoning engine with Tokio-based concurrency,
//! memory integration, and streaming support.
//!
//! ## Design Principles
//!
//! 1. **Async-First**: All I/O operations are non-blocking
//! 2. **Channel-Based Concurrency**: ThinkTools execute via broadcast channels
//! 3. **Streaming Output**: Real-time step-by-step reasoning visibility
//! 4. **Memory Integration**: Optional reasonkit-mem for context enrichment
//! 5. **Profile System**: quick/balanced/deep/paranoid execution modes
//!
//! ## Performance Characteristics
//!
//! - Concurrent ThinkTool execution reduces latency by (N-1)/N for N independent tools
//! - Zero-copy streaming via tokio broadcast channels
//! - Bounded channel backpressure prevents memory exhaustion
//! - Connection pooling for LLM API calls

use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use std::time::{Duration, Instant};
use thiserror::Error;
use tokio::sync::{broadcast, RwLock};
use uuid::Uuid;

// ============================================================================
// ERROR TYPES
// ============================================================================

/// Errors that can occur during reasoning loop execution
#[derive(Error, Debug)]
pub enum ReasoningError {
    /// ThinkTool execution failed
    #[error("ThinkTool '{tool}' failed: {message}")]
    ThinkToolFailed { tool: String, message: String },

    /// Memory query failed
    #[error("Memory query failed: {0}")]
    MemoryQueryFailed(String),

    /// Profile not found
    #[error("Profile '{0}' not found")]
    ProfileNotFound(String),

    /// Channel communication error
    #[error("Channel error: {0}")]
    ChannelError(String),

    /// Timeout during execution
    #[error("Execution timed out after {0:?}")]
    Timeout(Duration),

    /// Configuration error
    #[error("Configuration error: {0}")]
    Config(String),

    /// LLM provider error
    #[error("LLM error: {0}")]
    LlmError(String),

    /// Cancelled by user
    #[error("Execution cancelled")]
    Cancelled,

    /// Confidence threshold not met
    #[error("Confidence {actual:.2} below threshold {required:.2}")]
    ConfidenceBelowThreshold { actual: f64, required: f64 },
}

/// Result type for reasoning operations
pub type Result<T> = std::result::Result<T, ReasoningError>;

// ============================================================================
// PROFILE SYSTEM
// ============================================================================

/// Reasoning profiles that determine ThinkTool chains and confidence targets
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum Profile {
    /// Fast 2-step: GigaThink -> LaserLogic (70% confidence target)
    Quick,

    /// Standard 4-step: GigaThink -> LaserLogic -> BedRock -> ProofGuard (80%)
    #[default]
    Balanced,

    /// Thorough 5-step with meta-cognition (85% confidence target)
    Deep,

    /// Maximum verification with adversarial critique (95% confidence target)
    Paranoid,
}

impl Profile {
    /// Get the ThinkTool chain for this profile
    pub fn thinktool_chain(&self) -> Vec<&'static str> {
        match self {
            Profile::Quick => vec!["gigathink", "laserlogic"],
            Profile::Balanced => vec!["gigathink", "laserlogic", "bedrock", "proofguard"],
            Profile::Deep => vec![
                "gigathink",
                "laserlogic",
                "bedrock",
                "proofguard",
                "brutalhonesty",
            ],
            Profile::Paranoid => vec![
                "gigathink",
                "laserlogic",
                "bedrock",
                "proofguard",
                "brutalhonesty",
                "proofguard", // Second verification pass
            ],
        }
    }

    /// Get the minimum confidence threshold for this profile
    pub fn min_confidence(&self) -> f64 {
        match self {
            Profile::Quick => 0.70,
            Profile::Balanced => 0.80,
            Profile::Deep => 0.85,
            Profile::Paranoid => 0.95,
        }
    }

    /// Get the maximum token budget for this profile
    pub fn token_budget(&self) -> u32 {
        match self {
            Profile::Quick => 3_000,
            Profile::Balanced => 8_000,
            Profile::Deep => 12_000,
            Profile::Paranoid => 25_000,
        }
    }

    /// Parse profile from string
    pub fn parse_profile(s: &str) -> Option<Self> {
        match s.to_lowercase().as_str() {
            "quick" | "q" => Some(Profile::Quick),
            "balanced" | "b" => Some(Profile::Balanced),
            "deep" | "d" => Some(Profile::Deep),
            "paranoid" | "p" => Some(Profile::Paranoid),
            _ => None,
        }
    }
}

impl std::fmt::Display for Profile {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Profile::Quick => write!(f, "quick"),
            Profile::Balanced => write!(f, "balanced"),
            Profile::Deep => write!(f, "deep"),
            Profile::Paranoid => write!(f, "paranoid"),
        }
    }
}

// ============================================================================
// CONFIGURATION
// ============================================================================

/// Configuration for the ReasoningLoop
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReasoningConfig {
    /// Default profile to use
    #[serde(default)]
    pub default_profile: Profile,

    /// Maximum execution time
    #[serde(default = "default_timeout")]
    pub timeout: Duration,

    /// Enable parallel ThinkTool execution when possible
    #[serde(default = "default_true")]
    pub enable_parallel: bool,

    /// Maximum concurrent ThinkTool executions
    #[serde(default = "default_max_concurrent")]
    pub max_concurrent: usize,

    /// Enable memory integration
    #[serde(default)]
    pub enable_memory: bool,

    /// Number of memory results to retrieve
    #[serde(default = "default_memory_top_k")]
    pub memory_top_k: usize,

    /// Minimum relevance score for memory results
    #[serde(default = "default_memory_min_score")]
    pub memory_min_score: f32,

    /// Enable streaming output
    #[serde(default = "default_true")]
    pub enable_streaming: bool,

    /// Streaming buffer size
    #[serde(default = "default_stream_buffer")]
    pub stream_buffer_size: usize,

    /// LLM temperature (0.0-1.0)
    #[serde(default = "default_temperature")]
    pub temperature: f64,

    /// LLM max tokens per step
    #[serde(default = "default_max_tokens")]
    pub max_tokens: u32,

    /// Retry failed steps
    #[serde(default = "default_true")]
    pub retry_on_failure: bool,

    /// Maximum retries per step
    #[serde(default = "default_max_retries")]
    pub max_retries: u32,
}

fn default_timeout() -> Duration {
    Duration::from_secs(300) // 5 minutes
}
fn default_true() -> bool {
    true
}
fn default_max_concurrent() -> usize {
    4
}
fn default_memory_top_k() -> usize {
    10
}
fn default_memory_min_score() -> f32 {
    0.5
}
fn default_stream_buffer() -> usize {
    32
}
fn default_temperature() -> f64 {
    0.7
}
fn default_max_tokens() -> u32 {
    2048
}
fn default_max_retries() -> u32 {
    2
}

impl Default for ReasoningConfig {
    fn default() -> Self {
        Self {
            default_profile: Profile::Balanced,
            timeout: default_timeout(),
            enable_parallel: true,
            max_concurrent: default_max_concurrent(),
            enable_memory: false,
            memory_top_k: default_memory_top_k(),
            memory_min_score: default_memory_min_score(),
            enable_streaming: true,
            stream_buffer_size: default_stream_buffer(),
            temperature: default_temperature(),
            max_tokens: default_max_tokens(),
            retry_on_failure: true,
            max_retries: default_max_retries(),
        }
    }
}

// ============================================================================
// MEMORY INTEGRATION
// ============================================================================

/// Context retrieved from memory
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryContext {
    /// Retrieved chunks with relevance scores
    pub chunks: Vec<MemoryChunk>,

    /// Query that was used
    pub query: String,

    /// Time taken for retrieval
    pub retrieval_time_ms: u64,

    /// Whether RAPTOR tree was used
    pub used_raptor: bool,
}

/// A chunk retrieved from memory
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryChunk {
    /// Chunk ID
    pub id: Uuid,

    /// Document ID
    pub doc_id: Uuid,

    /// Text content
    pub text: String,

    /// Relevance score
    pub score: f32,

    /// Source metadata
    pub source: Option<String>,
}

/// Trait for memory providers (enables mock testing and multiple backends)
#[async_trait]
pub trait MemoryProvider: Send + Sync {
    /// Query memory for relevant context
    async fn query(&self, query: &str, top_k: usize, min_score: f32) -> Result<MemoryContext>;

    /// Store a reasoning session for future reference
    async fn store_session(&self, session: &ReasoningSession) -> Result<()>;
}

// ============================================================================
// THINKTOOL EXECUTION
// ============================================================================

/// Result from a ThinkTool execution
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ThinkToolResult {
    /// ThinkTool that was executed
    pub tool_id: String,

    /// Output content
    pub content: String,

    /// Confidence score (0.0-1.0)
    pub confidence: f64,

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

    /// Token usage
    pub tokens: TokenUsage,

    /// Structured output (if applicable)
    pub structured: Option<serde_json::Value>,

    /// Warnings or notes
    pub notes: Vec<String>,
}

/// Token usage statistics
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct TokenUsage {
    pub input_tokens: u32,
    pub output_tokens: u32,
    pub total_tokens: u32,
    pub cost_usd: f64,
}

impl TokenUsage {
    pub fn add(&mut self, other: &TokenUsage) {
        self.input_tokens += other.input_tokens;
        self.output_tokens += other.output_tokens;
        self.total_tokens += other.total_tokens;
        self.cost_usd += other.cost_usd;
    }
}

/// Trait for ThinkTool execution (enables custom implementations)
#[async_trait]
pub trait ThinkToolExecutor: Send + Sync {
    /// Execute a ThinkTool with the given input
    async fn execute(
        &self,
        tool_id: &str,
        input: &str,
        context: &ExecutionContext,
    ) -> Result<ThinkToolResult>;

    /// List available ThinkTools
    fn available_tools(&self) -> Vec<&str>;
}

/// Context for ThinkTool execution
#[derive(Debug, Clone)]
pub struct ExecutionContext {
    /// Session ID
    pub session_id: Uuid,

    /// Current profile
    pub profile: Profile,

    /// Memory context (if available)
    pub memory: Option<MemoryContext>,

    /// Previous step outputs
    pub previous_outputs: HashMap<String, ThinkToolResult>,

    /// LLM temperature
    pub temperature: f64,

    /// Max tokens
    pub max_tokens: u32,
}

// ============================================================================
// STREAMING OUTPUT
// ============================================================================

/// Events emitted during reasoning loop execution
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum ReasoningEvent {
    /// Reasoning session started
    SessionStarted {
        session_id: Uuid,
        profile: Profile,
        prompt: String,
    },

    /// Memory query completed
    MemoryQueried {
        chunks_found: usize,
        retrieval_time_ms: u64,
    },

    /// ThinkTool step started
    StepStarted {
        step_index: usize,
        total_steps: usize,
        tool_id: String,
    },

    /// ThinkTool step completed
    StepCompleted {
        step_index: usize,
        tool_id: String,
        confidence: f64,
        duration_ms: u64,
    },

    /// Partial output from a step (for streaming LLM responses)
    PartialOutput { tool_id: String, delta: String },

    /// Warning or note
    Warning { message: String },

    /// Final decision reached
    DecisionReached {
        confidence: f64,
        total_duration_ms: u64,
    },

    /// Error occurred
    Error { message: String },

    /// Session completed
    SessionCompleted { success: bool },
}

/// Handle for receiving streaming events
pub struct StreamHandle {
    receiver: broadcast::Receiver<ReasoningEvent>,
    session_id: Uuid,
}

impl StreamHandle {
    /// Receive the next event
    pub async fn next(&mut self) -> Option<ReasoningEvent> {
        loop {
            match self.receiver.recv().await {
                Ok(event) => return Some(event),
                Err(broadcast::error::RecvError::Closed) => return None,
                Err(broadcast::error::RecvError::Lagged(_)) => {
                    // If we lagged, continue loop to get next available (non-recursive)
                    continue;
                }
            }
        }
    }

    /// Get session ID
    pub fn session_id(&self) -> Uuid {
        self.session_id
    }
}

// ============================================================================
// REASONING STEP & DECISION
// ============================================================================

/// Kind of reasoning step
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum StepKind {
    /// Memory retrieval
    MemoryQuery,
    /// ThinkTool execution
    ThinkTool { tool_id: String },
    /// Synthesis of previous steps
    Synthesis,
    /// Validation pass
    Validation,
}

/// A single step in the reasoning process
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReasoningStep {
    /// Step index (0-based)
    pub index: usize,

    /// Kind of step
    pub kind: StepKind,

    /// Input to this step
    pub input: String,

    /// Output from this step
    pub output: String,

    /// Confidence score
    pub confidence: f64,

    /// Duration in milliseconds
    pub duration_ms: u64,

    /// Token usage
    pub tokens: TokenUsage,

    /// Whether step succeeded
    pub success: bool,

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

/// Final decision from reasoning loop
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Decision {
    /// Unique decision ID
    pub id: Uuid,

    /// Session ID this decision belongs to
    pub session_id: Uuid,

    /// Original prompt
    pub prompt: String,

    /// Profile used
    pub profile: Profile,

    /// Final conclusion/answer
    pub conclusion: String,

    /// Overall confidence (0.0-1.0)
    pub confidence: f64,

    /// All reasoning steps taken
    pub steps: Vec<ReasoningStep>,

    /// Total token usage
    pub total_tokens: TokenUsage,

    /// Total duration in milliseconds
    pub total_duration_ms: u64,

    /// Memory context used (if any)
    pub memory_context: Option<MemoryContext>,

    /// Whether reasoning succeeded
    pub success: bool,

    /// Key insights extracted
    pub insights: Vec<String>,

    /// Caveats or limitations noted
    pub caveats: Vec<String>,

    /// Timestamp
    pub timestamp: chrono::DateTime<chrono::Utc>,
}

impl Decision {
    /// Check if confidence meets profile threshold
    pub fn meets_threshold(&self) -> bool {
        self.confidence >= self.profile.min_confidence()
    }

    /// Get a summary of the decision
    pub fn summary(&self) -> String {
        format!(
            "[{}] {} (confidence: {:.0}%, {} steps, {}ms)",
            self.profile,
            if self.success { "SUCCESS" } else { "FAILED" },
            self.confidence * 100.0,
            self.steps.len(),
            self.total_duration_ms
        )
    }
}

// ============================================================================
// REASONING SESSION
// ============================================================================

/// Stateful reasoning session with accumulated context
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReasoningSession {
    /// Session ID
    pub id: Uuid,

    /// Profile being used
    pub profile: Profile,

    /// Original prompt
    pub prompt: String,

    /// Current step index
    pub current_step: usize,

    /// All steps executed
    pub steps: Vec<ReasoningStep>,

    /// Memory context
    pub memory_context: Option<MemoryContext>,

    /// Accumulated token usage
    pub total_tokens: TokenUsage,

    /// Session start time
    pub started_at: chrono::DateTime<chrono::Utc>,

    /// Whether session is complete
    pub completed: bool,

    /// Final decision (if completed)
    pub decision: Option<Decision>,
}

impl ReasoningSession {
    /// Create a new session
    pub fn new(prompt: &str, profile: Profile) -> Self {
        Self {
            id: Uuid::new_v4(),
            profile,
            prompt: prompt.to_string(),
            current_step: 0,
            steps: Vec::new(),
            memory_context: None,
            total_tokens: TokenUsage::default(),
            started_at: chrono::Utc::now(),
            completed: false,
            decision: None,
        }
    }

    /// Add a completed step
    pub fn add_step(&mut self, step: ReasoningStep) {
        self.total_tokens.add(&step.tokens);
        self.steps.push(step);
        self.current_step += 1;
    }

    /// Get current confidence (average of all steps)
    pub fn current_confidence(&self) -> f64 {
        if self.steps.is_empty() {
            0.0
        } else {
            self.steps.iter().map(|s| s.confidence).sum::<f64>() / self.steps.len() as f64
        }
    }

    /// Complete the session with a decision
    pub fn complete(&mut self, conclusion: String, insights: Vec<String>, caveats: Vec<String>) {
        let total_duration_ms = (chrono::Utc::now() - self.started_at).num_milliseconds() as u64;

        self.decision = Some(Decision {
            id: Uuid::new_v4(),
            session_id: self.id,
            prompt: self.prompt.clone(),
            profile: self.profile,
            conclusion,
            confidence: self.current_confidence(),
            steps: self.steps.clone(),
            total_tokens: self.total_tokens.clone(),
            total_duration_ms,
            memory_context: self.memory_context.clone(),
            success: true,
            insights,
            caveats,
            timestamp: chrono::Utc::now(),
        });

        self.completed = true;
    }
}

// ============================================================================
// REASONING LOOP BUILDER
// ============================================================================

/// Builder for ReasoningLoop with fluent API
pub struct ReasoningLoopBuilder {
    config: ReasoningConfig,
    executor: Option<Arc<dyn ThinkToolExecutor>>,
    memory: Option<Arc<dyn MemoryProvider>>,
}

impl ReasoningLoopBuilder {
    /// Create a new builder with default config
    pub fn new() -> Self {
        Self {
            config: ReasoningConfig::default(),
            executor: None,
            memory: None,
        }
    }

    /// Set the default profile
    pub fn with_profile(mut self, profile: Profile) -> Self {
        self.config.default_profile = profile;
        self
    }

    /// Set the execution timeout
    pub fn with_timeout(mut self, timeout: Duration) -> Self {
        self.config.timeout = timeout;
        self
    }

    /// Enable parallel execution
    pub fn with_parallel(mut self, enabled: bool, max_concurrent: usize) -> Self {
        self.config.enable_parallel = enabled;
        self.config.max_concurrent = max_concurrent;
        self
    }

    /// Set the ThinkTool executor
    pub fn with_executor(mut self, executor: Arc<dyn ThinkToolExecutor>) -> Self {
        self.executor = Some(executor);
        self
    }

    /// Set the memory provider
    pub fn with_memory(mut self, memory: Arc<dyn MemoryProvider>) -> Self {
        self.memory = Some(memory);
        self.config.enable_memory = true;
        self
    }

    /// Configure memory retrieval
    pub fn with_memory_config(mut self, top_k: usize, min_score: f32) -> Self {
        self.config.memory_top_k = top_k;
        self.config.memory_min_score = min_score;
        self
    }

    /// Enable streaming output
    pub fn with_streaming(mut self, enabled: bool, buffer_size: usize) -> Self {
        self.config.enable_streaming = enabled;
        self.config.stream_buffer_size = buffer_size;
        self
    }

    /// Set LLM parameters
    pub fn with_llm_params(mut self, temperature: f64, max_tokens: u32) -> Self {
        self.config.temperature = temperature;
        self.config.max_tokens = max_tokens;
        self
    }

    /// Set retry configuration
    pub fn with_retries(mut self, enabled: bool, max_retries: u32) -> Self {
        self.config.retry_on_failure = enabled;
        self.config.max_retries = max_retries;
        self
    }

    /// Set the full config
    pub fn with_config(mut self, config: ReasoningConfig) -> Self {
        self.config = config;
        self
    }

    /// Build the ReasoningLoop
    pub fn build(self) -> Result<ReasoningLoop> {
        let executor = self
            .executor
            .ok_or_else(|| ReasoningError::Config("ThinkTool executor required".into()))?;

        Ok(ReasoningLoop {
            config: self.config,
            executor,
            memory: self.memory,
            active_sessions: Arc::new(RwLock::new(HashMap::new())),
            _event_sender: None,
        })
    }
}

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

// ============================================================================
// REASONING LOOP - MAIN ENGINE
// ============================================================================

/// High-performance async reasoning engine
///
/// The ReasoningLoop orchestrates ThinkTool execution with:
/// - Async/concurrent execution via Tokio
/// - Optional memory integration via reasonkit-mem
/// - Streaming output via broadcast channels
/// - Profile-based execution modes
pub struct ReasoningLoop {
    /// Configuration
    config: ReasoningConfig,

    /// ThinkTool executor
    executor: Arc<dyn ThinkToolExecutor>,

    /// Memory provider (optional)
    memory: Option<Arc<dyn MemoryProvider>>,

    /// Active sessions
    active_sessions: Arc<RwLock<HashMap<Uuid, ReasoningSession>>>,

    /// Event broadcaster (lazily initialized)
    _event_sender: Option<broadcast::Sender<ReasoningEvent>>,
}

impl ReasoningLoop {
    /// Create a builder for ReasoningLoop
    pub fn builder() -> ReasoningLoopBuilder {
        ReasoningLoopBuilder::new()
    }

    /// Get configuration
    pub fn config(&self) -> &ReasoningConfig {
        &self.config
    }

    /// Execute reasoning with streaming output
    pub async fn reason_stream(&self, prompt: &str) -> Result<(StreamHandle, Decision)> {
        self.reason_stream_with_profile(prompt, self.config.default_profile)
            .await
    }

    /// Execute reasoning with streaming output and custom profile
    pub async fn reason_stream_with_profile(
        &self,
        prompt: &str,
        profile: Profile,
    ) -> Result<(StreamHandle, Decision)> {
        // Create broadcast channel for events
        let (tx, rx) = broadcast::channel(self.config.stream_buffer_size);

        let session = ReasoningSession::new(prompt, profile);
        let session_id = session.id;

        // Store session
        {
            let mut sessions = self.active_sessions.write().await;
            sessions.insert(session_id, session.clone());
        }

        // Send start event
        let _ = tx.send(ReasoningEvent::SessionStarted {
            session_id,
            profile,
            prompt: prompt.to_string(),
        });

        // Execute reasoning
        let decision = self.execute_loop(session, Some(&tx)).await?;

        // Send completion event
        let _ = tx.send(ReasoningEvent::SessionCompleted {
            success: decision.success,
        });

        // Remove from active sessions
        {
            let mut sessions = self.active_sessions.write().await;
            sessions.remove(&session_id);
        }

        Ok((
            StreamHandle {
                receiver: rx,
                session_id,
            },
            decision,
        ))
    }

    /// Execute reasoning and return decision (blocking until complete)
    pub async fn reason(&self, prompt: &str) -> Result<Decision> {
        self.reason_with_profile(prompt, self.config.default_profile)
            .await
    }

    /// Execute reasoning with custom profile
    pub async fn reason_with_profile(&self, prompt: &str, profile: Profile) -> Result<Decision> {
        let session = ReasoningSession::new(prompt, profile);
        self.execute_loop(session, None).await
    }

    /// Core execution loop
    async fn execute_loop(
        &self,
        mut session: ReasoningSession,
        event_tx: Option<&broadcast::Sender<ReasoningEvent>>,
    ) -> Result<Decision> {
        let start = Instant::now();
        let profile = session.profile;

        // Step 1: Query memory if enabled
        if self.config.enable_memory {
            if let Some(ref memory) = self.memory {
                let mem_start = Instant::now();
                match memory
                    .query(
                        &session.prompt,
                        self.config.memory_top_k,
                        self.config.memory_min_score,
                    )
                    .await
                {
                    Ok(context) => {
                        let retrieval_time = mem_start.elapsed().as_millis() as u64;

                        if let Some(tx) = event_tx {
                            let _ = tx.send(ReasoningEvent::MemoryQueried {
                                chunks_found: context.chunks.len(),
                                retrieval_time_ms: retrieval_time,
                            });
                        }

                        session.memory_context = Some(context);
                    }
                    Err(e) => {
                        if let Some(tx) = event_tx {
                            let _ = tx.send(ReasoningEvent::Warning {
                                message: format!("Memory query failed: {}", e),
                            });
                        }
                    }
                }
            }
        }

        // Step 2: Execute ThinkTool chain
        let tools = profile.thinktool_chain();
        let total_steps = tools.len();

        let mut previous_outputs: HashMap<String, ThinkToolResult> = HashMap::new();

        for (step_idx, tool_id) in tools.iter().enumerate() {
            // Check timeout
            if start.elapsed() > self.config.timeout {
                return Err(ReasoningError::Timeout(self.config.timeout));
            }

            // Emit step start event
            if let Some(tx) = event_tx {
                let _ = tx.send(ReasoningEvent::StepStarted {
                    step_index: step_idx,
                    total_steps,
                    tool_id: tool_id.to_string(),
                });
            }

            // Build input for this step
            let input = self.build_step_input(&session, &previous_outputs, step_idx);

            // Create execution context
            let context = ExecutionContext {
                session_id: session.id,
                profile,
                memory: session.memory_context.clone(),
                previous_outputs: previous_outputs.clone(),
                temperature: self.config.temperature,
                max_tokens: self.config.max_tokens,
            };

            // Execute with retry logic
            let result = self.execute_with_retry(tool_id, &input, &context).await?;

            // Create reasoning step
            let step = ReasoningStep {
                index: step_idx,
                kind: StepKind::ThinkTool {
                    tool_id: tool_id.to_string(),
                },
                input: input.clone(),
                output: result.content.clone(),
                confidence: result.confidence,
                duration_ms: result.duration_ms,
                tokens: result.tokens.clone(),
                success: true,
                error: None,
            };

            // Emit step complete event
            if let Some(tx) = event_tx {
                let _ = tx.send(ReasoningEvent::StepCompleted {
                    step_index: step_idx,
                    tool_id: tool_id.to_string(),
                    confidence: result.confidence,
                    duration_ms: result.duration_ms,
                });
            }

            // Store result for next step
            previous_outputs.insert(tool_id.to_string(), result);
            session.add_step(step);
        }

        // Step 3: Synthesize final decision
        let (conclusion, insights, caveats) = self.synthesize_decision(&session, &previous_outputs);

        session.complete(conclusion, insights, caveats);

        let decision = session
            .decision
            .clone()
            .expect("decision should be set after complete");

        // Emit decision event
        if let Some(tx) = event_tx {
            let _ = tx.send(ReasoningEvent::DecisionReached {
                confidence: decision.confidence,
                total_duration_ms: decision.total_duration_ms,
            });
        }

        // Store session to memory if enabled
        if self.config.enable_memory {
            if let Some(ref memory) = self.memory {
                let _ = memory.store_session(&session).await;
            }
        }

        Ok(decision)
    }

    /// Build input for a step based on previous outputs
    fn build_step_input(
        &self,
        session: &ReasoningSession,
        previous_outputs: &HashMap<String, ThinkToolResult>,
        step_idx: usize,
    ) -> String {
        let mut input = session.prompt.clone();

        // Add memory context if available
        if let Some(ref memory) = session.memory_context {
            if !memory.chunks.is_empty() {
                input.push_str("\n\n--- RELEVANT CONTEXT ---\n");
                for chunk in memory.chunks.iter().take(3) {
                    input.push_str(&format!("- {}\n", chunk.text));
                }
            }
        }

        // Add previous step outputs for context
        if step_idx > 0 {
            input.push_str("\n\n--- PREVIOUS ANALYSIS ---\n");
            for (tool_id, result) in previous_outputs {
                // Truncate long outputs
                let content = if result.content.len() > 500 {
                    format!("{}...", &result.content[..500])
                } else {
                    result.content.clone()
                };
                input.push_str(&format!(
                    "[{}] (confidence: {:.0}%)\n{}\n\n",
                    tool_id,
                    result.confidence * 100.0,
                    content
                ));
            }
        }

        input
    }

    /// Execute a ThinkTool with retry logic
    async fn execute_with_retry(
        &self,
        tool_id: &str,
        input: &str,
        context: &ExecutionContext,
    ) -> Result<ThinkToolResult> {
        let mut last_error = None;

        for attempt in 0..=self.config.max_retries {
            match self.executor.execute(tool_id, input, context).await {
                Ok(result) => return Ok(result),
                Err(e) => {
                    if !self.config.retry_on_failure || attempt == self.config.max_retries {
                        return Err(e);
                    }
                    last_error = Some(e);
                    // Exponential backoff
                    let delay = Duration::from_millis(100 * 2u64.pow(attempt));
                    tokio::time::sleep(delay).await;
                }
            }
        }

        Err(
            last_error.unwrap_or_else(|| ReasoningError::ThinkToolFailed {
                tool: tool_id.to_string(),
                message: "Unknown error".into(),
            }),
        )
    }

    /// Synthesize final decision from all steps
    fn synthesize_decision(
        &self,
        session: &ReasoningSession,
        outputs: &HashMap<String, ThinkToolResult>,
    ) -> (String, Vec<String>, Vec<String>) {
        // Extract conclusion from last step
        let conclusion = outputs
            .values()
            .last()
            .map(|r| r.content.clone())
            .unwrap_or_else(|| "No conclusion reached".to_string());

        // Extract insights from various tools
        let mut insights = Vec::new();
        if let Some(gt) = outputs.get("gigathink") {
            if let Some(structured) = &gt.structured {
                if let Some(perspectives) = structured.get("perspectives") {
                    if let Some(arr) = perspectives.as_array() {
                        for p in arr.iter().take(3) {
                            if let Some(s) = p.as_str() {
                                insights.push(s.to_string());
                            }
                        }
                    }
                }
            }
        }

        // Extract caveats from BrutalHonesty if available
        let mut caveats = Vec::new();
        if let Some(bh) = outputs.get("brutalhonesty") {
            if bh.content.to_lowercase().contains("caveat")
                || bh.content.to_lowercase().contains("limitation")
            {
                caveats.push("See BrutalHonesty analysis for detailed limitations".to_string());
            }
        }

        // Add confidence-based caveat
        let confidence = session.current_confidence();
        if confidence < session.profile.min_confidence() {
            caveats.push(format!(
                "Confidence ({:.0}%) below target ({:.0}%)",
                confidence * 100.0,
                session.profile.min_confidence() * 100.0
            ));
        }

        (conclusion, insights, caveats)
    }

    /// Get an active session by ID
    pub async fn get_session(&self, session_id: Uuid) -> Option<ReasoningSession> {
        let sessions = self.active_sessions.read().await;
        sessions.get(&session_id).cloned()
    }

    /// Cancel an active session
    pub async fn cancel_session(&self, session_id: Uuid) -> Result<()> {
        let mut sessions = self.active_sessions.write().await;
        if sessions.remove(&session_id).is_some() {
            Ok(())
        } else {
            Err(ReasoningError::Config(format!(
                "Session {} not found",
                session_id
            )))
        }
    }

    /// Get count of active sessions
    pub async fn active_session_count(&self) -> usize {
        let sessions = self.active_sessions.read().await;
        sessions.len()
    }
}

// ============================================================================
// TESTS
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_profile_chains() {
        assert_eq!(Profile::Quick.thinktool_chain().len(), 2);
        assert_eq!(Profile::Balanced.thinktool_chain().len(), 4);
        assert_eq!(Profile::Deep.thinktool_chain().len(), 5);
        assert_eq!(Profile::Paranoid.thinktool_chain().len(), 6);
    }

    #[test]
    fn test_profile_confidence() {
        assert_eq!(Profile::Quick.min_confidence(), 0.70);
        assert_eq!(Profile::Balanced.min_confidence(), 0.80);
        assert_eq!(Profile::Deep.min_confidence(), 0.85);
        assert_eq!(Profile::Paranoid.min_confidence(), 0.95);
    }

    #[test]
    fn test_profile_from_str() {
        assert_eq!(Profile::parse_profile("quick"), Some(Profile::Quick));
        assert_eq!(Profile::parse_profile("Q"), Some(Profile::Quick));
        assert_eq!(Profile::parse_profile("balanced"), Some(Profile::Balanced));
        assert_eq!(Profile::parse_profile("PARANOID"), Some(Profile::Paranoid));
        assert_eq!(Profile::parse_profile("invalid"), None);
    }

    #[test]
    fn test_config_defaults() {
        let config = ReasoningConfig::default();
        assert_eq!(config.default_profile, Profile::Balanced);
        assert!(config.enable_parallel);
        assert_eq!(config.max_concurrent, 4);
        assert!(!config.enable_memory);
    }

    #[test]
    fn test_session_creation() {
        let session = ReasoningSession::new("Test prompt", Profile::Balanced);
        assert!(!session.completed);
        assert_eq!(session.current_step, 0);
        assert!(session.steps.is_empty());
    }

    #[test]
    fn test_session_confidence() {
        let mut session = ReasoningSession::new("Test", Profile::Balanced);

        // Empty session has 0 confidence
        assert_eq!(session.current_confidence(), 0.0);

        // Add steps with varying confidence
        session.add_step(ReasoningStep {
            index: 0,
            kind: StepKind::ThinkTool {
                tool_id: "gigathink".into(),
            },
            input: "test".into(),
            output: "output".into(),
            confidence: 0.8,
            duration_ms: 100,
            tokens: TokenUsage::default(),
            success: true,
            error: None,
        });

        session.add_step(ReasoningStep {
            index: 1,
            kind: StepKind::ThinkTool {
                tool_id: "laserlogic".into(),
            },
            input: "test".into(),
            output: "output".into(),
            confidence: 0.9,
            duration_ms: 100,
            tokens: TokenUsage::default(),
            success: true,
            error: None,
        });

        assert!((session.current_confidence() - 0.85).abs() < 1e-9);
    }

    #[test]
    fn test_token_usage_add() {
        let mut total = TokenUsage {
            input_tokens: 100,
            output_tokens: 50,
            total_tokens: 150,
            cost_usd: 0.001,
        };

        let step = TokenUsage {
            input_tokens: 200,
            output_tokens: 100,
            total_tokens: 300,
            cost_usd: 0.002,
        };

        total.add(&step);

        assert_eq!(total.input_tokens, 300);
        assert_eq!(total.output_tokens, 150);
        assert_eq!(total.total_tokens, 450);
        assert!((total.cost_usd - 0.003).abs() < 0.0001);
    }

    #[test]
    fn test_decision_meets_threshold() {
        let decision = Decision {
            id: Uuid::new_v4(),
            session_id: Uuid::new_v4(),
            prompt: "test".into(),
            profile: Profile::Balanced,
            conclusion: "test conclusion".into(),
            confidence: 0.85,
            steps: vec![],
            total_tokens: TokenUsage::default(),
            total_duration_ms: 1000,
            memory_context: None,
            success: true,
            insights: vec![],
            caveats: vec![],
            timestamp: chrono::Utc::now(),
        };

        assert!(decision.meets_threshold()); // 0.85 >= 0.80

        let low_confidence = Decision {
            confidence: 0.75,
            ..decision.clone()
        };
        assert!(!low_confidence.meets_threshold()); // 0.75 < 0.80
    }
}