Skip to content

Commit 882c90d

Browse files
authored
Merge branch 'master' into pprados/02-pymupdf
2 parents d012d60 + 1cd4d8d commit 882c90d

File tree

10 files changed

+666
-15
lines changed

10 files changed

+666
-15
lines changed

.github/scripts/prep_api_docs_build.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ def main():
8282
and p["repo"] != "langchain-ai/langchain"
8383
])
8484

85+
# Delete ones without a pyproject.toml
86+
for partner in Path("langchain/libs/partners").iterdir():
87+
if partner.is_dir() and not (partner / "pyproject.toml").exists():
88+
print(f"Removing {partner} as it does not have a pyproject.toml")
89+
shutil.rmtree(partner)
90+
8591
print("Library sync completed successfully!")
8692

8793
except Exception as e:

docs/docs/integrations/providers/dappier.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,14 @@ See a [usage example](/docs/integrations/retrievers/dappier).
4646
```python
4747
from langchain_dappier import DappierRetriever
4848
```
49+
50+
## Tool
51+
52+
See a [usage example](/docs/integrations/tools/dappier).
53+
54+
```python
55+
from langchain_dappier import (
56+
DappierRealTimeSearchTool,
57+
DappierAIRecommendationTool
58+
)
59+
```

docs/docs/integrations/retrievers/dappier.ipynb

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,6 @@
2525
"\n",
2626
"This will help you getting started with the Dappier [retriever](https://python.langchain.com/docs/concepts/retrievers/). For detailed documentation of all DappierRetriever features and configurations head to the [API reference](https://python.langchain.com/en/latest/retrievers/langchain_dappier.retrievers.Dappier.DappierRetriever.html).\n",
2727
"\n",
28-
"### Integration details\n",
29-
"\n",
30-
"Bring-your-own data (i.e., index and search a custom corpus of documents):\n",
31-
"\n",
32-
"| Retriever | Self-host | Cloud offering | Package |\n",
33-
"| :--- | :--- | :---: | :---: |\n",
34-
"[DappierRetriever](https://python.langchain.com/en/latest/retrievers/langchain_dappier.retrievers.Dappier.DappierRetriever.html) | ❌ | ❌ | langchain-dappier |\n",
35-
"\n",
3628
"### Setup\n",
3729
"\n",
3830
"Install ``langchain-dappier`` and set environment variable ``DAPPIER_API_KEY``.\n",

0 commit comments

Comments
 (0)