Skip to content

Commit

Permalink
chore(config): fix openai config instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
aallam committed Nov 16, 2023
1 parent 8d3a815 commit 9630604
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public class OpenAIConfig(
host: OpenAIHost = OpenAIHost.OpenAI,
proxy: ProxyConfig? = null,
retry: RetryStrategy = RetryStrategy(),
engine: HttpClientEngine? = null,
httpClientConfig: HttpClientConfig<*>.() -> Unit = {}
) : this(
token = token,
Expand All @@ -66,6 +67,7 @@ public class OpenAIConfig(
host = host,
proxy = proxy,
retry = retry,
engine = engine,
httpClientConfig = httpClientConfig,
)
}
Expand Down

0 comments on commit 9630604

Please sign in to comment.