Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Langchain imports #219

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion fern/pages/integrations/cohere-and-langchain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ Cohere [has first class support for LangChain](https://python.langchain.com/docs

To use LangChain and Cohere you will need:

- LangChain Package. To install it, run `pip install langchain`. If you run into any issues or want more details, [see this doc](https://python.langchain.com/docs/get_started/installation).
- LangChain package. To install it, run `pip install langchain`.

- LangChain Package. To install it, run:
- `pip install langchain`
- `pip install langchain-cohere` (to use the Cohere integrations in LangChain)
- Optional: `pip install langchain-community` (to access third-party integrations such as web search APIs)
- Cohere's SDK. To install it, run `pip install cohere`. If you run into any issues or want more details on Cohere's SDK, [see this wiki](https://github.com/cohere-ai/cohere-python).
- A Cohere API Key. For more details on pricing [see this page](https://cohere.com/pricing). When you create an account with Cohere, we automatically create a trial API key for you. This key will be available on the dashboard where you can copy it, and it's in the dashboard section called "API Keys" as well.

Expand Down
Loading