Skip to content

Commit 9de0892

Browse files
bansalkanavmdrxy
andauthored
fix(docs): update package names across multiple integration docs (#32393)
## **Description:** Updated incorrect package names across multiple integration docs by replacing underscores with hyphens to reflect their actual names on PyPI. This aligns with the actual PyPI package names and prevents potential confusion or installation issues. ## **Issue:** N/A ## **Dependencies:** None ## **Twitter handle:** N/A --------- Co-authored-by: Mason Daugherty <[email protected]>
1 parent dd9f5d7 commit 9de0892

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+95
-95
lines changed

β€Ždocs/docs/integrations/chat/huggingface.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"\n",
5353
"| Class | Package | Local | Serializable | JS support | Package downloads | Package latest |\n",
5454
"| :--- | :--- | :---: | :---: | :---: | :---: | :---: |\n",
55-
"| [ChatHuggingFace](https://python.langchain.com/api_reference/huggingface/chat_models/langchain_huggingface.chat_models.huggingface.ChatHuggingFace.html) | [langchain_huggingface](https://python.langchain.com/api_reference/huggingface/index.html) | βœ… | ❌ | ❌ | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_huggingface?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_huggingface?style=flat-square&label=%20) |\n",
55+
"| [ChatHuggingFace](https://python.langchain.com/api_reference/huggingface/chat_models/langchain_huggingface.chat_models.huggingface.ChatHuggingFace.html) | [langchain-huggingface](https://python.langchain.com/api_reference/huggingface/index.html) | βœ… | ❌ | ❌ | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_huggingface?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_huggingface?style=flat-square&label=%20) |\n",
5656
"\n",
5757
"### Model features\n",
5858
"| [Tool calling](/docs/how_to/tool_calling) | [Structured output](/docs/how_to/structured_output/) | JSON mode | [Image input](/docs/how_to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/docs/how_to/chat_streaming/) | Native async | [Token usage](/docs/how_to/chat_token_usage_tracking/) | [Logprobs](/docs/how_to/logprobs/) |\n",
@@ -61,7 +61,7 @@
6161
"\n",
6262
"## Setup\n",
6363
"\n",
64-
"To access `langchain_huggingface` models you'll need to create a/an `Hugging Face` account, get an API key, and install the `langchain_huggingface` integration package.\n",
64+
"To access `langchain_huggingface` models you'll need to create a `Hugging Face` account, get an API key, and install the `langchain-huggingface` integration package.\n",
6565
"\n",
6666
"### Credentials\n",
6767
"\n",

β€Ždocs/docs/integrations/chat/mistralai.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"\n",
2525
"| Class | Package | Local | Serializable | [JS support](https://js.langchain.com/docs/integrations/chat/mistral) | Package downloads | Package latest |\n",
2626
"| :--- | :--- | :---: | :---: | :---: | :---: | :---: |\n",
27-
"| [ChatMistralAI](https://python.langchain.com/api_reference/mistralai/chat_models/langchain_mistralai.chat_models.ChatMistralAI.html) | [langchain_mistralai](https://python.langchain.com/api_reference/mistralai/index.html) | ❌ | beta | βœ… | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_mistralai?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_mistralai?style=flat-square&label=%20) |\n",
27+
"| [ChatMistralAI](https://python.langchain.com/api_reference/mistralai/chat_models/langchain_mistralai.chat_models.ChatMistralAI.html) | [langchain-mistralai](https://python.langchain.com/api_reference/mistralai/index.html) | ❌ | beta | βœ… | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_mistralai?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_mistralai?style=flat-square&label=%20) |\n",
2828
"\n",
2929
"### Model features\n",
3030
"| [Tool calling](/docs/how_to/tool_calling) | [Structured output](/docs/how_to/structured_output/) | JSON mode | [Image input](/docs/how_to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/docs/how_to/chat_streaming/) | Native async | [Token usage](/docs/how_to/chat_token_usage_tracking/) | [Logprobs](/docs/how_to/logprobs/) |\n",
@@ -34,7 +34,7 @@
3434
"## Setup\n",
3535
"\n",
3636
"\n",
37-
"To access `ChatMistralAI` models you'll need to create a Mistral account, get an API key, and install the `langchain_mistralai` integration package.\n",
37+
"To access `ChatMistralAI` models you'll need to create a Mistral account, get an API key, and install the `langchain-mistralai` integration package.\n",
3838
"\n",
3939
"### Credentials\n",
4040
"\n",
@@ -80,7 +80,7 @@
8080
"source": [
8181
"### Installation\n",
8282
"\n",
83-
"The LangChain Mistral integration lives in the `langchain_mistralai` package:"
83+
"The LangChain Mistral integration lives in the `langchain-mistralai` package:"
8484
]
8585
},
8686
{
@@ -90,7 +90,7 @@
9090
"metadata": {},
9191
"outputs": [],
9292
"source": [
93-
"%pip install -qU langchain_mistralai"
93+
"%pip install -qU langchain-mistralai"
9494
]
9595
},
9696
{

β€Ždocs/docs/integrations/chat/nvidia_ai_endpoints.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"\n",
4242
"| Class | Package | Local | Serializable | JS support | Package downloads | Package latest |\n",
4343
"| :--- | :--- | :---: | :---: | :---: | :---: | :---: |\n",
44-
"| [ChatNVIDIA](https://python.langchain.com/api_reference/nvidia_ai_endpoints/chat_models/langchain_nvidia_ai_endpoints.chat_models.ChatNVIDIA.html) | [langchain_nvidia_ai_endpoints](https://python.langchain.com/api_reference/nvidia_ai_endpoints/index.html) | βœ… | beta | ❌ | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_nvidia_ai_endpoints?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_nvidia_ai_endpoints?style=flat-square&label=%20) |\n",
44+
"| [ChatNVIDIA](https://python.langchain.com/api_reference/nvidia_ai_endpoints/chat_models/langchain_nvidia_ai_endpoints.chat_models.ChatNVIDIA.html) | [langchain-nvidia-ai-endpoints](https://python.langchain.com/api_reference/nvidia_ai_endpoints/index.html) | βœ… | beta | ❌ | ![PyPI - Downloads](https://img.shields.io/pypi/dm/langchain_nvidia_ai_endpoints?style=flat-square&label=%20) | ![PyPI - Version](https://img.shields.io/pypi/v/langchain_nvidia_ai_endpoints?style=flat-square&label=%20) |\n",
4545
"\n",
4646
"### Model features\n",
4747
"| [Tool calling](/docs/how_to/tool_calling) | [Structured output](/docs/how_to/structured_output/) | JSON mode | [Image input](/docs/how_to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/docs/how_to/chat_streaming/) | Native async | [Token usage](/docs/how_to/chat_token_usage_tracking/) | [Logprobs](/docs/how_to/logprobs/) |\n",
@@ -102,7 +102,7 @@
102102
"source": [
103103
"### Installation\n",
104104
"\n",
105-
"The LangChain NVIDIA AI Endpoints integration lives in the `langchain_nvidia_ai_endpoints` package:"
105+
"The LangChain NVIDIA AI Endpoints integration lives in the `langchain-nvidia-ai-endpoints` package:"
106106
]
107107
},
108108
{

β€Ždocs/docs/integrations/document_loaders/agentql.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
"outputs": [],
7171
"source": [
72-
"%pip install -qU langchain_agentql"
72+
"%pip install -qU langchain-agentql"
7373
]
7474
},
7575
{

β€Ždocs/docs/integrations/document_loaders/azure_ai_data.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
28-
"%pip install --upgrade --quiet azureml-fsspec, azure-ai-generative"
28+
"%pip install --upgrade --quiet azureml-fsspec azure-ai-generative"
2929
]
3030
},
3131
{

β€Ždocs/docs/integrations/document_loaders/bshtml.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"\n",
1717
"| Class | Package | Local | Serializable | JS support|\n",
1818
"| :--- | :--- | :---: | :---: | :---: |\n",
19-
"| [BSHTMLLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.html_bs.BSHTMLLoader.html) | [langchain_community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | ❌ | \n",
19+
"| [BSHTMLLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.html_bs.BSHTMLLoader.html) | [langchain-community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | ❌ | \n",
2020
"### Loader features\n",
2121
"| Source | Document Lazy Loading | Native Async Support\n",
2222
"| :---: | :---: | :---: | \n",
@@ -52,7 +52,7 @@
5252
"source": [
5353
"### Installation\n",
5454
"\n",
55-
"Install **langchain_community** and **bs4**."
55+
"Install **langchain-community** and **bs4**."
5656
]
5757
},
5858
{
@@ -61,7 +61,7 @@
6161
"metadata": {},
6262
"outputs": [],
6363
"source": [
64-
"%pip install -qU langchain_community bs4"
64+
"%pip install -qU langchain-community bs4"
6565
]
6666
},
6767
{

β€Ždocs/docs/integrations/document_loaders/docling.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@
245245
}
246246
],
247247
"source": [
248-
"%pip install -q --progress-bar off --no-warn-conflicts langchain-core langchain-huggingface langchain_milvus langchain python-dotenv"
248+
"%pip install -q --progress-bar off --no-warn-conflicts langchain-core langchain-huggingface langchain-milvus langchain python-dotenv"
249249
]
250250
},
251251
{

β€Ždocs/docs/integrations/document_loaders/firecrawl.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"\n",
1616
"| Class | Package | Local | Serializable | [JS support](https://js.langchain.com/docs/integrations/document_loaders/web_loaders/firecrawl/)|\n",
1717
"| :--- | :--- | :---: | :---: | :---: |\n",
18-
"| [FireCrawlLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.firecrawl.FireCrawlLoader.html) | [langchain_community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | βœ… | \n",
18+
"| [FireCrawlLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.firecrawl.FireCrawlLoader.html) | [langchain-community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | βœ… | \n",
1919
"### Loader features\n",
2020
"| Source | Document Lazy Loading | Native Async Support\n",
2121
"| :---: | :---: | :---: | \n",

β€Ždocs/docs/integrations/document_loaders/json.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"\n",
1616
"| Class | Package | Local | Serializable | [JS support](https://js.langchain.com/docs/integrations/document_loaders/file_loaders/json/)|\n",
1717
"| :--- | :--- | :---: | :---: | :---: |\n",
18-
"| [JSONLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.json_loader.JSONLoader.html) | [langchain_community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | βœ… | \n",
18+
"| [JSONLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.json_loader.JSONLoader.html) | [langchain-community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | βœ… | \n",
1919
"### Loader features\n",
2020
"| Source | Document Lazy Loading | Native Async Support\n",
2121
"| :---: | :---: | :---: | \n",
@@ -51,7 +51,7 @@
5151
"source": [
5252
"### Installation\n",
5353
"\n",
54-
"Install **langchain_community** and **jq**:"
54+
"Install **langchain-community** and **jq**:"
5555
]
5656
},
5757
{
@@ -60,7 +60,7 @@
6060
"metadata": {},
6161
"outputs": [],
6262
"source": [
63-
"%pip install -qU langchain_community jq "
63+
"%pip install -qU langchain-community jq "
6464
]
6565
},
6666
{

β€Ždocs/docs/integrations/document_loaders/mathpix.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"\n",
1414
"| Class | Package | Local | Serializable | JS support|\n",
1515
"| :--- | :--- | :---: | :---: | :---: |\n",
16-
"| [MathPixPDFLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.pdf.MathpixPDFLoader.html) | [langchain_community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | ❌ | \n",
16+
"| [MathPixPDFLoader](https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.pdf.MathpixPDFLoader.html) | [langchain-community](https://python.langchain.com/api_reference/community/index.html) | βœ… | ❌ | ❌ | \n",
1717
"### Loader features\n",
1818
"| Source | Document Lazy Loading | Native Async Support\n",
1919
"| :---: | :---: | :---: | \n",
@@ -60,7 +60,7 @@
6060
"source": [
6161
"### Installation\n",
6262
"\n",
63-
"Install **langchain_community**."
63+
"Install **langchain-community**."
6464
]
6565
},
6666
{
@@ -69,7 +69,7 @@
6969
"metadata": {},
7070
"outputs": [],
7171
"source": [
72-
"%pip install -qU langchain_community"
72+
"%pip install -qU langchain-community"
7373
]
7474
},
7575
{

0 commit comments

Comments
Β (0)