You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/oss/contributing/implement-langchain.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Your integration package will typically implement a subclass of at least one of
33
33
Retrievers are used to retrieve documents from APIs, databases, or other sources based on a query. The Retriever class must inherit from the BaseRetriever base class.
34
34
35
35
<Warning>
36
-
The retriever integration guide is currently WIP. In the meantime, read the [retriever conceptual guide](/oss/langchain/retrievers) for details on how LangChain retrievers function.
36
+
The retriever integration guide is currently WIP. In the meantime, read the [retriever conceptual guide](/oss/integrations/retrievers) for details on how LangChain retrievers function.
37
37
</Warning>
38
38
</Tab>
39
39
<Tabtitle="Vector Stores">
@@ -42,14 +42,14 @@ Your integration package will typically implement a subclass of at least one of
42
42
See the [vector store integration guide](/oss/integrations/vectorstores) for details on implementing a vector store integration.
43
43
44
44
<Warning>
45
-
The vector store integration guide is currently WIP. In the meantime, read the [vector store conceptual guide](/oss/langchain/vectorstores) for details on how LangChain vector stores function.
45
+
The vector store integration guide is currently WIP. In the meantime, read the [vector store conceptual guide](/oss/integrations/vectorstores) for details on how LangChain vector stores function.
46
46
</Warning>
47
47
</Tab>
48
48
<Tabtitle="Embeddings">
49
49
Embedding models are subclasses of the [`Embeddings`](https://python.langchain.com/api_reference/core/embeddings/langchain_core.embeddings.embeddings.Embeddings.html) class.
50
50
51
51
<Warning>
52
-
The embedding model integration guide is currently WIP. In the meantime, read the [embedding model conceptual guide](/oss/langchain/text_embedding) for details on how LangChain embedding models function.
52
+
The embedding model integration guide is currently WIP. In the meantime, read the [embedding model conceptual guide](/oss/integrations/text_embedding) for details on how LangChain embedding models function.
0 commit comments