示例#1
0
    void manualClick()
    {
        ConversationConfig config = new ConversationConfig.Builder()
                                    .setWelcomeMessage("You can configure special welcome message for your end users at here.")
                                    .setWelcomeMessage(AIHelpSupport.GetSDKVersion())
                                    .SetAlwaysShowHumanSupportButtonInBotPage(false)
                                    .SetConversationIntent(ConversationIntent.HUMAN_SUPPORT)
                                    .SetStoryNode("")
                                    .build();

        AIHelpSupport.ShowConversation(config);
    }
 void SDKVersionClick()
 {
     AIHelpSupport.GetSDKVersion();
 }