awesome-deepseek-integration/docs/zenfeed/README_cn.md
2025-04-28 17:49:47 +08:00

15 lines
620 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# zenfeed 与 DeepSeek 集成
zenfeed 支持通过在其配置文件的 `llms` 部分进行设置,来使用 DeepSeek 模型执行摘要、语义分析等任务。
## 配置方法
要使用 DeepSeek请在你的配置文件中的 `llms` 列表下添加一个条目。以下是一个示例:
```yaml
llms:
- name: my-deepseek-chat # 为此配置指定一个唯一的名称
provider: deepseek # 指定提供商为 deepseek
api_key: sk-xxxxxxxxxxx # 替换为你的 DeepSeek API 密钥
model: deepseek-chat # 指定所需的 DeepSeek 模型例如deepseek-chat, deepseek-coder
```