Metadata-Version: 2.4
Name: polyllm-deepseek
Version: 0.1.0
Summary: DeepSeek plugin for PolyLLM.
Author: PolyLLM contributors
License-Expression: MIT
Project-URL: Homepage, https://polyllm.raingpt.top
Project-URL: Repository, https://github.com/you-want/PolyLLM
Project-URL: Issues, https://github.com/you-want/PolyLLM/issues
Keywords: llm,polyllm,deepseek
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: polyllm-core>=0.1.0
Requires-Dist: polyllm-openai-compatible>=0.1.0
Dynamic: license-file

# PolyLLM DeepSeek Plugin for Python

```python
from polyllm_core import create_llm
from polyllm_deepseek import DeepSeekPlugin

llm = create_llm(plugins=[DeepSeekPlugin()], providers={"deepseek": {"api_key": "..."}})
response = await llm.chat("deepseek:deepseek-chat", messages=[{"role": "user", "content": "你好"}])
```
