AgentVerse's picture
first commit
670a607
raw
history blame contribute delete
342 Bytes
export default {
start(key) {
this.questionManager
.restartQuest()
.getNextQuestion(key);
return this;
},
next(key) {
this.questionManager
.getNextQuestion(key);
return this;
},
isLast() {
return this.questionManager.isLastQuestion();
},
};