GithubHelp home page GithubHelp logo

anthrax3 / botpress-rivescript Goto Github PK

View Code? Open in Web Editor NEW

This project forked from joseroubert08/botpress-rivescript

0.0 0.0 0.0 308 KB

☠ Deprecated

License: GNU Affero General Public License v3.0

JavaScript 89.66% CSS 10.34%

botpress-rivescript's Introduction

🚧 NOT MAINTAINED ANYMORE

Not compatible with Botpress X

botpress-rivescript

RiveScript is a simple scripting language for chatbots with a friendly, easy to learn syntax.

botpress-rivescript implements the RiveScript language as an incoming middleware and adds extra support for executing arbitraty code. Combining the simplicity of RiveScript and the flexibility of Botpress allows people to create very complex and rich dialogs, including sending Cards, Quick Replies, Buttons, Webviews, etc...

Supported connectors: botpress-messenger

Get started

botpress install rivescript

The rivescript module should now be available in your bot UI, and the APIs exposed.

Features

Multi-files

You can split your dialog into multiple Rive files. By default, two files are provided (star.rive and begin.rive), as advised by the official RiveScript documentation.

Conversation Simulator

There's a built-in conversation simulator so that you can test your scripts right from the interface. The simulator also supports JS Code execution, including asynchronous invocations.

Variable Injections

User Profiles

If provided, the content of the MiddlewareEvent['user'] is injected into the variables. For Facebook, first_name, last_name, timezone, locale, gender, avatar_url are available.

+ what is my name
- According to your facebook profile, your name is <get first_name> <get last_name>

Others

The platform is injected in the user variables as the platform name.

+ what platform am i using
- Your talking to me on <get platform>, silly!

And the original message from user input under text name.

+ *
- Your query: <get text>

Subroutines

wait MS

+ toc toc
- <call>wait 2000</call>who is there?

Running JS code in scripts

+ execute
- JS: console.log(rs, bp, event, send) // all available

+ log
- JS: bp.logger.info('Hello from RiveScript')

+ quick replies
- JS: bp.messenger.sendText(event.user.id, 'Buy?', { quick_replies: ['Yes', 'No'] })

To execute your own script, you can register it to bp then use it directly in rivescript

In your index.js

bp.hello = (bp, send) => {
  bp.logger.info('Will send from a custom script !')
  send('This is a reply !', { quick_replies: ['Yes', 'No'] })
}

In your rivescript

+custom
- JS: bp.hello(bp, send)

UTF-8 Support

You can enable UTF-8 input parsing by either one of these methods:

  • Set the RIVESCRIPT_UTF8=true environement variable
  • Call bp.rivescript.setUtf8(true) in your bot

Read more about RiveScript and its UTF8 support here

API

GET /api/botpress-rivescript/scripts

List all the scripting files and their content.

POST /api/botpress-rivescript/scripts

Create or replace a Rive scripting file. This will automatically trigger an Engine reload.

Body

{
  name: string, // *required*, the name of the Rive scripting file
  content: string, // *required*, the full content of the script, must be valid RiveScript language
  overwrite: boolean // defaults to *false*
}

Response

Status 200

DEL /api/botpress-rivescript/scripts/:name

Delete a scripting file. This will automatically trigger an Engine reload.

POST /api/botpress-rivescript/simulate

Simulate an incoming message into the RiveScript engine. Does not pass through the middlewares, goes directly to the RiveScript engine. Returns a response.

Body

{
  text: string // *required*, the text to send to the RiveScript engine
}

Response

"Hello, Human!"

POST /api/botpress-rivescript/reset

Restart a conversation from scratch, erasing all variables or previous conversational state.

Community

Pull requests are welcomed! We believe that it takes all of us to create something big and impactful.

There's a Slack community where you are welcome to join us, ask any question and even help others.

Get an invite and join us now! 👉https://slack.botpress.io

License

botpress-rivescript is licensed under AGPL-3.0

botpress-rivescript's People

Contributors

magnificentpako avatar okazari avatar slvnperron avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.