langchain/docs/integrations/cohere.md
Leonid Ganeline b201cfaa0f
docs ecosystem/integrations update 4 (#5590)
# docs `ecosystem/integrations` update 4

Added missed integrations. Fixed inconsistencies. 

## Who can review?

@hwchase17 
@dev2049
2023-06-03 15:29:03 -07:00

1021 B

Cohere

Cohere is a Canadian startup that provides natural language processing models that help companies improve human-machine interactions.

Installation and Setup

  • Install the Python SDK :
pip install cohere

Get a Cohere api key and set it as an environment variable (COHERE_API_KEY)

LLM

There exists an Cohere LLM wrapper, which you can access with See a usage example.

from langchain.llms import Cohere

Text Embedding Model

There exists an Cohere Embedding model, which you can access with

from langchain.embeddings import CohereEmbeddings

For a more detailed walkthrough of this, see this notebook

Retriever

See a usage example.

from langchain.retrievers.document_compressors import CohereRerank