Chatbot 和 Agent
- 对话消息
- 文件操作
- 消息反馈
- 会话管理
- 语音与文字转换
- 应用配置
Chatflow
- 对话消息
- 文件操作
- 消息反馈
- 会话管理
- 语音与文字转换
- 应用配置
- 标注管理
工作流
- 工作流执行
- 文件操作 (Workflow)
- 应用配置 (Workflow)
文本生成
- 文本生成
- 文件管理
- 反馈
- 语音服务
- 应用设置
- 标注管理
应用设置
获取应用参数
用于进入页面一开始,获取功能开关、输入参数名称、类型及默认值等使用。
GET
/
parameters
{
"opening_statement": "nice to meet you",
"suggested_questions": [
"<string>"
],
"suggested_questions_after_answer": {
"enabled": true
},
"speech_to_text": {
"enabled": true
},
"retriever_resource": {
"enabled": true
},
"annotation_reply": {
"enabled": true
},
"user_input_form": [
{
"text-input": {
"label": "<string>",
"variable": "<string>",
"required": true,
"default": "<string>",
"max_length": 123
}
}
],
"file_upload": {
"image": {
"enabled": true,
"number_limits": 123,
"detail": "<string>",
"transfer_methods": [
"remote_url"
]
}
},
"system_parameters": {
"file_size_limit": 123,
"image_file_size_limit": 123,
"audio_file_size_limit": 123,
"video_file_size_limit": 123
}
}
Authorizations
API-Key 鉴权。所有 API 请求都应在 Authorization
HTTP Header 中包含您的 API-Key,格式为 Bearer {API_KEY}
。强烈建议开发者把 API-Key 放在后端存储,而非分享或者放在客户端存储,以免 API-Key 泄露,导致财产损失。
Response
200 - application/json
应用的参数信息。
应用参数信息。
Was this page helpful?
{
"opening_statement": "nice to meet you",
"suggested_questions": [
"<string>"
],
"suggested_questions_after_answer": {
"enabled": true
},
"speech_to_text": {
"enabled": true
},
"retriever_resource": {
"enabled": true
},
"annotation_reply": {
"enabled": true
},
"user_input_form": [
{
"text-input": {
"label": "<string>",
"variable": "<string>",
"required": true,
"default": "<string>",
"max_length": 123
}
}
],
"file_upload": {
"image": {
"enabled": true,
"number_limits": 123,
"detail": "<string>",
"transfer_methods": [
"remote_url"
]
}
},
"system_parameters": {
"file_size_limit": 123,
"image_file_size_limit": 123,
"audio_file_size_limit": 123,
"video_file_size_limit": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.