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, includeThoughts: Boolean? = this.includeThoughts, thinkingBudget: Int? = this.thinkingBudget, additionalProperties: Map<String, JsonElement>? = this.additionalProperties, frequencyPenalty: Double? = this.frequencyPenalty, presencePenalty: Double? = this.presencePenalty, parallelToolCalls: Boolean? = this.parallelToolCalls, promptCacheKey: String? = this.promptCacheKey, safetyIdentifier: String? = this.safetyIdentifier, serviceTier: ServiceTier? = this.serviceTier, store: Boolean? = this.store, audio: OpenAIAudioConfig? = this.audio, logprobs: Boolean? = this.logprobs, reasoningEffort: ReasoningEffort? = this.reasoningEffort, stop: List<String>? = this.stop, topLogprobs: Int? = this.topLogprobs, topP: Double? = this.topP, webSearchOptions: OpenAIWebSearchOptions? = this.webSearchOptions): OpenAIChatParams(source)
Creates a copy of this instance with the ability to modify any of its properties.