tembo_api_client/models/
ask_result.rs

1/*
2 * Tembo Cloud
3 *
4 * Platform API for Tembo Cloud             </br>             </br>             To find a Tembo Data API, please find it here:             </br>             </br>             [AWS US East 1](https://api.data-1.use1.tembo.io/swagger-ui/)
5 *
6 * The version of the OpenAPI document: v1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AskResult {
16    /// The ask query. For example, \"how to create a Tembo instance\"
17    #[serde(rename = "chat_response")]
18    pub chat_response: String,
19    /// an array of json objects referencing documents used to generate the response
20    #[serde(
21        rename = "context",
22        default,
23        with = "::serde_with::rust::double_option",
24        skip_serializing_if = "Option::is_none"
25    )]
26    pub context: Option<Option<Vec<models::SearchResponse>>>,
27}
28
29impl AskResult {
30    pub fn new(chat_response: String) -> AskResult {
31        AskResult {
32            chat_response,
33            context: None,
34        }
35    }
36}