// File generated from our OpenAPI spec by Stainless. package com.openai.client.okhttp import com.fasterxml.jackson.databind.json.JsonMapper import com.openai.auth.WorkloadIdentity import com.openai.azure.AzureOpenAIServiceVersion import com.openai.azure.AzureUrlPathMode import com.openai.client.OpenAIClient import com.openai.client.OpenAIClientImpl import com.openai.core.ClientOptions import com.openai.core.LogLevel import com.openai.core.Sleeper import com.openai.core.Timeout import com.openai.core.http.AsyncStreamResponse import com.openai.core.http.Headers import com.openai.core.http.HttpClient import com.openai.core.http.ProxyAuthenticator import com.openai.core.http.QueryParams import com.openai.credential.Credential import java.net.Proxy import java.time.Clock import java.time.Duration import java.util.Optional import java.util.concurrent.Executor import java.util.concurrent.ExecutorService import javax.net.ssl.HostnameVerifier import javax.net.ssl.SSLSocketFactory import javax.net.ssl.X509TrustManager import kotlin.jvm.optionals.getOrNull /** * A class that allows building an instance of [OpenAIClient] with [OkHttpClient] as the underlying * [HttpClient]. */ class OpenAIOkHttpClient private constructor() { companion object { /** Returns a mutable builder for constructing an instance of [OpenAIClient]. */ @JvmStatic fun builder() = Builder() /** * Returns a client configured using system properties and environment variables. * * @see ClientOptions.Builder.fromEnv */ @JvmStatic fun fromEnv(): OpenAIClient = builder().fromEnv().build() } /** A builder for [OpenAIOkHttpClient]. */ class Builder internal constructor() { private var clientOptions: ClientOptions.Builder = ClientOptions.builder() private var dispatcherExecutorService: ExecutorService? = null private var proxy: Proxy? = null private var proxyAuthenticator: ProxyAuthenticator? = null private var maxIdleConnections: Int? = null private var keepAliveDuration: Duration? = null private var sslSocketFactory: SSLSocketFactory? = null private var trustManager: X509TrustManager? = null private var hostnameVerifier: HostnameVerifier? = null /** * The executor service to use for running HTTP requests. * * Defaults to OkHttp's * [default executor service](https://github.com/square/okhttp/blob/ace792f443b2ffb17974f5c0d1cecdf589309f26/okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dispatcher.kt#L98-L104). * * This class takes ownership of the executor service and shuts it down when closed. */ fun dispatcherExecutorService(dispatcherExecutorService: ExecutorService?) = apply { this.dispatcherExecutorService = dispatcherExecutorService } /** * Alias for calling [Builder.dispatcherExecutorService] with * `dispatcherExecutorService.orElse(null)`. */ fun dispatcherExecutorService(dispatcherExecutorService: Optional) = dispatcherExecutorService(dispatcherExecutorService.getOrNull()) fun proxy(proxy: Proxy?) = apply { this.proxy = proxy } /** Alias for calling [Builder.proxy] with `proxy.orElse(null)`. */ fun proxy(proxy: Optional) = proxy(proxy.getOrNull()) /** * Provides credentials when an HTTP proxy responds with `407 Proxy Authentication * Required`. */ fun proxyAuthenticator(proxyAuthenticator: ProxyAuthenticator?) = apply { this.proxyAuthenticator = proxyAuthenticator } /** * Alias for calling [Builder.proxyAuthenticator] with `proxyAuthenticator.orElse(null)`. */ fun proxyAuthenticator(proxyAuthenticator: Optional) = proxyAuthenticator(proxyAuthenticator.getOrNull()) /** * The maximum number of idle connections kept by the underlying OkHttp connection pool. * * If this is set, then [keepAliveDuration] must also be set. * * If unset, then OkHttp's default is used. */ fun maxIdleConnections(maxIdleConnections: Int?) = apply { this.maxIdleConnections = maxIdleConnections } /** * Alias for [Builder.maxIdleConnections]. * * This unboxed primitive overload exists for backwards compatibility. */ fun maxIdleConnections(maxIdleConnections: Int) = maxIdleConnections(maxIdleConnections as Int?) /** * Alias for calling [Builder.maxIdleConnections] with `maxIdleConnections.orElse(null)`. */ fun maxIdleConnections(maxIdleConnections: Optional) = maxIdleConnections(maxIdleConnections.getOrNull()) /** * The keep-alive duration for idle connections in the underlying OkHttp connection pool. * * If this is set, then [maxIdleConnections] must also be set. * * If unset, then OkHttp's default is used. */ fun keepAliveDuration(keepAliveDuration: Duration?) = apply { this.keepAliveDuration = keepAliveDuration } /** Alias for calling [Builder.keepAliveDuration] with `keepAliveDuration.orElse(null)`. */ fun keepAliveDuration(keepAliveDuration: Optional) = keepAliveDuration(keepAliveDuration.getOrNull()) /** * The socket factory used to secure HTTPS connections. * * If this is set, then [trustManager] must also be set. * * If unset, then the system default is used. Most applications should not call this method, * and instead use the system default. The default include special optimizations that can be * lost if the implementation is modified. */ fun sslSocketFactory(sslSocketFactory: SSLSocketFactory?) = apply { this.sslSocketFactory = sslSocketFactory } /** Alias for calling [Builder.sslSocketFactory] with `sslSocketFactory.orElse(null)`. */ fun sslSocketFactory(sslSocketFactory: Optional) = sslSocketFactory(sslSocketFactory.getOrNull()) /** * The trust manager used to secure HTTPS connections. * * If this is set, then [sslSocketFactory] must also be set. * * If unset, then the system default is used. Most applications should not call this method, * and instead use the system default. The default include special optimizations that can be * lost if the implementation is modified. */ fun trustManager(trustManager: X509TrustManager?) = apply { this.trustManager = trustManager } /** Alias for calling [Builder.trustManager] with `trustManager.orElse(null)`. */ fun trustManager(trustManager: Optional) = trustManager(trustManager.getOrNull()) /** * The verifier used to confirm that response certificates apply to requested hostnames for * HTTPS connections. * * If unset, then a default hostname verifier is used. */ fun hostnameVerifier(hostnameVerifier: HostnameVerifier?) = apply { this.hostnameVerifier = hostnameVerifier } /** Alias for calling [Builder.hostnameVerifier] with `hostnameVerifier.orElse(null)`. */ fun hostnameVerifier(hostnameVerifier: Optional) = hostnameVerifier(hostnameVerifier.getOrNull()) /** * Whether to throw an exception if any of the Jackson versions detected at runtime are * incompatible with the SDK's minimum supported Jackson version (2.13.4). * * Defaults to true. Use extreme caution when disabling this option. There is no guarantee * that the SDK will work correctly when using an incompatible Jackson version. */ fun checkJacksonVersionCompatibility(checkJacksonVersionCompatibility: Boolean) = apply { clientOptions.checkJacksonVersionCompatibility(checkJacksonVersionCompatibility) } /** * The Jackson JSON mapper to use for serializing and deserializing JSON. * * Defaults to [com.openai.core.jsonMapper]. The default is usually sufficient and rarely * needs to be overridden. */ fun jsonMapper(jsonMapper: JsonMapper) = apply { clientOptions.jsonMapper(jsonMapper) } /** * The executor to use for running [AsyncStreamResponse.Handler] callbacks. * * Defaults to a dedicated cached thread pool. * * This class takes ownership of the executor and shuts it down, if possible, when closed. */ fun streamHandlerExecutor(streamHandlerExecutor: Executor) = apply { clientOptions.streamHandlerExecutor(streamHandlerExecutor) } /** * The interface to use for delaying execution, like during retries. * * This is primarily useful for using fake delays in tests. * * Defaults to real execution delays. * * This class takes ownership of the sleeper and closes it when closed. */ fun sleeper(sleeper: Sleeper) = apply { clientOptions.sleeper(sleeper) } /** * The clock to use for operations that require timing, like retries. * * This is primarily useful for using a fake clock in tests. * * Defaults to [Clock.systemUTC]. */ fun clock(clock: Clock) = apply { clientOptions.clock(clock) } /** * The base URL to use for every request. * * Defaults to the production environment: `https://api.openai.com/v1`. */ fun baseUrl(baseUrl: String?) = apply { clientOptions.baseUrl(baseUrl) } /** Alias for calling [Builder.baseUrl] with `baseUrl.orElse(null)`. */ fun baseUrl(baseUrl: Optional) = baseUrl(baseUrl.getOrNull()) /** * Whether to call `validate` on every response before returning it. * * Setting this to `true` is _not_ forwards compatible with new types from the API for * existing fields. * * Defaults to false, which means the shape of the response will not be validated upfront. * Instead, validation will only occur for the parts of the response that are accessed. */ fun responseValidation(responseValidation: Boolean) = apply { clientOptions.responseValidation(responseValidation) } /** * Sets the maximum time allowed for various parts of an HTTP call's lifecycle, excluding * retries. * * Defaults to [Timeout.default]. */ fun timeout(timeout: Timeout) = apply { clientOptions.timeout(timeout) } /** * Sets the maximum time allowed for a complete HTTP call, not including retries. * * See [Timeout.request] for more details. * * For fine-grained control, pass a [Timeout] object. */ fun timeout(timeout: Duration) = apply { clientOptions.timeout(timeout) } /** * The maximum number of times to retry failed requests, with a short exponential backoff * between requests. * * Only the following error types are retried: * - Connection errors (for example, due to a network connectivity problem) * - 408 Request Timeout * - 409 Conflict * - 429 Rate Limit * - 5xx Internal * * The API may also explicitly instruct the SDK to retry or not retry a request. * * Defaults to 2. */ fun maxRetries(maxRetries: Int) = apply { clientOptions.maxRetries(maxRetries) } /** * The level at which to log request and response information. * * [fromEnv] will set the level from environment variables. See [LogLevel.fromEnv]. * * Defaults to [LogLevel.fromEnv]. */ fun logLevel(logLevel: LogLevel) = apply { clientOptions.logLevel(logLevel) } fun apiKey(apiKey: String?) = apply { clientOptions.apiKey(apiKey) } /** Alias for calling [Builder.apiKey] with `apiKey.orElse(null)`. */ fun apiKey(apiKey: Optional) = apiKey(apiKey.getOrNull()) fun adminApiKey(adminApiKey: String?) = apply { clientOptions.adminApiKey(adminApiKey) } /** Alias for calling [Builder.adminApiKey] with `adminApiKey.orElse(null)`. */ fun adminApiKey(adminApiKey: Optional) = adminApiKey(adminApiKey.getOrNull()) fun credential(credential: Credential) = apply { clientOptions.credential(credential) } fun workloadIdentity(workloadIdentity: WorkloadIdentity?) = apply { clientOptions.workloadIdentity(workloadIdentity) } /** Alias for calling [Builder.workloadIdentity] with `workloadIdentity.orElse(null)`. */ fun workloadIdentity(workloadIdentity: Optional) = workloadIdentity(workloadIdentity.getOrNull()) fun azureServiceVersion(azureServiceVersion: AzureOpenAIServiceVersion) = apply { clientOptions.azureServiceVersion(azureServiceVersion) } fun azureUrlPathMode(azureUrlPathMode: AzureUrlPathMode) = apply { clientOptions.azureUrlPathMode(azureUrlPathMode) } fun organization(organization: String?) = apply { clientOptions.organization(organization) } /** Alias for calling [Builder.organization] with `organization.orElse(null)`. */ fun organization(organization: Optional) = organization(organization.getOrNull()) fun project(project: String?) = apply { clientOptions.project(project) } /** Alias for calling [Builder.project] with `project.orElse(null)`. */ fun project(project: Optional) = project(project.getOrNull()) fun webhookSecret(webhookSecret: String?) = apply { clientOptions.webhookSecret(webhookSecret) } /** Alias for calling [Builder.webhookSecret] with `webhookSecret.orElse(null)`. */ fun webhookSecret(webhookSecret: Optional) = webhookSecret(webhookSecret.getOrNull()) fun headers(headers: Headers) = apply { clientOptions.headers(headers) } fun headers(headers: Map>) = apply { clientOptions.headers(headers) } fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) } fun putHeaders(name: String, values: Iterable) = apply { clientOptions.putHeaders(name, values) } fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) } fun putAllHeaders(headers: Map>) = apply { clientOptions.putAllHeaders(headers) } fun replaceHeaders(name: String, value: String) = apply { clientOptions.replaceHeaders(name, value) } fun replaceHeaders(name: String, values: Iterable) = apply { clientOptions.replaceHeaders(name, values) } fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) } fun replaceAllHeaders(headers: Map>) = apply { clientOptions.replaceAllHeaders(headers) } fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) } fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) } fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) } fun queryParams(queryParams: Map>) = apply { clientOptions.queryParams(queryParams) } fun putQueryParam(key: String, value: String) = apply { clientOptions.putQueryParam(key, value) } fun putQueryParams(key: String, values: Iterable) = apply { clientOptions.putQueryParams(key, values) } fun putAllQueryParams(queryParams: QueryParams) = apply { clientOptions.putAllQueryParams(queryParams) } fun putAllQueryParams(queryParams: Map>) = apply { clientOptions.putAllQueryParams(queryParams) } fun replaceQueryParams(key: String, value: String) = apply { clientOptions.replaceQueryParams(key, value) } fun replaceQueryParams(key: String, values: Iterable) = apply { clientOptions.replaceQueryParams(key, values) } fun replaceAllQueryParams(queryParams: QueryParams) = apply { clientOptions.replaceAllQueryParams(queryParams) } fun replaceAllQueryParams(queryParams: Map>) = apply { clientOptions.replaceAllQueryParams(queryParams) } fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) } fun removeAllQueryParams(keys: Set) = apply { clientOptions.removeAllQueryParams(keys) } /** * Updates configuration using system properties and environment variables. * * @see ClientOptions.Builder.fromEnv */ fun fromEnv() = apply { clientOptions.fromEnv() } /** * Returns an immutable instance of [OpenAIClient]. * * Further updates to this [Builder] will not mutate the returned instance. */ fun build(): OpenAIClient = OpenAIClientImpl( clientOptions .httpClient( OkHttpClient.builder() .timeout(clientOptions.timeout()) .proxy(proxy) .proxyAuthenticator(proxyAuthenticator) .maxIdleConnections(maxIdleConnections) .keepAliveDuration(keepAliveDuration) .dispatcherExecutorService(dispatcherExecutorService) .sslSocketFactory(sslSocketFactory) .trustManager(trustManager) .hostnameVerifier(hostnameVerifier) .build() ) .build() ) } }