mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
173 lines
4.5 KiB
YAML
173 lines
4.5 KiB
YAML
name: ai
|
||
label:
|
||
en_US: AI Feature
|
||
zh_Hans: AI 能力
|
||
stages:
|
||
- name: runner
|
||
label:
|
||
en_US: Runner
|
||
zh_Hans: 运行方式
|
||
description:
|
||
en_US: Strategy to call AI to process messages
|
||
zh_Hans: 调用 AI 处理消息的方式
|
||
config:
|
||
- name: runner
|
||
label:
|
||
en_US: Runner
|
||
zh_Hans: 运行器
|
||
type: select
|
||
required: true
|
||
default: local-agent
|
||
options:
|
||
- name: local-agent
|
||
label:
|
||
en_US: Embedded Agent
|
||
zh_Hans: 内置 Agent
|
||
- name: dify-service-api
|
||
label:
|
||
en_US: Dify Service API
|
||
zh_Hans: Dify 服务 API
|
||
- name: dashscope-app-api
|
||
label:
|
||
en_US: Aliyun Dashscope App API
|
||
zh_Hans: 阿里云百炼平台 API
|
||
- name: local-agent
|
||
label:
|
||
en_US: Embedded Agent
|
||
zh_Hans: 内置 Agent
|
||
description:
|
||
en_US: Configure the embedded agent of the pipeline
|
||
zh_Hans: 配置内置 Agent
|
||
config:
|
||
- name: model
|
||
label:
|
||
en_US: Model
|
||
zh_Hans: 模型
|
||
type: llm-model-selector
|
||
required: true
|
||
- name: max-round
|
||
label:
|
||
en_US: Max Round
|
||
zh_Hans: 最大回合数
|
||
description:
|
||
en_US: The maximum number of previous messages that the agent can remember
|
||
zh_Hans: 最大前文消息回合数
|
||
type: integer
|
||
required: true
|
||
default: 10
|
||
- name: prompt
|
||
label:
|
||
en_US: Prompt
|
||
zh_Hans: 提示词
|
||
description:
|
||
en_US: The prompt of the agent
|
||
zh_Hans: 除非您了解消息结构,否则请只使用 system 单提示词
|
||
type: prompt-editor
|
||
required: true
|
||
- name: dify-service-api
|
||
label:
|
||
en_US: Dify Service API
|
||
zh_Hans: Dify 服务 API
|
||
description:
|
||
en_US: Configure the Dify service API of the pipeline
|
||
zh_Hans: 配置 Dify 服务 API
|
||
config:
|
||
- name: base-url
|
||
label:
|
||
en_US: Base URL
|
||
zh_Hans: 基础 URL
|
||
type: string
|
||
required: true
|
||
- name: app-type
|
||
label:
|
||
en_US: App Type
|
||
zh_Hans: 应用类型
|
||
type: select
|
||
required: true
|
||
default: chat
|
||
options:
|
||
- name: chat
|
||
label:
|
||
en_US: Chat
|
||
zh_Hans: 聊天(包括Chatflow)
|
||
- name: agent
|
||
label:
|
||
en_US: Agent
|
||
zh_Hans: Agent
|
||
- name: workflow
|
||
label:
|
||
en_US: Workflow
|
||
zh_Hans: 工作流
|
||
- name: api-key
|
||
label:
|
||
en_US: API Key
|
||
zh_Hans: API 密钥
|
||
type: string
|
||
required: true
|
||
- name: thinking-convert
|
||
label:
|
||
en_US: CoT Convert
|
||
zh_Hans: 思维链转换策略
|
||
type: select
|
||
required: true
|
||
default: plain
|
||
options:
|
||
- name: plain
|
||
label:
|
||
en_US: Convert to <think>...</think>
|
||
zh_Hans: 转换成 <think>...</think>
|
||
- name: original
|
||
label:
|
||
en_US: Original
|
||
zh_Hans: 原始
|
||
- name: remove
|
||
label:
|
||
en_US: Remove
|
||
zh_Hans: 移除
|
||
- name: dashscope-app-api
|
||
label:
|
||
en_US: Aliyun Dashscope App API
|
||
zh_Hans: 阿里云百炼平台 API
|
||
description:
|
||
en_US: Configure the Aliyun Dashscope App API of the pipeline
|
||
zh_Hans: 配置阿里云百炼平台 API
|
||
config:
|
||
- name: app-type
|
||
label:
|
||
en_US: App Type
|
||
zh_Hans: 应用类型
|
||
type: select
|
||
required: true
|
||
default: agent
|
||
options:
|
||
- name: agent
|
||
label:
|
||
en_US: Agent
|
||
zh_Hans: Agent
|
||
- name: workflow
|
||
label:
|
||
en_US: Workflow
|
||
zh_Hans: 工作流
|
||
- name: api-key
|
||
label:
|
||
en_US: API Key
|
||
zh_Hans: API 密钥
|
||
type: string
|
||
required: true
|
||
- name: app-id
|
||
label:
|
||
en_US: App ID
|
||
zh_Hans: 应用 ID
|
||
type: string
|
||
required: true
|
||
- name: references_quote
|
||
label:
|
||
en_US: References Quote
|
||
zh_Hans: 引用文本
|
||
description:
|
||
en_US: The text prompt when the references are included
|
||
zh_Hans: 包含引用资料时的文本提示
|
||
type: string
|
||
required: false
|
||
default: '参考资料来自:'
|