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 41ca204 commit 8c3bc76Copy full SHA for 8c3bc76
src/main/kotlin/com/cjcrafter/openai/chat/ChatRequest.kt
@@ -49,7 +49,7 @@ data class ChatRequest @JvmOverloads constructor(
49
var temperature: Float? = null,
50
@field:SerializedName("top_p") var topP: Float? = null,
51
var n: Int? = null,
52
- var stream: Boolean? = null,
+ @Deprecated("Use ChatBot#streamResponse") var stream: Boolean? = null,
53
var stop: String? = null,
54
@field:SerializedName("max_tokens") var maxTokens: Int? = null,
55
@field:SerializedName("presence_penalty") var presencePenalty: Float? = null,
0 commit comments