mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 14:18:52 +00:00
Update README and vectorstore path for multi-modal template (#14473)
This commit is contained in:
parent
6da0cfea0e
commit
6fbfc375b9
@ -69,9 +69,9 @@ langchain app add rag-chroma-multi-modal
|
|||||||
|
|
||||||
And add the following code to your `server.py` file:
|
And add the following code to your `server.py` file:
|
||||||
```python
|
```python
|
||||||
from rag_chroma import chain as rag_chroma_chain
|
from rag_chroma_multi_modal import chain as rag_chroma_multi_modal_chain
|
||||||
|
|
||||||
add_routes(app, rag_chroma_chain, path="/rag-chroma-multi-modal")
|
add_routes(app, rag_chroma_multi_modal_chain, path="/rag-chroma-multi-modal")
|
||||||
```
|
```
|
||||||
|
|
||||||
(Optional) Let's now configure LangSmith.
|
(Optional) Let's now configure LangSmith.
|
||||||
|
@ -101,7 +101,7 @@ def multi_modal_rag_chain(retriever):
|
|||||||
# Load chroma
|
# Load chroma
|
||||||
vectorstore_mmembd = Chroma(
|
vectorstore_mmembd = Chroma(
|
||||||
collection_name="multi-modal-rag",
|
collection_name="multi-modal-rag",
|
||||||
persist_directory=str(Path(__file__).parent / "chroma_db_multi_modal"),
|
persist_directory=str(Path(__file__).parent.parent / "chroma_db_multi_modal"),
|
||||||
embedding_function=OpenCLIPEmbeddings(
|
embedding_function=OpenCLIPEmbeddings(
|
||||||
model_name="ViT-H-14", checkpoint="laion2b_s32b_b79k"
|
model_name="ViT-H-14", checkpoint="laion2b_s32b_b79k"
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user