bump 331rc3 exp 39 (#13086)

This commit is contained in:
Bagatur
2023-11-08 13:00:13 -08:00
committed by GitHub
parent 9f077270c8
commit 1f85ec34d5
5 changed files with 36 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-experimental"
version = "0.0.38"
version = "0.0.39"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"

View File

@@ -57,6 +57,8 @@ class AzureChatOpenAI(ChatOpenAI):
azure_endpoint: Union[str, None] = None
"""Your Azure endpoint, including the resource.
Automatically inferred from env var `AZURE_OPENAI_ENDPOINT` if not provided.
Example: `https://example-resource.azure.openai.com/`
"""
deployment_name: Union[str, None] = Field(default=None, alias="azure_deployment")

View File

@@ -17,6 +17,8 @@ class AzureOpenAIEmbeddings(OpenAIEmbeddings):
azure_endpoint: Union[str, None] = None
"""Your Azure endpoint, including the resource.
Automatically inferred from env var `AZURE_OPENAI_ENDPOINT` if not provided.
Example: `https://example-resource.azure.openai.com/`
"""
azure_deployment: Optional[str] = None

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain"
version = "0.0.331rc2"
version = "0.0.331rc3"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"