💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 数据格式 触发器返回的数据格式 | 名称 | 类型 | 说明 | 例子 | | --- | --- | --- | --- | | 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" } ] ```