ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 数据格式 触发器返回的数据格式 | 名称 | 类型 | 说明 | 例子 | | --- | --- | --- | --- | | text | string | 纯文本 | hello | | sleep | int | 延时多少秒后继续 | 2000 | | image | string | 发送图片文件的url地址 | http://x.com/x.jpg | | video | string | 发送视频文件的url地址 | http://x.com/x.mp4 | ## 返回示例 > 格式为 `application/json`, `array` 数组 ``` json [ { "type": "text", "data": "hello" }, { "type": "sleep", "data": 2000 }, { "type": "image", "data": "http://x.com/x.jpg" } ] ```