copy
fun copy(temperature: Double? = this.temperature, maxTokens: Int? = this.maxTokens, numberOfChoices: Int? = this.numberOfChoices, speculation: String? = this.speculation, schema: LLMParams.Schema? = this.schema, toolChoice: LLMParams.ToolChoice? = this.toolChoice, user: String? = this.user, additionalProperties: Map<String, JsonElement>? = this.additionalProperties, topP: Double? = this.topP, stop: List<String>? = this.stop, randomSeed: Int? = this.randomSeed, presencePenalty: Double? = this.presencePenalty, frequencyPenalty: Double? = this.frequencyPenalty, parallelToolCalls: Boolean? = this.parallelToolCalls, promptMode: String? = this.promptMode, safePrompt: Boolean? = this.safePrompt): MistralAIParams(source)
Creates a copy of this instance with the ability to modify any of its properties.