释义 API
在这里尝试 Paraphrase API
AI21 Studio 的释义 API 提供对我们最先进的释义引擎的访问。它专门针对释义进行了微调。因此,它更容易集成到您的系统中,并且由于它为此目的进行了优化,因此它也比从头开始构建更高效(因此更便宜)。这也是Wordtune背后的引擎- 所以你知道它非常棒。
该 API 获取一段并返回一个释义列表,这些释义使用不同的单词传达相同的含义。作为用于释义的专用 API,它包含使您能够更好地控制输出的功能:调整语气和风格,选择仅重写文本的一部分(同时保留整个上下文)。text
最多 10 个建议释义
对于每个请求,此 API 都会返回最多 10 个建议释义的列表。
Python
"style": "general",
"text": "You only live once, but if you do it right, once is enough."
例如,以下是对上述请求的可能响应:
JSON
{
"id": "862829b2-29be-c86d-370e-db2f7f5dbf5b",
"suggestions": [
{
"text": "One life is enough if you live it right."
},
{
"text": "When you do it right, you only live once."
},
{
"text": "Once is all you have, but if you do it right, once is enough."
},
{
"text": "When you live right, you only need to live once."
},
{
"text": "One life is enough if you live it right, but if you don't do it right, one life is not enough."
},
{
"text": "The only chance you have to live is once, but if you live well, a once is enough."
},
{
"text": "The only way to live is right, so if you do it right, once is enough."
},
{
"text": "Once is enough if you live it right, but if you do it wrong, you'll regret it later."
},
{
"text": "In life, you only live once, but if you do it right, once should be plenty."
},
{
"text": "It takes only one life to live a fulfilling life, but if you do it right, one life is enough."
}
]
}
选择适合您需求的style
您可以选择 4 种不同的风格:- 探索重新表述句子的全新方式。- 向合适的受众传达一种轻松、不那么严肃的语气。- 以更专业的方式表达您的话语。- 扩展句子以提供更多细节、细微差别和深度。- 遵守字数限制并清晰简洁地传达您的信息。general
casual
formal
long
short
在你的范围内复述
您可以通过使用和参数指定位置来解释给定文本中的特定范围,同时保持周围文本不变。该 API 的目标是准确重写所请求的范围,同时避免不恰当的建议。满足这两个要求并不总是可能的。
最后修改时间: 1 年前