我目前正在研究IBM Watson python sdk。 我使用了以下代码:
context = {}
workspace_id = '25dfa8a0-0263-471b-8980-317e68c30488'
response = conversation.message(
workspace_id=workspace_id,
message_input={'text': 'Turn on the lights'},
context=context
)
print(json.dumps(response, indent=2))
但这个id对我无效。任何人都知道如何为自己创造一个
答案 0 :(得分:1)
您自己不生成workspace_id
。 workspace_id
是一个唯一键,用于标识要通过api进行通信的工作空间。在Watson Conversation UI中创建新工作区时会生成id。