We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb162e commit fc6bcf7Copy full SHA for fc6bcf7
core-model/src/main/kotlin/com/skydoves/chatgpt/core/model/network/GPTChatResponse.kt
@@ -27,7 +27,7 @@ data class GPTChatResponse(
27
@field:Json(name = "object") val `object`: String,
28
@field:Json(name = "created") val created: Long,
29
@field:Json(name = "model") val model: String,
30
- @field:Json(name = "system_fingerprint") val systemFingerprint: String,
+ @field:Json(name = "system_fingerprint") val systemFingerprint: String?,
31
@field:Json(name = "choices") val choices: List<GPTChoice>,
32
@field:Json(name = "usage") val usage: GPTUsage
33
)
0 commit comments