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 13f3806 commit e282c6cCopy full SHA for e282c6c
openai-core/src/commonMain/kotlin/com.aallam.openai.api/run/Run.kt
@@ -113,12 +113,12 @@ public data class Run(
113
/**
114
* The Unix timestamp (in seconds) for when the run was completed.
115
*/
116
- @SerialName("temperature") val temperature: Int? = null,
+ @SerialName("temperature") val temperature: Double? = null,
117
118
119
* The nucleus sampling value used for this run. If not set, defaults to 1.
120
121
- @SerialName("top_p") val topP: Int? = null,
+ @SerialName("top_p") val topP: Double? = null,
122
123
124
* The maximum number of prompt tokens specified to have been used over the course of the run.
0 commit comments