语法错误修正 API
在这里尝试语法错误纠正 API
借助我们的语法错误纠正 (GEC) API,您可以利用我们的高级 GEC 引擎,该引擎是专门为此任务构建并经过专业调整的。通过将Wordtune API 集成到您的写作平台中,您可以让用户充满信心地进行写作,而无需担心语法问题。该 API 是 Wordtune 的主要支柱之一,这说明了它的质量。
使用 GEC API 非常简单:只需将文本发送到 API 并接收每个语法错误的列表,包括其位置和建议的更正。
以小熊维尼的引言为例,假设我们已将其插入到文本参数中,但犯了一些错误:
Python
payload = {
"text": "It is is more fun to talk with someone who doesnt use long, difikolt words but rather short, easy words like, ‘What about lunch"
}
GEC API 可以识别这些错误并提出纠正建议。
以下是预期的响应:
JSON
{
"id": "e6360a99-701b-813b-7296-f08057918320",
"corrections": [
{
"suggestion": "It is",
"startIndex": 0,
"endIndex": 8,
"originalText": "It is is",
"correctionType": "Word Repetition"
},
{
"suggestion": "doesn't",
"startIndex": 43,
"endIndex": 49,
"originalText": "doesnt",
"correctionType": "Grammar"
},
{
"suggestion": "difficult",
"startIndex": 60,
"endIndex": 68,
"originalText": "difikolt",
"correctionType": "Spelling"
},
{
"suggestion": "lunch?",
"startIndex": 122,
"endIndex": 127,
"originalText": "lunch",
"correctionType": "Punctuation"
}
]
}
你可以看到,响应结果包含了针对给定文本中发现的 4 个错误的修正 - 每个修正都以对象的形式返回,对象包含以下字段:
suggestion:
建议的修正。
startIndex:
修正过程在提供的文本中的开始索引。
endIndex:
修正过程在提供的文本中的结束索引。
originalText:
发现错误的原始文本。
correctionType:
一个必填字段,指明 GEC API 建议的修正类型。
可能的修正类型包括语法、缺词、标点、拼写、重复词和错误词。
最后修改时间: 1 年前