Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Oct 16, 2024
1 parent 455c760 commit a76f22f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/integrations/providers/milvus.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Install the Python SDK:

```bash
pip install pymilvus langchain-milvus
pip install langchain-milvus
```

## Vector Store
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/integrations/providers/mongodb_atlas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ from langchain_mongodb import MongoDBAtlasVectorSearch
> Lucene’s standard (`BM25`) analyzer.
```python
from langchain_mongodb.retrievers.full_text_search import MongoDBAtlasFullTextSearchRetriever
from langchain_mongodb.retrievers import MongoDBAtlasFullTextSearchRetriever
```

### Hybrid Search Retriever
Expand All @@ -39,7 +39,7 @@ from langchain_mongodb.retrievers.full_text_search import MongoDBAtlasFullTextSe
> them the via `Reciprocal Rank Fusion` (`RRF`) algorithm.
```python
from langchain_mongodb.retrievers.hybrid_search import MongoDBAtlasHybridSearchRetriever
from langchain_mongodb.retrievers import MongoDBAtlasHybridSearchRetriever
```

## Model Caches
Expand Down

0 comments on commit a76f22f

Please sign in to comment.