Add the system_fingerprint field to the chat completion response

This commit is contained in:
Sharif Haason
2023-12-27 01:41:28 -05:00
parent a06113549a
commit 721eb8551a

View File

@ -135,6 +135,7 @@ pub struct ChatCompletionResponse {
pub model: String,
pub choices: Vec<ChatCompletionChoice>,
pub usage: common::Usage,
pub system_fingerprint: String,
}
#[derive(Debug, Serialize, Deserialize, Clone)]