template_advanced_chat.zh.mdx 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  1. import { CodeGroup } from '../code.tsx'
  2. import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
  3. # 工作流编排对话型应用 API
  4. 对话应用支持会话持久化,可将之前的聊天记录作为上下文进行回答,可适用于聊天/客服 AI 等。
  5. <div>
  6. ### 基础 URL
  7. <CodeGroup title="Code" targetCode={props.appDetail.api_base_url}>
  8. ```javascript
  9. ```
  10. </CodeGroup>
  11. ### 鉴权
  12. Service API 使用 `API-Key` 进行鉴权。
  13. <i>**强烈建议开发者把 `API-Key` 放在后端存储,而非分享或者放在客户端存储,以免 `API-Key` 泄露,导致财产损失。**</i>
  14. 所有 API 请求都应在 **`Authorization`** HTTP Header 中包含您的 `API-Key`,如下所示:
  15. <CodeGroup title="Code">
  16. ```javascript
  17. Authorization: Bearer {API_KEY}
  18. ```
  19. </CodeGroup>
  20. </div>
  21. ---
  22. <Heading
  23. url='/chat-messages'
  24. method='POST'
  25. title='发送对话消息'
  26. name='#Create-Chat-Message'
  27. />
  28. <Row>
  29. <Col>
  30. 创建会话消息。
  31. ### Request Body
  32. <Properties>
  33. <Property name='query' type='string' key='query'>
  34. 用户输入/提问内容。
  35. </Property>
  36. <Property name='inputs' type='object' key='inputs'>
  37. 允许传入 App 定义的各变量值。
  38. inputs 参数包含了多组键值对(Key/Value pairs),每组的键对应一个特定变量,每组的值则是该变量的具体值。
  39. 如果变量是文件类型,请指定一个包含以下 `files` 中所述键的对象。
  40. 默认 `{}`
  41. </Property>
  42. <Property name='response_mode' type='string' key='response_mode'>
  43. - `streaming` 流式模式(推荐)。基于 SSE(**[Server-Sent Events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events)**)实现类似打字机输出方式的流式返回。
  44. - `blocking` 阻塞模式,等待执行完毕后返回结果。(请求若流程较长可能会被中断)。
  45. <i>由于 Cloudflare 限制,请求会在 100 秒超时无返回后中断。</i>
  46. </Property>
  47. <Property name='user' type='string' key='user'>
  48. 用户标识,用于定义终端用户的身份,方便检索、统计。
  49. 由开发者定义规则,需保证用户标识在应用内唯一。
  50. </Property>
  51. <Property name='conversation_id' type='string' key='conversation_id'>
  52. (选填)会话 ID,需要基于之前的聊天记录继续对话,必须传之前消息的 conversation_id。
  53. </Property>
  54. <Property name='files' type='array[object]' key='files'>
  55. 文件列表,适用于传入文件结合文本理解并回答问题,仅当模型支持 Vision 能力时可用。
  56. - `type` (string) 支持类型:
  57. - `document` 具体类型包含:'TXT', 'MD', 'MARKDOWN', 'PDF', 'HTML', 'XLSX', 'XLS', 'DOCX', 'CSV', 'EML', 'MSG', 'PPTX', 'PPT', 'XML', 'EPUB'
  58. - `image` 具体类型包含:'JPG', 'JPEG', 'PNG', 'GIF', 'WEBP', 'SVG'
  59. - `audio` 具体类型包含:'MP3', 'M4A', 'WAV', 'WEBM', 'AMR'
  60. - `video` 具体类型包含:'MP4', 'MOV', 'MPEG', 'MPGA'
  61. - `custom` 具体类型包含:其他文件类型
  62. - `transfer_method` (string) 传递方式:
  63. - `remote_url`: 图片地址。
  64. - `local_file`: 上传文件。
  65. - `url` 图片地址。(仅当传递方式为 `remote_url` 时)。
  66. - `upload_file_id` 上传文件 ID。(仅当传递方式为 `local_file `时)。
  67. </Property>
  68. <Property name='auto_generate_name' type='bool' key='auto_generate_name'>
  69. (选填)自动生成标题,默认 `true`。 若设置为 `false`,则可通过调用会话重命名接口并设置 `auto_generate` 为 `true` 实现异步生成标题。
  70. </Property>
  71. </Properties>
  72. ### Response
  73. <Properties>
  74. 当 `response_mode` 为 `blocking` 时,返回 ChatCompletionResponse object。
  75. 当 `response_mode` 为 `streaming`时,返回 ChunkChatCompletionResponse object 流式序列。
  76. ### ChatCompletionResponse
  77. 返回完整的 App 结果,`Content-Type` 为 `application/json`。
  78. - `message_id` (string) 消息唯一 ID
  79. - `conversation_id` (string) 会话 ID
  80. - `mode` (string) App 模式,固定为 chat
  81. - `answer` (string) 完整回复内容
  82. - `metadata` (object) 元数据
  83. - `usage` (Usage) 模型用量信息
  84. - `retriever_resources` (array[RetrieverResource]) 引用和归属分段列表
  85. - `created_at` (int) 消息创建时间戳,如:1705395332
  86. ### ChunkChatCompletionResponse
  87. 返回 App 输出的流式块,`Content-Type` 为 `text/event-stream`。
  88. 每个流式块均为 data: 开头,块之间以 \n\n 即两个换行符分隔,如下所示:
  89. <CodeGroup>
  90. ```streaming {{ title: 'Response' }}
  91. data: {"event": "message", "task_id": "900bbd43-dc0b-4383-a372-aa6e6c414227", "id": "663c5084-a254-4040-8ad3-51f2a3c1a77c", "answer": "Hi", "created_at": 1705398420}\n\n
  92. ```
  93. </CodeGroup>
  94. 流式块中根据 event 不同,结构也不同:
  95. - `event: message` LLM 返回文本块事件,即:完整的文本以分块的方式输出。
  96. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  97. - `message_id` (string) 消息唯一 ID
  98. - `conversation_id` (string) 会话 ID
  99. - `answer` (string) LLM 返回文本块内容
  100. - `created_at` (int) 创建时间戳,如:1705395332
  101. - `event: message_file` 文件事件,表示有新文件需要展示
  102. - `id` (string) 文件唯一ID
  103. - `type` (string) 文件类型,目前仅为image
  104. - `belongs_to` (string) 文件归属,user或assistant,该接口返回仅为 `assistant`
  105. - `url` (string) 文件访问地址
  106. - `conversation_id` (string) 会话ID
  107. - `event: message_end` 消息结束事件,收到此事件则代表流式返回结束。
  108. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  109. - `message_id` (string) 消息唯一 ID
  110. - `conversation_id` (string) 会话 ID
  111. - `metadata` (object) 元数据
  112. - `usage` (Usage) 模型用量信息
  113. - `retriever_resources` (array[RetrieverResource]) 引用和归属分段列表
  114. - `event: tts_message` TTS 音频流事件,即:语音合成输出。内容是Mp3格式的音频块,使用 base64 编码后的字符串,播放的时候直接解码即可。(开启自动播放才有此消息)
  115. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  116. - `message_id` (string) 消息唯一 ID
  117. - `audio` (string) 语音合成之后的音频块使用 Base64 编码之后的文本内容,播放的时候直接 base64 解码送入播放器即可
  118. - `created_at` (int) 创建时间戳,如:1705395332
  119. - `event: tts_message_end` TTS 音频流结束事件,收到这个事件表示音频流返回结束。
  120. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  121. - `message_id` (string) 消息唯一 ID
  122. - `audio` (string) 结束事件是没有音频的,所以这里是空字符串
  123. - `created_at` (int) 创建时间戳,如:1705395332
  124. - `event: message_replace` 消息内容替换事件。
  125. 开启内容审查和审查输出内容时,若命中了审查条件,则会通过此事件替换消息内容为预设回复。
  126. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  127. - `message_id` (string) 消息唯一 ID
  128. - `conversation_id` (string) 会话 ID
  129. - `answer` (string) 替换内容(直接替换 LLM 所有回复文本)
  130. - `created_at` (int) 创建时间戳,如:1705395332
  131. - `event: workflow_started` workflow 开始执行
  132. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  133. - `workflow_run_id` (string) workflow 执行 ID
  134. - `event` (string) 固定为 `workflow_started`
  135. - `data` (object) 详细内容
  136. - `id` (string) workflow 执行 ID
  137. - `workflow_id` (string) 关联 Workflow ID
  138. - `sequence_number` (int) 自增序号,App 内自增,从 1 开始
  139. - `created_at` (timestamp) 开始时间
  140. - `event: node_started` node 开始执行
  141. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  142. - `workflow_run_id` (string) workflow 执行 ID
  143. - `event` (string) 固定为 `node_started`
  144. - `data` (object) 详细内容
  145. - `id` (string) workflow 执行 ID
  146. - `node_id` (string) 节点 ID
  147. - `node_type` (string) 节点类型
  148. - `title` (string) 节点名称
  149. - `index` (int) 执行序号,用于展示 Tracing Node 顺序
  150. - `predecessor_node_id` (string) 前置节点 ID,用于画布展示执行路径
  151. - `inputs` (object) 节点中所有使用到的前置节点变量内容
  152. - `created_at` (timestamp) 开始时间
  153. - `event: node_finished` node 执行结束,成功失败同一事件中不同状态
  154. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  155. - `workflow_run_id` (string) workflow 执行 ID
  156. - `event` (string) 固定为 `node_finished`
  157. - `data` (object) 详细内容
  158. - `id` (string) node 执行 ID
  159. - `node_id` (string) 节点 ID
  160. - `index` (int) 执行序号,用于展示 Tracing Node 顺序
  161. - `predecessor_node_id` (string) optional 前置节点 ID,用于画布展示执行路径
  162. - `inputs` (object) 节点中所有使用到的前置节点变量内容
  163. - `process_data` (json) Optional 节点过程数据
  164. - `outputs` (json) Optional 输出内容
  165. - `status` (string) 执行状态 `running` / `succeeded` / `failed` / `stopped`
  166. - `error` (string) Optional 错误原因
  167. - `elapsed_time` (float) Optional 耗时(s)
  168. - `execution_metadata` (json) 元数据
  169. - `total_tokens` (int) optional 总使用 tokens
  170. - `total_price` (decimal) optional 总费用
  171. - `currency` (string) optional 货币,如 `USD` / `RMB`
  172. - `created_at` (timestamp) 开始时间
  173. - `event: workflow_finished` workflow 执行结束,成功失败同一事件中不同状态
  174. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  175. - `workflow_run_id` (string) workflow 执行 ID
  176. - `event` (string) 固定为 `workflow_finished`
  177. - `data` (object) 详细内容
  178. - `id` (string) workflow 执行 ID
  179. - `workflow_id` (string) 关联 Workflow ID
  180. - `status` (string) 执行状态 `running` / `succeeded` / `failed` / `stopped`
  181. - `outputs` (json) Optional 输出内容
  182. - `error` (string) Optional 错误原因
  183. - `elapsed_time` (float) Optional 耗时(s)
  184. - `total_tokens` (int) Optional 总使用 tokens
  185. - `total_steps` (int) 总步数(冗余),默认 0
  186. - `created_at` (timestamp) 开始时间
  187. - `finished_at` (timestamp) 结束时间
  188. - `event: error`
  189. 流式输出过程中出现的异常会以 stream event 形式输出,收到异常事件后即结束。
  190. - `task_id` (string) 任务 ID,用于请求跟踪和下方的停止响应接口
  191. - `message_id` (string) 消息唯一 ID
  192. - `status` (int) HTTP 状态码
  193. - `code` (string) 错误码
  194. - `message` (string) 错误消息
  195. - `event: ping` 每 10s 一次的 ping 事件,保持连接存活。
  196. ### Errors
  197. - 404,对话不存在
  198. - 400,`invalid_param`,传入参数异常
  199. - 400,`app_unavailable`,App 配置不可用
  200. - 400,`provider_not_initialize`,无可用模型凭据配置
  201. - 400,`provider_quota_exceeded`,模型调用额度不足
  202. - 400,`model_currently_not_support`,当前模型不可用
  203. - 400,`completion_request_error`,文本生成失败
  204. - 500,服务内部异常
  205. </Properties>
  206. </Col>
  207. <Col sticky>
  208. <CodeGroup title="Request" tag="POST" label="/chat-messages" targetCode={`curl -X POST '${props.appDetail.api_base_url}/chat-messages' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n "inputs": ${JSON.stringify(props.inputs)},\n "query": "What are the specs of the iPhone 13 Pro Max?",\n "response_mode": "streaming",\n "conversation_id": "",\n "user": "abc-123",\n "files": [\n {\n "type": "image",\n "transfer_method": "remote_url",\n "url": "https://cloud.dify.ai/logo/logo-site.png"\n }\n ]\n}'`}>
  209. ```bash {{ title: 'cURL' }}
  210. curl -X POST '${props.appDetail.api_base_url}/chat-messages' \
  211. -H 'Authorization: Bearer {api_key}' \
  212. -H 'Content-Type: application/json' \
  213. --data-raw '{
  214. "inputs": {
  215. "name": "dify"
  216. },
  217. "query": "What are the specs of the iPhone 13 Pro Max?",
  218. "conversation_id": "101b4c97-fc2e-463c-90b1-5261a4cdcafb",
  219. "response_mode": "streaming",
  220. "user": "abc-123",
  221. "files": [
  222. {
  223. "type": "image",
  224. "transfer_method": "remote_url",
  225. "url": "https://cloud.dify.ai/logo/logo-site.png"
  226. }
  227. ]
  228. }'
  229. ```
  230. </CodeGroup>
  231. ### 阻塞模式
  232. <CodeGroup title="Response">
  233. ```json {{ title: 'Response' }}
  234. {
  235. "event": "message",
  236. "message_id": "9da23599-e713-473b-982c-4328d4f5c78a",
  237. "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2",
  238. "mode": "chat",
  239. "answer": "iPhone 13 Pro Max specs are listed here:...",
  240. "metadata": {
  241. "usage": {
  242. "prompt_tokens": 1033,
  243. "prompt_unit_price": "0.001",
  244. "prompt_price_unit": "0.001",
  245. "prompt_price": "0.0010330",
  246. "completion_tokens": 128,
  247. "completion_unit_price": "0.002",
  248. "completion_price_unit": "0.001",
  249. "completion_price": "0.0002560",
  250. "total_tokens": 1161,
  251. "total_price": "0.0012890",
  252. "currency": "USD",
  253. "latency": 0.7682376249867957
  254. },
  255. "retriever_resources": [
  256. {
  257. "position": 1,
  258. "dataset_id": "101b4c97-fc2e-463c-90b1-5261a4cdcafb",
  259. "dataset_name": "iPhone",
  260. "document_id": "8dd1ad74-0b5f-4175-b735-7d98bbbb4e00",
  261. "document_name": "iPhone List",
  262. "segment_id": "ed599c7f-2766-4294-9d1d-e5235a61270a",
  263. "score": 0.98457545,
  264. "content": "\"Model\",\"Release Date\",\"Display Size\",\"Resolution\",\"Processor\",\"RAM\",\"Storage\",\"Camera\",\"Battery\",\"Operating System\"\n\"iPhone 13 Pro Max\",\"September 24, 2021\",\"6.7 inch\",\"1284 x 2778\",\"Hexa-core (2x3.23 GHz Avalanche + 4x1.82 GHz Blizzard)\",\"6 GB\",\"128, 256, 512 GB, 1TB\",\"12 MP\",\"4352 mAh\",\"iOS 15\""
  265. }
  266. ]
  267. },
  268. "created_at": 1705407629
  269. }
  270. ```
  271. </CodeGroup>
  272. ### 流式模式
  273. <CodeGroup title="Response">
  274. ```streaming {{ title: 'Response' }}
  275. data: {"event": "workflow_started", "task_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "workflow_run_id": "5ad498-f0c7-4085-b384-88cbe6290", "data": {"id": "5ad498-f0c7-4085-b384-88cbe6290", "workflow_id": "dfjasklfjdslag", "sequence_number": 1, "created_at": 1679586595}}
  276. data: {"event": "node_started", "task_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "workflow_run_id": "5ad498-f0c7-4085-b384-88cbe6290", "data": {"id": "5ad498-f0c7-4085-b384-88cbe6290", "node_id": "dfjasklfjdslag", "node_type": "start", "title": "Start", "index": 0, "predecessor_node_id": "fdljewklfklgejlglsd", "inputs": {}, "created_at": 1679586595}}
  277. data: {"event": "node_finished", "task_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "workflow_run_id": "5ad498-f0c7-4085-b384-88cbe6290", "data": {"id": "5ad498-f0c7-4085-b384-88cbe6290", "node_id": "dfjasklfjdslag", "node_type": "start", "title": "Start", "index": 0, "predecessor_node_id": "fdljewklfklgejlglsd", "inputs": {}, "outputs": {}, "status": "succeeded", "elapsed_time": 0.324, "execution_metadata": {"total_tokens": 63127864, "total_price": 2.378, "currency": "USD"}, "created_at": 1679586595}}
  278. data: {"event": "workflow_finished", "task_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "workflow_run_id": "5ad498-f0c7-4085-b384-88cbe6290", "data": {"id": "5ad498-f0c7-4085-b384-88cbe6290", "workflow_id": "dfjasklfjdslag", "outputs": {}, "status": "succeeded", "elapsed_time": 0.324, "total_tokens": 63127864, "total_steps": "1", "created_at": 1679586595, "finished_at": 1679976595}}
  279. data: {"event": "message", "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": " I", "created_at": 1679586595}
  280. data: {"event": "message", "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": "'m", "created_at": 1679586595}
  281. data: {"event": "message", "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": " glad", "created_at": 1679586595}
  282. data: {"event": "message", "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": " to", "created_at": 1679586595}
  283. data: {"event": "message", "message_id" : "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": " meet", "created_at": 1679586595}
  284. data: {"event": "message", "message_id" : "5ad4cb98-f0c7-4085-b384-88c403be6290", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "answer": " you", "created_at": 1679586595}
  285. data: {"event": "message_end", "id": "5e52ce04-874b-4d27-9045-b3bc80def685", "conversation_id": "45701982-8118-4bc5-8e9b-64562b4555f2", "metadata": {"usage": {"prompt_tokens": 1033, "prompt_unit_price": "0.001", "prompt_price_unit": "0.001", "prompt_price": "0.0010330", "completion_tokens": 135, "completion_unit_price": "0.002", "completion_price_unit": "0.001", "completion_price": "0.0002700", "total_tokens": 1168, "total_price": "0.0013030", "currency": "USD", "latency": 1.381760165997548}, "retriever_resources": [{"position": 1, "dataset_id": "101b4c97-fc2e-463c-90b1-5261a4cdcafb", "dataset_name": "iPhone", "document_id": "8dd1ad74-0b5f-4175-b735-7d98bbbb4e00", "document_name": "iPhone List", "segment_id": "ed599c7f-2766-4294-9d1d-e5235a61270a", "score": 0.98457545, "content": "\"Model\",\"Release Date\",\"Display Size\",\"Resolution\",\"Processor\",\"RAM\",\"Storage\",\"Camera\",\"Battery\",\"Operating System\"\n\"iPhone 13 Pro Max\",\"September 24, 2021\",\"6.7 inch\",\"1284 x 2778\",\"Hexa-core (2x3.23 GHz Avalanche + 4x1.82 GHz Blizzard)\",\"6 GB\",\"128, 256, 512 GB, 1TB\",\"12 MP\",\"4352 mAh\",\"iOS 15\""}]}}
  286. data: {"event": "tts_message", "conversation_id": "23dd85f3-1a41-4ea0-b7a9-062734ccfaf9", "message_id": "a8bdc41c-13b2-4c18-bfd9-054b9803038c", "created_at": 1721205487, "task_id": "3bf8a0bb-e73b-4690-9e66-4e429bad8ee7", "audio": "qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq"}
  287. data: {"event": "tts_message_end", "conversation_id": "23dd85f3-1a41-4ea0-b7a9-062734ccfaf9", "message_id": "a8bdc41c-13b2-4c18-bfd9-054b9803038c", "created_at": 1721205487, "task_id": "3bf8a0bb-e73b-4690-9e66-4e429bad8ee7", "audio": ""}
  288. ```
  289. </CodeGroup>
  290. </Col>
  291. </Row>
  292. ---
  293. <Heading
  294. url='/files/upload'
  295. method='POST'
  296. title='上传文件'
  297. name='#files-upload'
  298. />
  299. <Row>
  300. <Col>
  301. 上传文件并在发送消息时使用,可实现图文多模态理解。
  302. 支持您的应用程序所支持的所有格式。
  303. <i>上传的文件仅供当前终端用户使用。</i>
  304. ### Request Body
  305. 该接口需使用 `multipart/form-data` 进行请求。
  306. <Properties>
  307. <Property name='file' type='file' key='file'>
  308. 要上传的文件。
  309. </Property>
  310. <Property name='user' type='string' key='user'>
  311. 用户标识,用于定义终端用户的身份,必须和发送消息接口传入 user 保持一致。
  312. </Property>
  313. </Properties>
  314. ### Response
  315. 成功上传后,服务器会返回文件的 ID 和相关信息。
  316. - `id` (uuid) ID
  317. - `name` (string) 文件名
  318. - `size` (int) 文件大小(byte)
  319. - `extension` (string) 文件后缀
  320. - `mime_type` (string) 文件 mime-type
  321. - `created_by` (uuid) 上传人 ID
  322. - `created_at` (timestamp) 上传时间
  323. ### Errors
  324. - 400,`no_file_uploaded`,必须提供文件
  325. - 400,`too_many_files`,目前只接受一个文件
  326. - 400,`unsupported_preview`,该文件不支持预览
  327. - 400,`unsupported_estimate`,该文件不支持估算
  328. - 413,`file_too_large`,文件太大
  329. - 415,`unsupported_file_type`,不支持的扩展名,当前只接受文档类文件
  330. - 503,`s3_connection_failed`,无法连接到 S3 服务
  331. - 503,`s3_permission_denied`,无权限上传文件到 S3
  332. - 503,`s3_file_too_large`,文件超出 S3 大小限制
  333. </Col>
  334. <Col sticky>
  335. <CodeGroup title="Request" tag="POST" label="/files/upload" targetCode={`curl -X POST '${props.appDetail.api_base_url}/files/upload' \\\n--header 'Authorization: Bearer {api_key}' \\\n--form 'file=@localfile;type=image/[png|jpeg|jpg|webp|gif] \\\n--form 'user=abc-123'`}>
  336. ```bash {{ title: 'cURL' }}
  337. curl -X POST '${props.appDetail.api_base_url}/files/upload' \
  338. --header 'Authorization: Bearer {api_key}' \
  339. --form 'file=@"/path/to/file"'
  340. ```
  341. </CodeGroup>
  342. <CodeGroup title="Response">
  343. ```json {{ title: 'Response' }}
  344. {
  345. "id": "72fa9618-8f89-4a37-9b33-7e1178a24a67",
  346. "name": "example.png",
  347. "size": 1024,
  348. "extension": "png",
  349. "mime_type": "image/png",
  350. "created_by": 123,
  351. "created_at": 1577836800,
  352. }
  353. ```
  354. </CodeGroup>
  355. </Col>
  356. </Row>
  357. ---
  358. <Heading
  359. url='/chat-messages/:task_id/stop'
  360. method='POST'
  361. title='停止响应'
  362. name='#Stop'
  363. />
  364. <Row>
  365. <Col>
  366. 仅支持流式模式。
  367. ### Path
  368. - `task_id` (string) 任务 ID,可在流式返回 Chunk 中获取
  369. ### Request Body
  370. - `user` (string) Required
  371. 用户标识,用于定义终端用户的身份,必须和发送消息接口传入 user 保持一致。
  372. ### Response
  373. - `result` (string) 固定返回 success
  374. </Col>
  375. <Col sticky>
  376. <CodeGroup title="Request" tag="POST" label="/chat-messages/:task_id/stop" targetCode={`curl -X POST '${props.appDetail.api_base_url}/chat-messages/:task_id/stop' \\\n-H 'Authorization: Bearer {api_key}' \\\n-H 'Content-Type: application/json' \\\n--data-raw '{ "user": "abc-123"}'`}>
  377. ```bash {{ title: 'cURL' }}
  378. curl -X POST '${props.appDetail.api_base_url}/chat-messages/:task_id/stop' \
  379. -H 'Authorization: Bearer {api_key}' \
  380. -H 'Content-Type: application/json' \
  381. --data-raw '{
  382. "user": "abc-123"
  383. }'
  384. ```
  385. </CodeGroup>
  386. <CodeGroup title="Response">
  387. ```json {{ title: 'Response' }}
  388. {
  389. "result": "success"
  390. }
  391. ```
  392. </CodeGroup>
  393. </Col>
  394. </Row>
  395. ---
  396. <Heading
  397. url='/messages/:message_id/feedbacks'
  398. method='POST'
  399. title='消息反馈(点赞)'
  400. name='#feedbacks'
  401. />
  402. <Row>
  403. <Col>
  404. 消息终端用户反馈、点赞,方便应用开发者优化输出预期。
  405. ### Path Params
  406. <Properties>
  407. <Property name='message_id' type='string' key='message_id'>
  408. 消息 ID
  409. </Property>
  410. </Properties>
  411. ### Request Body
  412. <Properties>
  413. <Property name='rating' type='string' key='rating'>
  414. 点赞 like, 点踩 dislike, 撤销点赞 null
  415. </Property>
  416. <Property name='user' type='string' key='user'>
  417. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  418. </Property>
  419. <Property name='content' type='string' key='content'>
  420. 消息反馈的具体信息。
  421. </Property>
  422. </Properties>
  423. ### Response
  424. - `result` (string) 固定返回 success
  425. </Col>
  426. <Col sticky>
  427. <CodeGroup title="Request" tag="POST" label="/messages/:message_id/feedbacks" targetCode={`curl -X POST '${props.appDetail.api_base_url}/messages/:message_id/feedbacks \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n "rating": "like",\n "user": "abc-123",\n "content": "message feedback information"\n}'`}>
  428. ```bash {{ title: 'cURL' }}
  429. curl -X POST '${props.appDetail.api_base_url}/messages/:message_id/feedbacks' \
  430. --header 'Authorization: Bearer {api_key}' \
  431. --header 'Content-Type: application/json' \
  432. --data-raw '{
  433. "rating": "like",
  434. "user": "abc-123",
  435. "content": "message feedback information"
  436. }'
  437. ```
  438. </CodeGroup>
  439. <CodeGroup title="Response">
  440. ```json {{ title: 'Response' }}
  441. {
  442. "result": "success"
  443. }
  444. ```
  445. </CodeGroup>
  446. </Col>
  447. </Row>
  448. ---
  449. <Heading
  450. url='/messages/{message_id}/suggested'
  451. method='GET'
  452. title='获取下一轮建议问题列表'
  453. name='#suggested'
  454. />
  455. <Row>
  456. <Col>
  457. 获取下一轮建议问题列表。
  458. ### Path Params
  459. <Properties>
  460. <Property name='message_id' type='string' key='message_id'>
  461. Message ID
  462. </Property>
  463. </Properties>
  464. ### Query
  465. <Properties>
  466. <Property name='user' type='string' key='user'>
  467. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  468. </Property>
  469. </Properties>
  470. </Col>
  471. <Col sticky>
  472. <CodeGroup title="Request" tag="GET" label="/messages/{message_id}/suggested" targetCode={`curl --location --request GET '${props.appDetail.api_base_url}/messages/{message_id}/suggested?user=abc-123 \\\n--header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \\\n--header 'Content-Type: application/json'`}>
  473. ```bash {{ title: 'cURL' }}
  474. curl --location --request GET '${props.appDetail.api_base_url}/messages/{message_id}/suggested'?user=abc-123 \
  475. --header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \
  476. --header 'Content-Type: application/json' \
  477. ```
  478. </CodeGroup>
  479. <CodeGroup title="Response">
  480. ```json {{ title: 'Response' }}
  481. {
  482. "result": "success",
  483. "data": [
  484. "a",
  485. "b",
  486. "c"
  487. ]
  488. }
  489. ```
  490. </CodeGroup>
  491. </Col>
  492. </Row>
  493. ---
  494. ---
  495. <Heading
  496. url='/messages'
  497. method='GET'
  498. title='获取会话历史消息'
  499. name='#messages'
  500. />
  501. <Row>
  502. <Col>
  503. 滚动加载形式返回历史聊天记录,第一页返回最新 `limit` 条,即:倒序返回。
  504. ### Query
  505. <Properties>
  506. <Property name='conversation_id' type='string' key='conversation_id'>
  507. 会话 ID
  508. </Property>
  509. <Property name='user' type='string' key='user'>
  510. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  511. </Property>
  512. <Property name='first_id' type='string' key='first_id'>
  513. 当前页第一条聊天记录的 ID,默认 null
  514. </Property>
  515. <Property name='limit' type='int' key='limit'>
  516. 一次请求返回多少条聊天记录,默认 20 条。
  517. </Property>
  518. </Properties>
  519. ### Response
  520. - `data` (array[object]) 消息列表
  521. - `id` (string) 消息 ID
  522. - `conversation_id` (string) 会话 ID
  523. - `inputs` (object) 用户输入参数。
  524. - `query` (string) 用户输入 / 提问内容。
  525. - `message_files` (array[object]) 消息文件
  526. - `id` (string) ID
  527. - `type` (string) 文件类型,image 图片
  528. - `url` (string) 预览图片地址
  529. - `belongs_to` (string) 文件归属方,user 或 assistant
  530. - `answer` (string) 回答消息内容
  531. - `created_at` (timestamp) 创建时间
  532. - `feedback` (object) 反馈信息
  533. - `rating` (string) 点赞 like / 点踩 dislike
  534. - `retriever_resources` (array[RetrieverResource]) 引用和归属分段列表
  535. - `has_more` (bool) 是否存在下一页
  536. - `limit` (int) 返回条数,若传入超过系统限制,返回系统限制数量
  537. </Col>
  538. <Col sticky>
  539. ### Request Example
  540. <CodeGroup title="Request" tag="GET" label="/messages" targetCode={`curl -X GET '${props.appDetail.api_base_url}/messages?user=abc-123&conversation_id=' \\\n--header 'Authorization: Bearer {api_key}'`}>
  541. ```bash {{ title: 'cURL' }}
  542. curl -X GET '${props.appDetail.api_base_url}/messages?user=abc-123&conversation_id='
  543. --header 'Authorization: Bearer {api_key}'
  544. ```
  545. </CodeGroup>
  546. ### Response Example
  547. <CodeGroup title="Response">
  548. ```json {{ title: 'Response' }}
  549. {
  550. "limit": 20,
  551. "has_more": false,
  552. "data": [
  553. {
  554. "id": "a076a87f-31e5-48dc-b452-0061adbbc922",
  555. "conversation_id": "cd78daf6-f9e4-4463-9ff2-54257230a0ce",
  556. "inputs": {
  557. "name": "dify"
  558. },
  559. "query": "iphone 13 pro",
  560. "answer": "The iPhone 13 Pro, released on September 24, 2021, features a 6.1-inch display with a resolution of 1170 x 2532. It is equipped with a Hexa-core (2x3.23 GHz Avalanche + 4x1.82 GHz Blizzard) processor, 6 GB of RAM, and offers storage options of 128 GB, 256 GB, 512 GB, and 1 TB. The camera is 12 MP, the battery capacity is 3095 mAh, and it runs on iOS 15.",
  561. "message_files": [],
  562. "feedback": null,
  563. "retriever_resources": [
  564. {
  565. "position": 1,
  566. "dataset_id": "101b4c97-fc2e-463c-90b1-5261a4cdcafb",
  567. "dataset_name": "iPhone",
  568. "document_id": "8dd1ad74-0b5f-4175-b735-7d98bbbb4e00",
  569. "document_name": "iPhone List",
  570. "segment_id": "ed599c7f-2766-4294-9d1d-e5235a61270a",
  571. "score": 0.98457545,
  572. "content": "\"Model\",\"Release Date\",\"Display Size\",\"Resolution\",\"Processor\",\"RAM\",\"Storage\",\"Camera\",\"Battery\",\"Operating System\"\n\"iPhone 13 Pro Max\",\"September 24, 2021\",\"6.7 inch\",\"1284 x 2778\",\"Hexa-core (2x3.23 GHz Avalanche + 4x1.82 GHz Blizzard)\",\"6 GB\",\"128, 256, 512 GB, 1TB\",\"12 MP\",\"4352 mAh\",\"iOS 15\""
  573. }
  574. ],
  575. "created_at": 1705569239
  576. }
  577. ]
  578. }
  579. ```
  580. </CodeGroup>
  581. ### Response Example(智能助手)
  582. <CodeGroup title="Response">
  583. ```json {{ title: 'Response' }}
  584. {
  585. "limit": 20,
  586. "has_more": false,
  587. "data": [
  588. {
  589. "id": "d35e006c-7c4d-458f-9142-be4930abdf94",
  590. "conversation_id": "957c068b-f258-4f89-ba10-6e8a0361c457",
  591. "inputs": {},
  592. "query": "draw a cat",
  593. "answer": "I have generated an image of a cat for you. Please check your messages to view the image.",
  594. "message_files": [
  595. {
  596. "id": "976990d2-5294-47e6-8f14-7356ba9d2d76",
  597. "type": "image",
  598. "url": "http://127.0.0.1:5001/files/tools/976990d2-5294-47e6-8f14-7356ba9d2d76.png?timestamp=1705988524&nonce=55df3f9f7311a9acd91bf074cd524092&sign=z43nMSO1L2HBvoqADLkRxr7Biz0fkjeDstnJiCK1zh8=",
  599. "belongs_to": "assistant"
  600. }
  601. ],
  602. "feedback": null,
  603. "retriever_resources": [],
  604. "created_at": 1705988187
  605. }
  606. ]
  607. }
  608. ```
  609. </CodeGroup>
  610. </Col>
  611. </Row>
  612. ---
  613. <Heading
  614. url='/conversations'
  615. method='GET'
  616. title='获取会话列表'
  617. name='#conversations'
  618. />
  619. <Row>
  620. <Col>
  621. 获取当前用户的会话列表,默认返回最近的 20 条。
  622. ### Query
  623. <Properties>
  624. <Property name='user' type='string' key='user'>
  625. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  626. </Property>
  627. <Property name='last_id' type='string' key='last_id'>
  628. (选填)当前页最后面一条记录的 ID,默认 null
  629. </Property>
  630. <Property name='limit' type='int' key='limit'>
  631. (选填)一次请求返回多少条记录,默认 20 条,最大 100 条,最小 1 条。
  632. </Property>
  633. <Property name='sort_by' type='string' key='sort_by'>
  634. (选填)排序字段,默认 -updated_at(按更新时间倒序排列)
  635. - 可选值:created_at, -created_at, updated_at, -updated_at
  636. - 字段前面的符号代表顺序或倒序,-代表倒序
  637. </Property>
  638. </Properties>
  639. ### Response
  640. - `data` (array[object]) 会话列表
  641. - `id` (string) 会话 ID
  642. - `name` (string) 会话名称,默认由大语言模型生成。
  643. - `inputs` (object) 用户输入参数。
  644. - `status` (string) 会话状态
  645. - `introduction` (string) 开场白
  646. - `created_at` (timestamp) 创建时间
  647. - `updated_at` (timestamp) 更新时间
  648. - `has_more` (bool)
  649. - `limit` (int) 返回条数,若传入超过系统限制,返回系统限制数量
  650. </Col>
  651. <Col sticky>
  652. <CodeGroup title="Request" tag="GET" label="/conversations" targetCode={`curl -X GET '${props.appDetail.api_base_url}/conversations?user=abc-123&last_id=&limit=20'\\\n--header 'Authorization: Bearer {api_key}'`}>
  653. ```bash {{ title: 'cURL' }}
  654. curl -X GET '${props.appDetail.api_base_url}/conversations?user=abc-123&last_id=&limit=20' \
  655. --header 'Authorization: Bearer {api_key}'
  656. ```
  657. </CodeGroup>
  658. <CodeGroup title="Response">
  659. ```json {{ title: 'Response' }}
  660. {
  661. "limit": 20,
  662. "has_more": false,
  663. "data": [
  664. {
  665. "id": "10799fb8-64f7-4296-bbf7-b42bfbe0ae54",
  666. "name": "New chat",
  667. "inputs": {
  668. "book": "book",
  669. "myName": "Lucy"
  670. },
  671. "status": "normal",
  672. "created_at": 1679667915,
  673. "updated_at": 1679667915
  674. },
  675. {
  676. "id": "hSIhXBhNe8X1d8Et"
  677. // ...
  678. }
  679. ]
  680. }
  681. ```
  682. </CodeGroup>
  683. </Col>
  684. </Row>
  685. ---
  686. <Heading
  687. url='/conversations/:conversation_id'
  688. method='DELETE'
  689. title='删除会话'
  690. name='#delete'
  691. />
  692. <Row>
  693. <Col>
  694. 删除会话。
  695. ### Path
  696. - `conversation_id` (string) 会话 ID
  697. ### Request Body
  698. <Properties>
  699. <Property name='user' type='string' key='user'>
  700. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  701. </Property>
  702. </Properties>
  703. ### Response
  704. - `result` (string) 固定返回 success
  705. </Col>
  706. <Col sticky>
  707. <CodeGroup title="Request" tag="DELETE" label="/conversations/:conversation_id" targetCode={`curl -X DELETE '${props.appDetail.api_base_url}/conversations/:conversation_id' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \n "user": "abc-123"\n}'`}>
  708. ```bash {{ title: 'cURL' }}
  709. curl -X DELETE '${props.appDetail.api_base_url}/conversations/{conversation_id}' \
  710. --header 'Content-Type: application/json' \
  711. --header 'Accept: application/json' \
  712. --header 'Authorization: Bearer {api_key}' \
  713. --data '{
  714. "user": "abc-123"
  715. }'
  716. ```
  717. </CodeGroup>
  718. <CodeGroup title="Response">
  719. ```json {{ title: 'Response' }}
  720. {
  721. "result": "success"
  722. }
  723. ```
  724. </CodeGroup>
  725. </Col>
  726. </Row>
  727. ---
  728. <Heading
  729. url='/conversations/:conversation_id/name'
  730. method='POST'
  731. title='会话重命名'
  732. name='#rename'
  733. />
  734. <Row>
  735. <Col>
  736. 对会话进行重命名,会话名称用于显示在支持多会话的客户端上。
  737. ### Path
  738. - `conversation_id` (string) 会话 ID
  739. ### Request Body
  740. <Properties>
  741. <Property name='name' type='string' key='name'>
  742. (选填)名称,若 `auto_generate` 为 `true` 时,该参数可不传。
  743. </Property>
  744. <Property name='auto_generate' type='bool' key='auto_generate'>
  745. (选填)自动生成标题,默认 false。
  746. </Property>
  747. <Property name='user' type='string' key='user'>
  748. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  749. </Property>
  750. </Properties>
  751. ### Response
  752. - `id` (string) 会话 ID
  753. - `name` (string) 会话名称
  754. - `inputs` (object) 用户输入参数
  755. - `status` (string) 会话状态
  756. - `introduction` (string) 开场白
  757. - `created_at` (timestamp) 创建时间
  758. - `updated_at` (timestamp) 更新时间
  759. </Col>
  760. <Col sticky>
  761. <CodeGroup title="Request" tag="POST" label="/conversations/:conversation_id/name" targetCode={`curl -X POST '${props.appDetail.api_base_url}/conversations/:conversation_id/name' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \n "name": "", \n "auto_generate": true, \n "user": "abc-123"\n}'`}>
  762. ```bash {{ title: 'cURL' }}
  763. curl -X POST '${props.appDetail.api_base_url}/conversations/{conversation_id}/name' \
  764. --header 'Authorization: Bearer {api_key}' \
  765. --header 'Content-Type: application/json' \
  766. --data-raw '{
  767. "name": "",
  768. "auto_generate": true,
  769. "user": "abc-123"
  770. }'
  771. ```
  772. </CodeGroup>
  773. <CodeGroup title="Response">
  774. ```json {{ title: 'Response' }}
  775. {
  776. "id": "34d511d5-56de-4f16-a997-57b379508443",
  777. "name": "hello",
  778. "inputs": {},
  779. "status": "normal",
  780. "introduction": "",
  781. "created_at": 1732731141,
  782. "updated_at": 1732734510
  783. }
  784. ```
  785. </CodeGroup>
  786. </Col>
  787. </Row>
  788. ---
  789. <Heading
  790. url='/audio-to-text'
  791. method='POST'
  792. title='语音转文字'
  793. name='#audio'
  794. />
  795. <Row>
  796. <Col>
  797. ### Request Body
  798. 该接口需使用 `multipart/form-data` 进行请求。
  799. <Properties>
  800. <Property name='file' type='file' key='file'>
  801. 语音文件。
  802. 支持格式:`['mp3', 'mp4', 'mpeg', 'mpga', 'm4a', 'wav', 'webm']`
  803. 文件大小限制:15MB
  804. </Property>
  805. <Property name='user' type='string' key='user'>
  806. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  807. </Property>
  808. </Properties>
  809. ### Response
  810. - `text` (string) 输出文字
  811. </Col>
  812. <Col sticky>
  813. <CodeGroup title="Request" tag="POST" label="/audio-to-text" targetCode={`curl -X POST '${props.appDetail.api_base_url}/audio-to-text' \\\n--header 'Authorization: Bearer {api_key}' \\\n--form 'file=@localfile;type=audio/[mp3|mp4|mpeg|mpga|m4a|wav|webm]`}>
  814. ```bash {{ title: 'cURL' }}
  815. curl -X POST '${props.appDetail.api_base_url}/conversations/name' \
  816. --header 'Authorization: Bearer {api_key}' \
  817. --form 'file=@localfile;type=audio/mp3'
  818. ```
  819. </CodeGroup>
  820. <CodeGroup title="Response">
  821. ```json {{ title: 'Response' }}
  822. {
  823. "text": "hello"
  824. }
  825. ```
  826. </CodeGroup>
  827. </Col>
  828. </Row>
  829. ---
  830. <Heading
  831. url='/text-to-audio'
  832. method='POST'
  833. title='文字转语音'
  834. name='#audio'
  835. />
  836. <Row>
  837. <Col>
  838. 文字转语音。
  839. ### Request Body
  840. <Properties>
  841. <Property name='message_id' type='str' key='message_id'>
  842. Dify 生成的文本消息,那么直接传递生成的message-id 即可,后台会通过 message_id 查找相应的内容直接合成语音信息。如果同时传 message_id 和 text,优先使用 message_id。
  843. </Property>
  844. <Property name='text' type='str' key='text'>
  845. 语音生成内容。如果没有传 message-id的话,则会使用这个字段的内容
  846. </Property>
  847. <Property name='user' type='string' key='user'>
  848. 用户标识,由开发者定义规则,需保证用户标识在应用内唯一。
  849. </Property>
  850. </Properties>
  851. </Col>
  852. <Col sticky>
  853. <CodeGroup title="Request" tag="POST" label="/text-to-audio" targetCode={`curl -o text-to-audio.mp3 -X POST '${props.appDetail.api_base_url}/text-to-audio' \\\n--header 'Authorization: Bearer {api_key}' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290",\n "text": "你好Dify",\n "user": "abc-123"\n}'`}>
  854. ```bash {{ title: 'cURL' }}
  855. curl -o text-to-audio.mp3 -X POST '${props.appDetail.api_base_url}/text-to-audio' \
  856. --header 'Authorization: Bearer {api_key}' \
  857. --header 'Content-Type: application/json' \
  858. --data-raw '{
  859. "message_id": "5ad4cb98-f0c7-4085-b384-88c403be6290",
  860. "text": "你好Dify",
  861. "user": "abc-123"
  862. }'
  863. ```
  864. </CodeGroup>
  865. <CodeGroup title="headers">
  866. ```json {{ title: 'headers' }}
  867. {
  868. "Content-Type": "audio/wav"
  869. }
  870. ```
  871. </CodeGroup>
  872. </Col>
  873. </Row>
  874. ---
  875. <Heading
  876. url='/info'
  877. method='GET'
  878. title='获取应用基本信息'
  879. name='#info'
  880. />
  881. <Row>
  882. <Col>
  883. 用于获取应用的基本信息
  884. ### Response
  885. - `name` (string) 应用名称
  886. - `description` (string) 应用描述
  887. - `tags` (array[string]) 应用标签
  888. </Col>
  889. <Col>
  890. <CodeGroup title="Request" tag="GET" label="/info" targetCode={`curl -X GET '${props.appDetail.api_base_url}/info' \\\n-H 'Authorization: Bearer {api_key}'`}>
  891. ```bash {{ title: 'cURL' }}
  892. curl -X GET '${props.appDetail.api_base_url}/info' \
  893. -H 'Authorization: Bearer {api_key}'
  894. ```
  895. </CodeGroup>
  896. <CodeGroup title="Response">
  897. ```json {{ title: 'Response' }}
  898. {
  899. "name": "My App",
  900. "description": "This is my app.",
  901. "tags": [
  902. "tag1",
  903. "tag2"
  904. ]
  905. }
  906. ```
  907. </CodeGroup>
  908. </Col>
  909. </Row>
  910. ---
  911. <Heading
  912. url='/parameters'
  913. method='GET'
  914. title='获取应用参数'
  915. name='#parameters'
  916. />
  917. <Row>
  918. <Col>
  919. 用于进入页面一开始,获取功能开关、输入参数名称、类型及默认值等使用。
  920. ### Response
  921. - `opening_statement` (string) 开场白
  922. - `suggested_questions` (array[string]) 开场推荐问题列表
  923. - `suggested_questions_after_answer` (object) 启用回答后给出推荐问题。
  924. - `enabled` (bool) 是否开启
  925. - `speech_to_text` (object) 语音转文本
  926. - `enabled` (bool) 是否开启
  927. - `retriever_resource` (object) 引用和归属
  928. - `enabled` (bool) 是否开启
  929. - `annotation_reply` (object) 标记回复
  930. - `enabled` (bool) 是否开启
  931. - `user_input_form` (array[object]) 用户输入表单配置
  932. - `text-input` (object) 文本输入控件
  933. - `label` (string) 控件展示标签名
  934. - `variable` (string) 控件 ID
  935. - `required` (bool) 是否必填
  936. - `default` (string) 默认值
  937. - `paragraph` (object) 段落文本输入控件
  938. - `label` (string) 控件展示标签名
  939. - `variable` (string) 控件 ID
  940. - `required` (bool) 是否必填
  941. - `default` (string) 默认值
  942. - `select` (object) 下拉控件
  943. - `label` (string) 控件展示标签名
  944. - `variable` (string) 控件 ID
  945. - `required` (bool) 是否必填
  946. - `default` (string) 默认值
  947. - `options` (array[string]) 选项值
  948. - `file_upload` (object) 文件上传配置
  949. - `image` (object) 图片设置
  950. 当前仅支持图片类型:`png`, `jpg`, `jpeg`, `webp`, `gif`
  951. - `enabled` (bool) 是否开启
  952. - `number_limits` (int) 图片数量限制,默认 3
  953. - `transfer_methods` (array[string]) 传递方式列表,remote_url , local_file,必选一个
  954. - `system_parameters` (object) 系统参数
  955. - `file_size_limit` (int) Document upload size limit (MB)
  956. - `image_file_size_limit` (int) Image file upload size limit (MB)
  957. - `audio_file_size_limit` (int) Audio file upload size limit (MB)
  958. - `video_file_size_limit` (int) Video file upload size limit (MB)
  959. </Col>
  960. <Col sticky>
  961. <CodeGroup title="Request" tag="GET" label="/parameters" targetCode={` curl -X GET '${props.appDetail.api_base_url}/parameters'\\\n--header 'Authorization: Bearer {api_key}'`}>
  962. ```bash {{ title: 'cURL' }}
  963. curl -X GET '${props.appDetail.api_base_url}/parameters' \
  964. --header 'Authorization: Bearer {api_key}'
  965. ```
  966. </CodeGroup>
  967. <CodeGroup title="Response">
  968. ```json {{ title: 'Response' }}
  969. {
  970. "introduction": "nice to meet you",
  971. "user_input_form": [
  972. {
  973. "text-input": {
  974. "label": "a",
  975. "variable": "a",
  976. "required": true,
  977. "max_length": 48,
  978. "default": ""
  979. }
  980. },
  981. {
  982. // ...
  983. }
  984. ],
  985. "file_upload": {
  986. "image": {
  987. "enabled": true,
  988. "number_limits": 3,
  989. "transfer_methods": [
  990. "remote_url",
  991. "local_file"
  992. ]
  993. }
  994. },
  995. "system_parameters": {
  996. "file_size_limit": 15,
  997. "image_file_size_limit": 10,
  998. "audio_file_size_limit": 50,
  999. "video_file_size_limit": 100
  1000. }
  1001. }
  1002. ```
  1003. </CodeGroup>
  1004. </Col>
  1005. </Row>
  1006. ---
  1007. <Heading
  1008. url='/meta'
  1009. method='GET'
  1010. title='获取应用Meta信息'
  1011. name='#meta'
  1012. />
  1013. <Row>
  1014. <Col>
  1015. 用于获取工具icon
  1016. ### Response
  1017. - `tool_icons`(object[string]) 工具图标
  1018. - `工具名称` (string)
  1019. - `icon` (object|string)
  1020. - (object) 图标
  1021. - `background` (string) hex格式的背景色
  1022. - `content`(string) emoji
  1023. - (string) 图标URL
  1024. </Col>
  1025. <Col>
  1026. <CodeGroup title="Request" tag="POST" label="/meta" targetCode={`curl -X GET '${props.appDetail.api_base_url}/meta' \\\n-H 'Authorization: Bearer {api_key}'`}>
  1027. ```bash {{ title: 'cURL' }}
  1028. curl -X GET '${props.appDetail.api_base_url}/meta' \
  1029. -H 'Authorization: Bearer {api_key}'
  1030. ```
  1031. </CodeGroup>
  1032. <CodeGroup title="Response">
  1033. ```json {{ title: 'Response' }}
  1034. {
  1035. "tool_icons": {
  1036. "dalle2": "https://cloud.dify.ai/console/api/workspaces/current/tool-provider/builtin/dalle/icon",
  1037. "api_tool": {
  1038. "background": "#252525",
  1039. "content": "\ud83d\ude01"
  1040. }
  1041. }
  1042. }
  1043. ```
  1044. </CodeGroup>
  1045. </Col>
  1046. </Row>