Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unity & watson conversation connect?

Hi I'm new to watson conversation and Unity3D. Thing I want to make is one simple screen that can talk with Chatbot. TO do this I got watson conversation Unity SDK in my project. and did what this page said. However I can't make the red dot to green like this. I barely experienced in coding area :( How can I started? I want to make simple scene that can talk with chatbot.

like image 763
Jeremy Wilde Avatar asked Aug 26 '26 16:08

Jeremy Wilde


1 Answers

You will have to create a workspace within the Conversation service on Bluemix. Click Launch Tool in the Manage page in your Conversation instance on Bluemix. Here you will be able to create a workspace. Once you have created a workspace, from the Workspaces tab you can click the three dots on the upper right of your workspace and View Details. From there you can copy your Workspace ID.

Back in Unity in the ConfigEditor under the Watson menu, create a variable called ConversationV1_ID and paste the value of your Workspace ID there.

In your calls to the Conversation service you will need to add a reference to this Workspace ID. You should be able to access the variable from the config file using

m_WorkspaceID = Config.Instance.GetVariableValue("ConversationV1_ID");
like image 87
taj Avatar answered Aug 28 '26 07:08

taj