All - Activity - tim.blackbird - Rasa Community Forum

Model_url question in config.yml file

It goes under ConveRTFeaturizer for anyone needing this.

pipeline:
  - name: ConveRTTokenizer
  - name: ConveRTFeaturizer
    model_url: "https://github.com/connorbrinton/polyai-models/releases/download/v1.0/model.tar.gz"
  - name: DIETClassifier
    epochs: 200

Deploying to Heroku problems

I have followed all of the tutorials out there, on the forums and scouring the web, but each time I deploy to Heroku, I get back the same blank response. Running this test:

import requests
# change rasablog with your app name
url = 'https://dford-rasa-titan-stg.herokuapp.com/webhooks/rest/webhook'
m…

Can Rasa push to a conversation?

There are a few different scenarios where Rasa’s typical request/response does not work for our needs. One of the easiest to explain is the following. Let’s say I have the customer communicating with Rasa via SMS (or another unprogrammable client) and it asks the bot to do something and then let me…


Rasa Slack Integration

Any plans on getting these Videos back up on YT? Maybe they are out of date, which is understood.


Jitesh Gaikwad joins the Rasa Hero group!

All the links above are dead, the GH repo and the YT channel has no videos. I wonder what happened?


Custom Policy Not Working

I have init, train, and predict_action_probabilities but not the others. I didn’t find examples for the other two, but I will look into them.


Forwarding messages to Slack and vice versa for human hand-off

Also interested in your implementation here. I am trying to do the same thing, where the customer is using SMS and the live agent is using Slack. Would also like to log all the messages from user and bot into the Slack channel so the live agent can see the whole history. If you are available to con…


Help me with the Rasa-to-Slack connection

I am working with Rasa for the first time. I am a developer, though not skilled in Python. I want to hook up Slack to Rasa as a “handoff to live-chat” option, which is the opposite of many of the articles out there about “rasa connect to Slack”. I want to have a chatbot that has a Web UI, and an SM…


Custom Policy Not Working

I am also having problems loading custom policies, the same as above. Should I put them in a custom folder in the root of my project, like ./policies/handoff.py ? Then inside the handoff.py file, I have a class HandoffToHuman. So should my path in the config.yml file be then: - name: "policies.handoff.HandoffToHuman"?