mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
27 lines
546 B
YAML
27 lines
546 B
YAML
apiVersion: v1
|
|
kind: LLMAPIRequester
|
|
metadata:
|
|
name: deepseek-chat-completions
|
|
label:
|
|
en_US: DeepSeek
|
|
zh_CN: 深度求索
|
|
spec:
|
|
config:
|
|
- name: base_url
|
|
label:
|
|
en_US: Base URL
|
|
zh_CN: 基础 URL
|
|
type: string
|
|
required: true
|
|
default: "https://api.deepseek.com"
|
|
- name: timeout
|
|
label:
|
|
en_US: Timeout
|
|
zh_CN: 超时时间
|
|
type: integer
|
|
required: true
|
|
default: 120
|
|
execution:
|
|
python:
|
|
path: ./deepseekchatcmpl.py
|
|
attr: DeepseekChatCompletions |