Struct rust_gpt::chat::ChatResponse
source · pub struct ChatResponse {
pub id: String,
pub object: String,
pub created: u64,
pub choices: Vec<ChatChoice>,
pub usage: Usage,
}
Expand description
Represents a response from the chat API.
Fields§
§id: String
§object: String
§created: u64
§choices: Vec<ChatChoice>
§usage: Usage
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