Support
Allow follow-up prompts to be specified in the Replace API. Currently if a follow up prompt is provided in the Json to the Replace API it creates a recursive link back to the parent question.
The following Json will create the issue
{
"qnaList": [
{
"answer": "I have A1.",
"source": "Editorial",
"questions": [
"Do you have Q1?"
],
"metadata": [],
"context": {
"isContextOnly": false,
"prompts": [
{
"displayText": "How about Q2?",
"displayOrder": 0,
"qna": {
"answer": "I have A2 also.",
"source": "Editorial",
"questions": [
"How about Q2?"
]
}
}
]
}
}
]
}
See attached for a KB produced using the above Json and note the link back to original question in row 3.
As part of support case #120061924003155 this was confirmed to be unsupported in the Replace API.
1
vote
