File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/main/kotlin/com/cjcrafter/openai/chat Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ data class ChatRequest @JvmOverloads internal constructor(
51
51
private var responseFormat: ChatResponseFormat ? = null
52
52
private var seed: Int? = null
53
53
private var stop: String? = null
54
- private var stream: Boolean? = null
55
54
private var temperature: Float? = null
56
55
private var topP: Float? = null
57
56
private var tools: MutableList <Tool >? = null
@@ -68,7 +67,6 @@ data class ChatRequest @JvmOverloads internal constructor(
68
67
fun responseFormat (responseFormat : ChatResponseFormat ) = apply { this .responseFormat = responseFormat }
69
68
fun seed (seed : Int ) = apply { this .seed = seed }
70
69
fun stop (stop : String ) = apply { this .stop = stop }
71
- fun stream (stream : Boolean ) = apply { this .stream = stream }
72
70
fun temperature (temperature : Float ) = apply { this .temperature = temperature }
73
71
fun topP (topP : Float ) = apply { this .topP = topP }
74
72
fun tools (tools : MutableList <Tool >) = apply { this .tools = tools }
@@ -126,7 +124,6 @@ data class ChatRequest @JvmOverloads internal constructor(
126
124
responseFormat = responseFormat,
127
125
seed = seed,
128
126
stop = stop,
129
- stream = stream,
130
127
temperature = temperature,
131
128
topP = topP,
132
129
tools = tools,
You can’t perform that action at this time.
0 commit comments