File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
openai-core/src/commonMain/kotlin/com.aallam.openai.api/chat Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
package com.aallam.openai.api.chat
2
2
3
- import com.aallam.openai.api.BetaOpenAI
4
3
import com.aallam.openai.api.core.Usage
5
4
import com.aallam.openai.api.model.ModelId
6
5
import kotlinx.serialization.SerialName
@@ -42,4 +41,11 @@ public data class ChatCompletionChunk(
42
41
*/
43
42
@SerialName(" usage" )
44
43
public val usage : Usage ? = null ,
44
+
45
+ /* *
46
+ * This fingerprint represents the backend configuration that the model runs with. Can be used in conjunction with
47
+ * the `seed` request parameter to understand when backend changes have been made that might impact determinism.
48
+ */
49
+ @SerialName(" system_fingerprint" )
50
+ public val systemFingerprint : String? = null ,
45
51
)
You can’t perform that action at this time.
0 commit comments