abstract fun makeQiChatbot(context: RobotContext!, topics: MutableList<Topic!>!): QiChatbot!
Create a Qichatbot in the current language.
context
- RobotContext!: The context of the application
topics
- MutableList<Topic!>!: The list of topics to use within the QiChatbot
RuntimeException
- One or more of the Topics contain one or more user defined functions that have not been defined.
Return
QiChatbot!: A QiChatbot.
Since
3
abstract fun makeQiChatbot(context: RobotContext!, topics: MutableList<Topic!>!, locale: Locale!): QiChatbot!
Create a Qichatbot in the given language.
context
- RobotContext!: The context of the application
topics
- MutableList<Topic!>!: The list of topics to use within the QiChatbot
locale
- Locale!: The language of the conversation.
RuntimeException
- The given locale is not available on the robot
Return
QiChatbot!: A QiChatbot.
Since
3