docs,langchain-community: Fix typos in docs and code (#30541)

Fix typos
This commit is contained in:
omahs
2025-03-28 20:21:16 +01:00
committed by GitHub
parent 47d50f49d9
commit 6f8735592b
21 changed files with 54 additions and 54 deletions

View File

@@ -15,7 +15,7 @@ def test_initialize_azure_openai() -> None:
assert embeddings.model == "text-embedding-large"
def test_intialize_azure_openai_with_base_set() -> None:
def test_initialize_azure_openai_with_base_set() -> None:
with mock.patch.dict(os.environ, {"OPENAI_API_BASE": "https://api.openai.com"}):
embeddings = AzureOpenAIEmbeddings( # type: ignore[call-arg, call-arg]
model="text-embedding-large",