pub struct Analysis {
pub summary: Option<String>,
pub structured_data: Option<Value>,
pub structured_data_multi: Option<Vec<Value>>,
pub success_evaluation: Option<String>,
}
Fields§
§summary: Option<String>
This is the summary of the call. Customize by setting assistant.analysisPlan.summaryPrompt
.
structured_data: Option<Value>
This is the structured data extracted from the call. Customize by setting assistant.analysisPlan.structuredDataPrompt
and/or assistant.analysisPlan.structuredDataSchema
.
structured_data_multi: Option<Vec<Value>>
This is the structured data catalog of the call. Customize by setting assistant.analysisPlan.structuredDataMultiPlan
.
success_evaluation: Option<String>
This is the evaluation of the call. Customize by setting assistant.analysisPlan.successEvaluationPrompt
and/or assistant.analysisPlan.successEvaluationRubric
.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Analysis
impl<'de> Deserialize<'de> for Analysis
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 Analysis
Auto Trait Implementations§
impl Freeze for Analysis
impl RefUnwindSafe for Analysis
impl Send for Analysis
impl Sync for Analysis
impl Unpin for Analysis
impl UnwindSafe for Analysis
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