File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
openai-core/src/commonMain/kotlin/com.aallam.openai.api/chat Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,11 @@ public class ChatCompletionRequest(
158
158
* each with an associated log probability. logprobs must be set to true if this parameter is used.
159
159
*/
160
160
@SerialName(" top_logprobs" ) public val topLogprobs : Int? = null ,
161
+
162
+ /* *
163
+ * A unique identifier representing the Multi LORA reserved instance.
164
+ */
165
+ @SerialName(" instance_id" ) public val instanceId : String? = null ,
161
166
)
162
167
163
168
/* *
@@ -306,6 +311,11 @@ public class ChatCompletionRequestBuilder {
306
311
*/
307
312
public var topLogprobs: Int? = null
308
313
314
+ /* *
315
+ * A unique identifier representing the Multi LORA reserved instance.
316
+ */
317
+ public var instanceId: String? = null
318
+
309
319
/* *
310
320
* The messages to generate chat completions for.
311
321
*/
@@ -349,7 +359,8 @@ public class ChatCompletionRequestBuilder {
349
359
toolChoice = toolChoice,
350
360
tools = tools,
351
361
logprobs = logprobs,
352
- topLogprobs = topLogprobs
362
+ topLogprobs = topLogprobs,
363
+ instanceId = instanceId,
353
364
)
354
365
}
355
366
You can’t perform that action at this time.
0 commit comments