BLiP command-line (CLI) tool, used for managing data of BLiP's bots. The blip-cli is a cross-platform command line interface helps to make easy and quickly your development flow and the execution of some repetitive tasks BLiP's API.
After download and unzip blip-cli, you can try it out using some of the available commands.
For instance, you can ping
a bot using using:
blip ping -n [email protected]
where -n
parameter represents the bot node
--video
You can download the BLiP CLI as a zip file. The zip file contains both the .NET Core runtime and BLiP CLI binaries.
Platform | Latest Build master |
---|---|
Windows x64 | zip |
Windows x86 | zip |
Linux x64 | Ubuntu zip |
macOS | comming soon |
Command | Description | Sample |
---|---|---|
ping | Ping some node and show elapsed time | blip ping -n [email protected] |
formatKey | Returns authorization key (or access key) from an access key (authorization key) | blip formatKey -i testehttppost -a some-authorization-key |
saveNode | Save nodes informations to reuse on next requests. (Saved only locally) | blip saveNode -n [email protected] -a some-authorization-key |
copy | Copy data (like documents, bucket, IA) from a bot to another | blip copy -f papagaio --fromAuthorization some-authorization-key -t papagaio --toAuthorization some-authorization-key -c document |
export | Download chatbot's data (like NLP model, tracks*, bucket*) to given directory. * not implemented yet | blip export -a some-authorization-key -m nlpModel -o directory/to/download/ |
In order to run BLiP CLI code you must have .NET Core 2.0 (or greater) installed on machine. To download the .NET Core runtime without the SDK, visit https://github.com/dotnet/core-setup#daily-builds.
Is recommended use Visual Studio 2017 (version 15.5) or greater.
For all feedback, use the Issues on this repository.