thiggle-client 0.0.1

API for categorizing data with LLMs
Documentation
/*
 * Thiggle API
 *
 * API for categorizing data with LLMs
 *
 * The version of the OpenAPI document: 0.0.1
 * 
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CategorizeResponse {
    /// A list of chosen categories for the task
    #[serde(rename = "choices", skip_serializing_if = "Option::is_none")]
    pub choices: Option<Vec<String>>,
}

impl CategorizeResponse {
    pub fn new() -> CategorizeResponse {
        CategorizeResponse {
            choices: None,
        }
    }
}