From 721eb8551ae53efd39fca252120df558e64410b1 Mon Sep 17 00:00:00 2001 From: Sharif Haason Date: Wed, 27 Dec 2023 01:41:28 -0500 Subject: [PATCH] Add the `system_fingerprint` field to the chat completion response --- src/v1/chat_completion.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v1/chat_completion.rs b/src/v1/chat_completion.rs index f66c1e6..524b5a8 100644 --- a/src/v1/chat_completion.rs +++ b/src/v1/chat_completion.rs @@ -135,6 +135,7 @@ pub struct ChatCompletionResponse { pub model: String, pub choices: Vec, pub usage: common::Usage, + pub system_fingerprint: String, } #[derive(Debug, Serialize, Deserialize, Clone)]