vapi-client 0.4.2

Unofficial crate for Vapi - Voice AI for developers.
Documentation
/*
 * Vapi API
 *
 * Voice AI for developers.
 *
 * The version of the OpenAPI document: 1.0
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SummaryPlan {
    /// These are the messages used to generate the summary.  @default: ``` [   {     \"role\": \"system\",     \"content\": \"You are an expert note-taker. You will be given a transcript of a call. Summarize the call in 2-3 sentences. DO NOT return anything except the summary.\"   },   {     \"role\": \"user\",     \"content\": \"Here is the transcript:\\n\\n{{transcript}}\\n\\n. Here is the ended reason of the call:\\n\\n{{endedReason}}\\n\\n\"   } ]```  You can customize by providing any messages you want.  Here are the template variables available: - {{transcript}}: The transcript of the call from `call.artifact.transcript`  - {{systemPrompt}}: The system prompt of the call from `assistant.model.messages[type=system].content`  - {{endedReason}}: The ended reason of the call from `call.endedReason`
    #[serde(rename = "messages", skip_serializing_if = "Option::is_none")]
    pub messages: Option<Vec<serde_json::Value>>,
    /// This determines whether a summary is generated and stored in `call.analysis.summary`. Defaults to true.  Usage: - If you want to disable the summary, set this to false.  @default true
    #[serde(rename = "enabled", skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,
    /// This is how long the request is tried before giving up. When request times out, `call.analysis.summary` will be empty.  Usage: - To guarantee the summary is generated, set this value high. Note, this will delay the end of call report in cases where model is slow to respond.  @default 5 seconds
    #[serde(rename = "timeoutSeconds", skip_serializing_if = "Option::is_none")]
    pub timeout_seconds: Option<f64>,
}

impl SummaryPlan {
    pub fn new() -> SummaryPlan {
        SummaryPlan {
            messages: None,
            enabled: None,
            timeout_seconds: None,
        }
    }
}