Struct chat_gpt_lib_rs::client::ChatResponse
source · pub struct ChatResponse {
pub id: String,
pub object: String,
pub created: i64,
pub model: String,
pub usage: Usage,
pub choices: Vec<Choice>,
}Expand description
Represents the response from the chat API call.
Fields§
§id: String§object: String§created: i64§model: String§usage: Usage§choices: Vec<Choice>Trait Implementations§
source§impl Debug for ChatResponse
impl Debug for ChatResponse
source§impl<'de> Deserialize<'de> for ChatResponse
impl<'de> Deserialize<'de> for ChatResponse
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