/*
* OpenAI API
*
* The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
*
* OpenAPI spec pub version: 2.3.0
*
* Generated pub by: https://github.com/swagger-api/swagger-codegen.git
*/
#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct ChatCompletionFunctions {
#[serde(rename = "parameters")]
pub parameters: Option<crate::models::FunctionParameters>,
/// A description of what the function does, used by the model to choose when and how to call the function.
#[serde(rename = "description")]
pub description: Option<String>,
/// The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
#[serde(rename = "name")]
pub name: String,
}