- logs
- stats
- system
- settings
- plugins
- user
- provider
- pipelines
- platform
- files
- knowledge
获取流水线信息
测试中
GET
/api/v1/pipelines/{uuid}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
uuid
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/pipelines/'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"data": {
"pipeline": {
"config": {
"ai": {
"dashscope-app-api": {
"api-key": "your-api-key",
"app-id": "your-app-id",
"app-type": "agent",
"references-quote": "参考资料来自:"
},
"dify-service-api": {
"api-key": "your-api-key",
"app-type": "chat",
"base-url": "https://api.dify.ai/v1",
"thinking-convert": "plain",
"timeout": 30
},
"local-agent": {
"max-round": 10,
"model": "1e16773d-a47c-4f5e-acac-764fa27b75b8",
"prompt": [
{
"content": "You are a helpful assistant.",
"role": "system"
}
]
},
"runner": {
"runner": "local-agent"
}
},
"output": {
"force-delay": {
"max": 0,
"min": 0
},
"long-text-processing": {
"font-path": "",
"strategy": "forward",
"threshold": 1000
},
"misc": {
"at-sender": true,
"hide-exception": true,
"quote-origin": true,
"track-function-calls": false
}
},
"safety": {
"content-filter": {
"check-sensitive-words": true,
"scope": "all"
},
"rate-limit": {
"limitation": 60,
"strategy": "drop",
"window-length": 60
}
},
"trigger": {
"access-control": {
"blacklist": [],
"mode": "blacklist",
"whitelist": []
},
"group-respond-rules": {
"at": true,
"prefix": [
"ai"
],
"random": 0.0,
"regexp": []
},
"ignore-rules": {
"prefix": [],
"regexp": []
}
}
},
"created_at": "2025-04-16T05:54:08",
"description": "默认对话配置流水线",
"for_version": "v4.0.0",
"is_default": true,
"name": "Chat Pipeline",
"stages": [
"GroupRespondRuleCheckStage",
"BanSessionCheckStage",
"PreContentFilterStage",
"PreProcessor",
"ConversationMessageTruncator",
"RequireRateLimitOccupancy",
"MessageProcessor",
"ReleaseRateLimitOccupancy",
"PostContentFilterStage",
"ResponseWrapper",
"LongTextProcessStage",
"SendResponseBackStage"
],
"updated_at": "2025-04-27T13:59:30",
"uuid": "5291f2a0-e8a1-4d4b-8cce-b6131c491aa6"
}
},
"msg": "ok"
}
修改于 2025-03-26 15:41:03