chore: enrich pyproject.toml files with links to new references, others (#33343)

This commit is contained in:
Mason Daugherty
2025-10-07 16:17:14 -04:00
committed by GitHub
parent 02f4256cb6
commit cda336295f
37 changed files with 159 additions and 621 deletions

View File

@@ -2,23 +2,4 @@
This package contains the LangChain integration with the DeepSeek API
## Installation
```bash
pip install -U langchain-deepseek
```
And you should configure credentials by setting the following environment variables:
* `DEEPSEEK_API_KEY`
## Chat Models
`ChatDeepSeek` class exposes chat models from DeepSeek.
```python
from langchain_deepseek import ChatDeepSeek
llm = ChatDeepSeek(model="deepseek-chat")
llm.invoke("Sing a ballad of LangChain.")
```
View the [documentation](https://docs.langchain.com/oss/python/integrations/providers/deepseek) for more details.