pub struct PlaybookConfig {
pub max_strategies: u32,
pub use_selection: bool,
pub embedding_model: String,
pub embedding_provider: String,
pub scoring_weights: PlaybookScoringWeights,
pub cache_embeddings: bool,
pub cache_file: Option<String>,
}Expand description
ACE playbook configuration.
Fields§
§max_strategies: u32§use_selection: bool§embedding_model: String§embedding_provider: String§scoring_weights: PlaybookScoringWeights§cache_embeddings: bool§cache_file: Option<String>Trait Implementations§
Source§impl Clone for PlaybookConfig
impl Clone for PlaybookConfig
Source§fn clone(&self) -> PlaybookConfig
fn clone(&self) -> PlaybookConfig
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 PlaybookConfig
impl Debug for PlaybookConfig
Source§impl Default for PlaybookConfig
impl Default for PlaybookConfig
Source§impl<'de> Deserialize<'de> for PlaybookConfig
impl<'de> Deserialize<'de> for PlaybookConfig
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 PlaybookConfig
impl RefUnwindSafe for PlaybookConfig
impl Send for PlaybookConfig
impl Sync for PlaybookConfig
impl Unpin for PlaybookConfig
impl UnsafeUnpin for PlaybookConfig
impl UnwindSafe for PlaybookConfig
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