Hi,
I am using Rasa X on docker compose on a linux machine.
Installed following the below url: https://blog.rasa.com/the-rasa-masterclass-handbook-episode-9/
While I am testing the bot, I am not receiving any responses for the conversations that are relying on any custom actions. For other conversations that dont rely on a custom actions, I am receiving response.
The custom actions in Rasa X was working for few days. I am facing this issues post few recent update to the actions.py file. The same bot when I tested using Rasa Shell, the actions are properly invoked and I am receiving responses from custom actions.
Following is the configurations added:
docker-compose.override.yml
version: '3.4'
services:
app:
image: 'rasa/rasa-sdk:latest'
volumes:
- './actions:/app/actions'
expose:
- '5055'
depends_on:
- rasa-production
endpoints.yml file left default no changes.
models:
url: ${RASA_MODEL_SERVER}
token: ${RASA_X_TOKEN}
wait_time_between_pulls: ${RASA_MODEL_PULL_INTERVAL}
tracker_store:
type: sql
dialect: "postgresql"
url: ${DB_HOST}
port: ${DB_PORT}
username: ${DB_USER}
password: ${DB_PASSWORD}
db: ${DB_DATABASE}
login_db: ${DB_LOGIN_DB}
lock_store:
type: "redis"
url: ${REDIS_HOST}
port: ${REDIS_PORT}
password: ${REDIS_PASSWORD}
db: ${REDIS_DB}
event_broker:
type: "pika"
url: ${RABBITMQ_HOST}
username: ${RABBITMQ_USERNAME}
password: ${RABBITMQ_PASSWORD}
queue: ${RABBITMQ_QUEUE}
action_endpoint:
url: ${RASA_USER_APP}/webhook
token: ""
Could you please help me understand where would be the problem.
Thanks.