openai.proxy

Former-commit-id: f3cad8fa891efa2ef82e6024b1354b01c490057f
pull/160/head
Kye 1 year ago
parent b113c01e99
commit 394065cfb4

@ -500,10 +500,10 @@ class BaseOpenAI(BaseLLM):
if self.openai_proxy: if self.openai_proxy:
import openai import openai
raise Exception("The 'openai.proxy' option isn't read in the client API. You will need to pass it when you instantiate the client, e.g. 'OpenAI(proxy={ openai.proxy = {
"http": self.openai_proxy, "http": self.openai_proxy,
"https": self.openai_proxy, "https": self.openai_proxy,
})'") # type: ignore[assignment] # noqa: E501 } # type: ignore[assignment] # noqa: E501
return {**openai_creds, **self._default_params} return {**openai_creds, **self._default_params}
@property @property

Loading…
Cancel
Save