pub struct SynthesisPolicy {
pub max_session_chars: usize,
pub max_insights: usize,
pub include_seed_insights: bool,
}Fields§
§max_session_chars: usizeMax chars of session content included in the prompt. Default: 8_000.
max_insights: usizeMax number of insights to request from the LLM. Default: 10.
include_seed_insights: boolPrepend rule-based seed insights so the LLM can build on them. Default: true.
Trait Implementations§
Source§impl Clone for SynthesisPolicy
impl Clone for SynthesisPolicy
Source§fn clone(&self) -> SynthesisPolicy
fn clone(&self) -> SynthesisPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SynthesisPolicy
impl Debug for SynthesisPolicy
Auto Trait Implementations§
impl Freeze for SynthesisPolicy
impl RefUnwindSafe for SynthesisPolicy
impl Send for SynthesisPolicy
impl Sync for SynthesisPolicy
impl Unpin for SynthesisPolicy
impl UnsafeUnpin for SynthesisPolicy
impl UnwindSafe for SynthesisPolicy
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