pub struct ThinkingConfig {
pub max_thoughts_per_session: u32,
pub max_branches_per_session: u32,
pub session_timeout_seconds: u64,
pub enable_analytics: bool,
pub enable_thought_logging: bool,
pub max_thought_length: usize,
pub min_thought_length: usize,
pub rate_limiting: RateLimitingConfig,
}Expand description
Thinking configuration
Fields§
§max_thoughts_per_session: u32Maximum thoughts per session
max_branches_per_session: u32Maximum branches per session
session_timeout_seconds: u64Session timeout in seconds
enable_analytics: boolWhether to enable analytics
enable_thought_logging: boolWhether to enable thought logging
max_thought_length: usizeMaximum thought length
min_thought_length: usizeMinimum thought length
rate_limiting: RateLimitingConfigRate limiting configuration
Trait Implementations§
Source§impl Clone for ThinkingConfig
impl Clone for ThinkingConfig
Source§fn clone(&self) -> ThinkingConfig
fn clone(&self) -> ThinkingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ThinkingConfig
impl Debug for ThinkingConfig
Source§impl Default for ThinkingConfig
impl Default for ThinkingConfig
Source§impl<'de> Deserialize<'de> for ThinkingConfig
impl<'de> Deserialize<'de> for ThinkingConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ThinkingConfig
impl RefUnwindSafe for ThinkingConfig
impl Send for ThinkingConfig
impl Sync for ThinkingConfig
impl Unpin for ThinkingConfig
impl UnwindSafe for ThinkingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more