forked from Archives/langchain
4be2f9d75a
seems linkchecker isn't catching them because it runs on generated html. at that point the links are already missing. the generation process seems to strip invalid references when they can't be re-written from md to html. I used https://github.com/tcort/markdown-link-check to check the doc source directly. There are a few false positives on localhost for development.
740 B
740 B
Cohere
This page covers how to use the Cohere ecosystem within LangChain. It is broken into two parts: installation and setup, and then references to specific Cohere wrappers.
Installation and Setup
- Install the Python SDK with
pip install cohere
- Get an Cohere api key and set it as an environment variable (
COHERE_API_KEY
)
Wrappers
LLM
There exists an Cohere LLM wrapper, which you can access with
from langchain.llms import Cohere
Embeddings
There exists an Cohere Embeddings wrapper, which you can access with
from langchain.embeddings import CohereEmbeddings
For a more detailed walkthrough of this, see this notebook