pub struct NoteLinkingConfig {
pub enabled: bool,
pub similarity_threshold: f32,
pub top_k: usize,
pub timeout_secs: u64,
}Expand description
Runtime config for A-MEM dynamic note linking.
Fields§
§enabled: bool§similarity_threshold: f32§top_k: usize§timeout_secs: u64Trait Implementations§
Source§impl Clone for NoteLinkingConfig
impl Clone for NoteLinkingConfig
Source§fn clone(&self) -> NoteLinkingConfig
fn clone(&self) -> NoteLinkingConfig
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 NoteLinkingConfig
impl Debug for NoteLinkingConfig
Auto Trait Implementations§
impl Freeze for NoteLinkingConfig
impl RefUnwindSafe for NoteLinkingConfig
impl Send for NoteLinkingConfig
impl Sync for NoteLinkingConfig
impl Unpin for NoteLinkingConfig
impl UnsafeUnpin for NoteLinkingConfig
impl UnwindSafe for NoteLinkingConfig
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