我正在尝试在Bluemix上使用IBM Watson的会话API,并且遇到以下异常。我无法找到有关如何调试它的任何文档。
Error:
"conversation.py", line 14, in <module>
response = conversation.message(workspace_id=workspace_id, message_input={'text': 'Will you be able to convert an html file?'})
File "/usr/local/lib/python2.7/dist-packages/watson_developer_cloud/conversation_v1_experimental.py", line 45, in message
json=data, accept_json=True)
File "/usr/local/lib/python2.7/dist-packages/watson_developer_cloud/watson_developer_cloud_service.py", line 263, in request
raise WatsonException(error_message)
watson_developer_cloud.watson_developer_cloud_service.WatsonException: Error: NLU service error: Processing error, Code: 500
我检查了凭据和工作区ID,它们看起来都很好。 任何关于如何调试的想法都将受到高度赞赏。
答案 0 :(得分:1)
我知道这是一个老问题,但我不想让它没有答案。
正如@jonrsharpe所说,Error: NLU service error: Processing error, Code: 500
表示存在服务器端错误。
当您遇到5XX错误时,除了再次尝试请求之外,没有其他任何事情可做。