NLP 改写器
POST
https://flows.contentvillain.com/webhook/nlp-rephraser该改写器能够改写最多大约 700 个单词的文本。要改写的文本长度可能会有所不同,因此如果确实出现错误,请尝试缩短它。
根据文本长度和您希望返回的变体数量,API 端点将花费更长的时间。有两个变量要添加到此端点中,如下所示。
接口将返回您改写的内容。请注意,序列应设置为最小值1,最大值5。将其设置得高于此值可能会导致超时。
请求参数
Body 参数application/json
message
string
必需
那只猫坐在席子上和他的伙伴们一起喝酒了一整夜。
sequences
number
必需
示例
{
"message": "string",
"sequences": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array of:
Outputs
array [object {1}]
可选
Generated
string
必需
示例
[
{
"Outputs": [
{
"Generated": "The cat sat all night drinking with his friends on the mat."
},
{
"Generated": "The cat sat all night in the mat with his friends, drinking."
}
]
}
]
最后修改时间: 9 个月前