Appearance
语法分析
输入输出说明
详细请见: 单个句子语法分析 API 文档
- 前端输入句子
json
{
"type": "grammar_analysis",
"text": "I am a student."
}
- 后端输出JSON结构
json
{
"step": "grammar_analysis",
"data": {
"sentence_analysis": [
{
"index": 1,
"type": "简单句",
"text": "I am a student.",
"position": [0, 4],
"elements": [
{
"type": "主语",
"text": "I",
"elements": []
},
{
"type": "谓语",
"text": "am",
"elements": []
},
{
"type": "表语",
"text": "a student",
"elements": [
{
"type": "限定词",
"text": "a",
"position": [2, 3]
}
]
}
]
}
]
},
"status": "success",
"error": null
}
答疑功能
- 语法分析容器框右下角需要一个“AI助手按钮”(目前页面中没有实现),点击后弹出ChatBot问答框,然后可以进行答疑。
- 用户提问时,自动将当前文本容器内的语法分析结果作为历史上下文输入给大模型。