- TTS
- HTTP中转站
- LLM
- 字幕打印机
- 虚拟身体(数字人)
- 数字人视频播放器
- live2d-TTS-LLM-GPT-SoVITS-Vtuber
- LiveTalking
- 平台
- 设置配置 set_configPOST
- 系统命令 sys_cmdPOST
- 发送数据 sendPOST
- 数据回调 callback接口POST
- 获取系统信息 get_sys_info GET
- 文本转语音 ttsPOST
- 大语言模型对话 llmPOST
clear http中转站
开发中
POST
/clear
请求参数
Body 参数application/json
start_index
integer
必需
end_index
integer
必需
all
boolean
必需
示例
{
"start_index": 0,
"end_index": 1,
"all": true
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/clear' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_index": 0,
"end_index": 1,
"all": true
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
示例
{
"code": 200,
"message": "删除数据成功!"
}
修改于 2024-12-16 08:24:33