pub struct CompiledPackRoutingConfig {
pub strategy: Option<String>,
pub embedding_provider: Option<String>,
pub summarization_provider: Option<String>,
pub chat_provider: Option<String>,
pub sort: Option<String>,
pub zdr: Option<bool>,
pub provider_order: Option<Vec<String>>,
pub data_collection: Option<String>,
}Expand description
Pack provider routing hints.
Fields§
§strategy: Option<String>§embedding_provider: Option<String>§summarization_provider: Option<String>§chat_provider: Option<String>§sort: Option<String>§zdr: Option<bool>§provider_order: Option<Vec<String>>§data_collection: Option<String>Trait Implementations§
Source§impl Clone for CompiledPackRoutingConfig
impl Clone for CompiledPackRoutingConfig
Source§fn clone(&self) -> CompiledPackRoutingConfig
fn clone(&self) -> CompiledPackRoutingConfig
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 CompiledPackRoutingConfig
impl Debug for CompiledPackRoutingConfig
Source§impl<'de> Deserialize<'de> for CompiledPackRoutingConfig
impl<'de> Deserialize<'de> for CompiledPackRoutingConfig
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
impl StructuralPartialEq for CompiledPackRoutingConfig
Auto Trait Implementations§
impl Freeze for CompiledPackRoutingConfig
impl RefUnwindSafe for CompiledPackRoutingConfig
impl Send for CompiledPackRoutingConfig
impl Sync for CompiledPackRoutingConfig
impl Unpin for CompiledPackRoutingConfig
impl UnwindSafe for CompiledPackRoutingConfig
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