pub struct IntelligenceConfig {
pub enable_entity_recognition: bool,
pub enable_relation_extraction: bool,
pub enable_embeddings: bool,
pub embedding_model: EmbeddingModel,
}
Fields§
§enable_entity_recognition: bool
§enable_relation_extraction: bool
§enable_embeddings: bool
§embedding_model: EmbeddingModel
Trait Implementations§
Source§impl Clone for IntelligenceConfig
impl Clone for IntelligenceConfig
Source§fn clone(&self) -> IntelligenceConfig
fn clone(&self) -> IntelligenceConfig
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 IntelligenceConfig
impl Debug for IntelligenceConfig
Source§impl Default for IntelligenceConfig
impl Default for IntelligenceConfig
Source§impl<'de> Deserialize<'de> for IntelligenceConfig
impl<'de> Deserialize<'de> for IntelligenceConfig
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 IntelligenceConfig
impl RefUnwindSafe for IntelligenceConfig
impl Send for IntelligenceConfig
impl Sync for IntelligenceConfig
impl Unpin for IntelligenceConfig
impl UnwindSafe for IntelligenceConfig
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