mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
92a5f00ffb
- added missed integration to `docs/ecosystem/integrations/` - updated notebooks to consistent format: changed titles, file names; added descriptions #### Who can review? @hwchase17 @dev2049
27 lines
822 B
Markdown
27 lines
822 B
Markdown
# Anthropic
|
|
|
|
>[Anthropic](https://en.wikipedia.org/wiki/Anthropic) is an American artificial intelligence (AI) startup and
|
|
> public-benefit corporation, founded by former members of OpenAI. `Anthropic` specializes in developing general AI
|
|
> systems and language models, with a company ethos of responsible AI usage.
|
|
> `Anthropic` develops a chatbot, named `Claude`. Similar to `ChatGPT`, `Claude` uses a messaging
|
|
> interface where users can submit questions or requests and receive highly detailed and relevant responses.
|
|
|
|
## Installation and Setup
|
|
|
|
|
|
```bash
|
|
pip install anthropic
|
|
```
|
|
|
|
See the [setup documentation](https://console.anthropic.com/docs/access).
|
|
|
|
|
|
|
|
## Chat Models
|
|
|
|
See a [usage example](../modules/models/chat/integrations/anthropic.ipynb)
|
|
|
|
```python
|
|
from langchain.chat_models import ChatAnthropic
|
|
```
|