mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-07 21:50:25 +00:00
remove redundant properties on azure
This commit is contained in:
parent
24765e49fd
commit
7506c72346
@ -679,18 +679,6 @@ class AzureChatOpenAI(BaseChatOpenAI):
|
||||
)
|
||||
return self._root_async_client
|
||||
|
||||
@property
|
||||
def client(self) -> Any:
|
||||
if self._client is None:
|
||||
self._client = self.root_client.chat.completions
|
||||
return self._client
|
||||
|
||||
@property
|
||||
def async_client(self) -> Any:
|
||||
if self._async_client is None:
|
||||
self._async_client = self.root_async_client.chat.completions
|
||||
return self._async_client
|
||||
|
||||
@property
|
||||
def _identifying_params(self) -> Dict[str, Any]:
|
||||
"""Get the identifying parameters."""
|
||||
|
Loading…
Reference in New Issue
Block a user