continueConversation static method
Continue a halted conversation.
Resumes the conversation loop from where it was halted. Any input added via addInfo will be injected into the next prompt.
Implementation
static Future<ConversationActionResult> continueConversation({
int timeoutSeconds = 30,
}) async {
final result = await _adapter.sendRequest(
'botConversation.continueVce',
{},
scriptName: 'AiConversationApi.continueConversation',
timeout: Duration(seconds: timeoutSeconds),
);
return ConversationActionResult.fromJson(result);
}