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
//! # ReasonKit Engine Module
//!
//! High-performance async reasoning engine that orchestrates ThinkTool execution
//! with memory integration, streaming support, and concurrent processing.
//!
//! ## Core Components
//!
//! - **ReasoningLoop**: Main async engine for structured reasoning
//! - **ReasoningSession**: Stateful session with context accumulation
//! - **StreamingOutput**: Real-time reasoning step streaming
//!
//! ## Architecture
//!
//! ```text
//! +------------------+ +------------------+ +------------------+
//! | User Prompt | --> | ReasoningLoop | --> | Decision Output |
//! +------------------+ +------------------+ +------------------+
//! |
//! +-------------+-------------+
//! | | |
//! +----v----+ +-----v-----+ +----v----+
//! | Memory | | ThinkTool | | Profile |
//! | Query | | Executor | | System |
//! +---------+ +-----------+ +---------+
//! ```
//!
//! ## Usage
//!
//! ```rust,ignore
//! use reasonkit::engine::{ReasoningLoop, ReasoningConfig, Profile};
//!
//! #[tokio::main]
//! async fn main() -> Result<()> {
//! let loop_engine = ReasoningLoop::builder()
//! .with_profile(Profile::Balanced)
//! .with_memory(memory_client)
//! .build()?;
//!
//! // Streaming execution
//! let mut stream = loop_engine.reason_stream("Should we adopt microservices?").await?;
//! while let Some(step) = stream.next().await {
//! println!("Step: {:?}", step);
//! }
//!
//! // Blocking execution
//! let decision = loop_engine.reason("Should we adopt microservices?").await?;
//! println!("Decision: {}", decision.conclusion);
//!
//! Ok(())
//! }
//! ```
// Re-exports for convenience
pub use ;