This release adds a major feature to the SDK: Dialog Builder support. Although it isn't complete, it supports some of the major features.
Added
- Dialog Builder support
- Create a Dialog
- Access Dialog context updates through
on_context_update
- Set UDFs using
Dialog.set_function
- Set and access the Dialog context data through
context
functionscontext.get_step_data(id)
gets the step data for the given step idcontext.get_user_data(id)
gets the user data for the given idcontext.set_user_data(id, value)
sets the given user data for the given idcontext.get_current_step()
gets the current step in the dialog
- Run a created dialog using
Dialog.run()