Skip to content

data-henrik/watson-conversation-tool

Repository files navigation

Watson Conversation Tool / Watson Assistant Tool

The Watson Conversation Tool (wctool) is a Python-based command line tool to manage workspaces of the IBM Watson Assistant (formerly Conversation) service on IBM Cloud. It was written to explore the API to manage workspaces.
Note that to manage workspaces from the command line this tool is not a requirement. The API provides REST functions that can be invoked from tools like curl.

Update on 2018-11-22:
The service Watson Assistant evolved over time. It has introduced the concepts of skill and assistant instead of workspace. It also added an API Version 2. That API interacts with an assistant, requires to open and close a session which manages the context on the server, and only focuses on the conversation. To cater to the API V2, I introduced a second script watoolV2. Documentation is following...

Update on 2019-11-27:
The IBM Watson services moved to a new core SDK for handling authentication. I updated the code to support the new flow and in that process decided to only support API keys. If something is not working, open an issue please.

This project is described in the following blog posts:

Overview

The repository holds two tools, both Python scripts. In order to use them, you need Python and the SDK for the Watson services installed. The tools are:

  • wctool.py: The original Watson Conversation Tool which is based on API version V1. It allows to manage (list, import, export, ...) workspaces, obtain logs and via its dialog option to converse with the chat service.
  • watoolV2.py: The newer script to have a dialog with the Watson Assistant service, based on API version V2.

If you have been working with the Watson service and Python before, you probably already have everything installed. If not, you need to install Python and then head over to the Watson Developer Tools and follow the link to the Python SDK. Install the SDK, too. Now download a copy of this repository or clone it.

wctool.py

To use the tool, copy config.sample.json or config.ICFsample.json to config.json and insert your service credentials. Note that the service URL depends on the IBM Cloud region. It is shown as part of the credentials. An API key is needed. If you have multiple environments then you can specify the configuration file using the -config myconfig.json option.

Some commands and parameters:

LIST all workspaces:
-l  [-config config-file]

GET (full) information about a workspace and print or save it
-g -id workspaceID -full  [-config config-file]      
-g -id workspaceID -o outfile  [-config config-file]

UPDATE an existing workspace (with optionally intents, entities, etc. read from existing workspace file), replace content by default or optionally `-append` to the specified types:
-u -id workspaceID [-name newName] [-lang newLanguage] [-desc newDescription]
  [-intents] [-entities] [-dialog_nodes] [-counterexamples] [-metadata] [-append]
  [-i input-workspace] [-config config-file]

DELETE an existing workspace:
-delete -id workspaceID  [-config config-file]

CREATE a new workspace (with intents, entities etc. read from existing workspace file):
-c -name workspace-name -desc workspace-description -lang workspace-language  
   -i input-workspace [-config config-file]

List LOGS for a specific workspace with an optional filter string
-logs -id workspaceID -filter filter-string  [-config config-file]

Have DIALOG using a specific workspace
-dialog -id workspaceID [-outputonly] -[-actionmodule file] [-config config-file]

See the included Jupyter Notebook SampleSession.ipynb for details on how to invoke the commands. Note that in the current state the tool prints out the values for all possible options for debugging purposes. This could be simply disabled in the code. The filter expressions are documented as part of the Watson Conversation service.

watoolV2.py

To use the tool, copy config.sample.json or config.ICFsample.json to config.json and insert your service credentials. Note that the service URL depends on the IBM Cloud region. It is shown as part of the credentials. Note that to use both tools with the same config file the API version for this watoolV2 needs to be assigned to the key versionV2. If you have multiple environments then you can specify the configuration file using the -config myconfig.json option.

Some commands and parameters:

Have DIALOG using a specific workspace
-dialog -id assistantID [-outputonly] -[-actionmodule file] [-config config-file]

Dialog option and contexts

When using the dialog option, the current session context is stored (persisted) in session_context.json or session_contextV2.json. It allows to continue a session later on. The file is closed after writing out the current context. After the new message input is obtained from the user, the file session_context.json / session_contextV2.json is opened again and its content retrieved. This allows to modify the context object between dialog turns. Context variables can be set, modified or deleted. This includes system variables. Use with caution... :)
The stored session context can even be used to switch to different workspaces or even instances with every dialog turn. It helps command line testing of duplicated / replicated chatbots for highly available apps.

The optional parameter -outputonly lets the tool only dump the returned text output, not the entire response object. This is useful when testing the output or showcasing a dialog from the command line.

The tool supports server actions in Watson Assistant. If present in the config file, the tool will pass in the IBM Cloud Functions credentials. As a starter, use config.ICFsample.json. The option was introduced to work on this tutorial for a database-backed Slackbot which makes use of IBM Cloud Functions.

The tool also supports client actions. You can pass in the file to handle client actions using -actionmodule filename. A sample module is shown in file handleClientAction.sample.py and handleClientActionV2.sample.py. It could be dynamically loaded using, e.g., -actionmodule handleClientAction.sample. Note that the file extension .py is not passed in.

Documentation and Resources

Here are some useful links to documentation and other resources:

License

See LICENSE for license information.

The tool is provided on a "as-is" basis and is un-supported. Use with care...

Contribute / Contact Information

If you have found errors or some instructions are not working anymore, then please open an GitHub issue or, better, create a pull request with your desired changes.

You can find more tutorials and sample code at: https://ibm-cloud.github.io/ and https://console.bluemix.net/docs/tutorials/index.html#tutorials

About

Python-based command line tool to manage workspaces and test conversations for IBM Watson Assistant on IBM Cloud

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published