langchain-deepseek


Namelangchain-deepseek JSON
Version 0.1.4 PyPI version JSON
download
home_pageNone
SummaryAn integration package connecting DeepSeek and LangChain
upload_time2025-07-22 17:37:42
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # langchain-deepseek

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.")
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "langchain-deepseek",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/8a/64/15fe061165574b3ba80011d96cb3f428f9e6f5631cd76058b028333023db/langchain_deepseek-0.1.4.tar.gz",
    "platform": null,
    "description": "# langchain-deepseek\n\nThis package contains the LangChain integration with the DeepSeek API\n\n## Installation\n\n```bash\npip install -U langchain-deepseek\n```\n\nAnd you should configure credentials by setting the following environment variables:\n\n* `DEEPSEEK_API_KEY`\n\n## Chat Models\n\n`ChatDeepSeek` class exposes chat models from DeepSeek.\n\n```python\nfrom langchain_deepseek import ChatDeepSeek\n\nllm = ChatDeepSeek(model=\"deepseek-chat\")\nllm.invoke(\"Sing a ballad of LangChain.\")\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An integration package connecting DeepSeek and LangChain",
    "version": "0.1.4",
    "project_urls": {
        "Release Notes": "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-deepseek%3D%3D0%22&expanded=true",
        "Source Code": "https://github.com/langchain-ai/langchain/tree/master/libs/partners/deepseek",
        "repository": "https://github.com/langchain-ai/langchain"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39d30da6f3f5548e1a771d0500e17da723996f8ba1398bcef7198a2ecbca6e1b",
                "md5": "97c8822e1269d5b2dac9d82d20c11e88",
                "sha256": "9ce3dbfc7a40f221657ffe31e8623ea6e397f6c90de2a58d38204ac63e8f41ff"
            },
            "downloads": -1,
            "filename": "langchain_deepseek-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "97c8822e1269d5b2dac9d82d20c11e88",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 7440,
            "upload_time": "2025-07-22T17:37:41",
            "upload_time_iso_8601": "2025-07-22T17:37:41.618764Z",
            "url": "https://files.pythonhosted.org/packages/39/d3/0da6f3f5548e1a771d0500e17da723996f8ba1398bcef7198a2ecbca6e1b/langchain_deepseek-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a6415fe061165574b3ba80011d96cb3f428f9e6f5631cd76058b028333023db",
                "md5": "c1f65cd5a812d770559c8a187fc77546",
                "sha256": "dc105138aee4fce03badd0521e69d5508b37f5c087d92b3e8481ffb8f9563d33"
            },
            "downloads": -1,
            "filename": "langchain_deepseek-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c1f65cd5a812d770559c8a187fc77546",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 8937,
            "upload_time": "2025-07-22T17:37:42",
            "upload_time_iso_8601": "2025-07-22T17:37:42.798553Z",
            "url": "https://files.pythonhosted.org/packages/8a/64/15fe061165574b3ba80011d96cb3f428f9e6f5631cd76058b028333023db/langchain_deepseek-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-22 17:37:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "langchain-ai",
    "github_project": "langchain",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "langchain-deepseek"
}
        
Elapsed time: 1.40723s