pub struct Analysis {
pub summary: Option<String>,
pub structured_data: Option<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.
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
Source§impl OpenApi for Analysis
impl OpenApi for Analysis
Source§fn openapi() -> OpenApi
fn openapi() -> OpenApi
Return the
openapi::OpenApi instance which can be parsed with serde or served via
OpenAPI visualization tool such as Swagger UI.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