Tag: watson conversation

IBM Watson会话服务错误:无法从“方法组”转换为“conversation.onMessage”

我试图统一运行IBM Watson 会话服务 ,然后在这里,代码片段 private Conversation m_Conversation = new Conversation(); private string m_WrokspaceID = “xyz”; private string m_input = “help”; // Use this for initialization void Start () { Debug.Log(“user : ” + m_input); m_Conversation.Message(OnMessage, m_WrokspaceID, m_input); } void OnMessage(MessageResponse resp, string customData) { foreach (Intent mi in resp.intents) { Debug.Log(“intent : ” + mi.intent […]