Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
sepiatone committed Apr 2, 2024
1 parent 7f17100 commit bd2ba9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/docs/integrations/providers/cohere.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ Get a [Cohere api key](https://dashboard.cohere.ai/) and set it as an environmen

|API|description|Endpoint docs|Import|Usage Examples|
| --- | --- | --- | --- | --- |
|Chat|Build chat bots|[chat](https://docs.cohere.com/reference/chat)|'from langchain_cohere.chat_models import ChatCohere` | [Chat Model](/docs/integrations/chat/cohere) |
|LLM (legacy)|Generate text|[generate](https://docs.cohere.com/reference/generate)|'from langchain_cohere.llms import Cohere` | [LLM model](/docs/integrations/llms/cohere) |
|RAG Retriever|Connect to external data sources|[chat + rag](https://docs.cohere.com/reference/chat)|'from langchain_cohere.rag_retrievers import CohereRagRetriever` | [RAG Retriever](/docs/integrations/retrievers/cohere) |
|Text Embedding|Embed strings to vectors|[embed](https://docs.cohere.com/reference/embed)|'from langchain_cohere.embeddings import CohereEmbeddings` | [Text Embeddings model](/docs/integrations/text_embedding/cohere) |
|Rerank Retriever|Rank strings based on relevance|[rerank](https://docs.cohere.com/reference/rerank)|'from langchain_cohere.rerank import CohereRerank` | [Reranker](/docs/integrations/retrievers/cohere-reranker) |
|Chat|Build chat bots|[chat](https://docs.cohere.com/reference/chat)|`from langchain_cohere.chat_models import ChatCohere` | [Chat Model](/docs/integrations/chat/cohere) |
|LLM (legacy)|Generate text|[generate](https://docs.cohere.com/reference/generate)|`from langchain_cohere.llms import Cohere` | [LLM model](/docs/integrations/llms/cohere) |
|RAG Retriever|Connect to external data sources|[chat + rag](https://docs.cohere.com/reference/chat)|`from langchain_cohere.rag_retrievers import CohereRagRetriever` | [RAG Retriever](/docs/integrations/retrievers/cohere) |
|Text Embedding|Embed strings to vectors|[embed](https://docs.cohere.com/reference/embed)|`from langchain_cohere.embeddings import CohereEmbeddings` | [Text Embeddings model](/docs/integrations/text_embedding/cohere) |
|Rerank Retriever|Rank strings based on relevance|[rerank](https://docs.cohere.com/reference/rerank)|`from langchain_cohere.rerank import CohereRerank` | [Reranker](/docs/integrations/retrievers/cohere-reranker) |


## Quick copy examples
Expand Down

0 comments on commit bd2ba9c

Please sign in to comment.