An SDK for developing applications for Webex Assistant.
Project description
An SDK for developing Webex Assistant Skills based on the MindMeld platform.
Install the SDK
pip install webex_assistant_sdk
Using the SDK
To use the SDK we just need to import SkillApplication and pass in the RSA private key as well as the secret for verifying the request's header.
Here is an example implementation which is found in the tests
folder:
from pathlib import Path
from webex_assistant_sdk.app import SkillApplication
from webex_assistant_sdk.crypto import load_private_key_from_file
secret = 'some secret'
key = load_private_key_from_file(str(Path(__file__).resolve().parent / 'id_rsa'))
app = SkillApplication(__name__, secret=secret, private_key=key)
__all__ = ['app']
Similar to MindMeld applications, for development convenience, we have included a Flask server for you to test your application.
To run the development server you can use the run
command: python -m [app] run
.
We do not recommend using the development server for production purpose. To learn more about productionizing Flask application, please check Deployment Options.
The introduce decorator
The SkillApplication adds a introduce
decorator in addition to MindMeld's build in decorator. This is used to mark the dialogue state to use when a user calls a skill without any command, i.e. "talk to "
Example
@app.introduce
def introduction(request, responder):
pass
Debugging
To debug the server and turn off encryption/decryption, you can set the environment variable WXA_SKILL_DEBUG
to be True
.
Command Line
Installing the webex_assistant_sdk package adds a wxa_sdk command line application. Use the -h
argument for help.
Usage: wxa_sdk [OPTIONS] COMMAND [ARGS]...
Options:
--install-completion [bash|zsh|fish|powershell|pwsh]
Install completion for the specified shell.
--show-completion [bash|zsh|fish|powershell|pwsh]
Show completion for the specified shell, to
copy it or customize the installation.
--help Show this message and exit.
Commands:
generate-keys Generate an RSA keypair
generate-secret Generate a secret token for signing requests
invoke Invoke a skill running locally or remotely
new Create a new skill project from a template
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file webex-assistant-sdk-1.0.0.tar.gz
.
File metadata
- Download URL: webex-assistant-sdk-1.0.0.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.7.10 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0dd07bd9377cb28b7879857cb67ce0a1073fcc64d3a7d9e79aa232e7e4ec6e8 |
|
MD5 | 7efa1b984422f1f37b830ec1045d6548 |
|
BLAKE2b-256 | ebb54252a9e01056eff96985303c6cbddb6452608629b92507433e4dbdcba345 |
File details
Details for the file webex_assistant_sdk-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: webex_assistant_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.7.10 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a42d696eef2f1a15df4d7cf2e1774a5be6f0f219274e54bdab6779e1f1bc691d |
|
MD5 | 488843f71aa252f370f0ec17b9f3e811 |
|
BLAKE2b-256 | a8ae7bfc9152e9526ebefc3c188aa8855609b3cc56dc23211f00240cd680580a |