Skip to content

Commit 14264e9

Browse files
authored
Merge branch 'master' into pprados/02-pymupdf
2 parents 90085e4 + 1a38948 commit 14264e9

File tree

11 files changed

+451
-9
lines changed

11 files changed

+451
-9
lines changed

docs/docs/concepts/retrievers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ LangChain has retrievers for many popular lexical search algorithms / engines.
9090
### Vector store
9191

9292
[Vector stores](/docs/concepts/vectorstores/) are a powerful and efficient way to index and retrieve unstructured data.
93-
An vectorstore can be used as a retriever by calling the `as_retriever()` method.
93+
A vectorstore can be used as a retriever by calling the `as_retriever()` method.
9494

9595
```python
9696
vectorstore = MyVectorStore()
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# FMP Data (Financial Data Prep)
2+
3+
> [FMP-Data](https://pypi.org/project/fmp-data/) is a python package for connecting to
4+
> Financial Data Prep API. It simplifies how you can access production quality data.
5+
6+
7+
## Installation and Setup
8+
9+
Get an `FMP Data` API key by
10+
visiting [this page](https://site.financialmodelingprep.com/pricing-plans?couponCode=mehdi).
11+
and set it as an environment variable (`FMP_API_KEY`).
12+
13+
Then, install [langchain-fmp-data](https://pypi.org/project/langchain-fmp-data/).
14+
15+
## Tools
16+
17+
See an [example](https://github.com/MehdiZare/langchain-fmp-data/tree/main/docs).
18+
19+
```python
20+
from langchain_fmp_data import FMPDataTool, FMPDataToolkit
21+
```

docs/docs/integrations/retrievers/elasticsearch_retriever.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"source": [
108108
"### Configure\n",
109109
"\n",
110-
"Here we define the conncection to Elasticsearch. In this example we use a locally running instance. Alternatively, you can make an account in [Elastic Cloud](https://cloud.elastic.co/) and start a [free trial](https://www.elastic.co/cloud/cloud-trial-overview)."
110+
"Here we define the connection to Elasticsearch. In this example we use a locally running instance. Alternatively, you can make an account in [Elastic Cloud](https://cloud.elastic.co/) and start a [free trial](https://www.elastic.co/cloud/cloud-trial-overview)."
111111
]
112112
},
113113
{

0 commit comments

Comments
 (0)