Hi there!
I’ve installed Rasa X in a google cloud VM; the are my docker containers:
Page up
antoniopedrolopes@rasa:/etc/rasa$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2359bb5b33db nginx:1.19 "/docker-entrypoint.…" About an hour ago Up About an hour 80/tcp, 0.0.0.0:80->8080/tcp, :::80->8080/tcp, 0.0.0.0:443->8443/tcp, :::443->8443/tcp rasa_nginx_1
824e6af75e2b nonola76/rasa_action:actionserver "./entrypoint.sh sta…" About an hour ago Up About an hour 5055/tcp rasa_app_1
b41c0dc87dd7 rasa/rasa:2.8.11-full "rasa x --no-prompt …" About an hour ago Up About an hour 5005/tcp rasa_rasa-producti
on_1
44b71ddef93d rasa/rasa:2.8.11-full "rasa x --no-prompt …" About an hour ago Up About an hour 5005/tcp rasa_rasa-worker_1
34497fca0875 rasa/rasa-x:0.42.5 "python -m rasax.com…" About an hour ago Up About an hour (healthy) 8000/tcp rasa_db-migration_
1
a2578aa1ffab rasa/rasa-x:0.42.5 "/tini -g -- sh -c '…" About an hour ago Up About an hour 5002/tcp rasa_rasa-x_1
0fc95dc2ee15 rasa/duckling:0.1.6.5-r2 "duckling-example-ex…" About an hour ago Up About an hour 8000/tcp rasa_duckling_1
03062b9a4b4c bitnami/redis:6.2.4 "/opt/bitnami/script…" About an hour ago Up About an hour 6379/tcp rasa_redis_1
fd74710dc415 bitnami/postgresql:11.11.0 "/opt/bitnami/script…" About an hour ago Up About an hour 5432/tcp rasa_db_1
e56a2bd7baa4 bitnami/rabbitmq:3.8.17 "/opt/bitnami/script…" About an hour ago Up About an hour 4369/tcp, 5671-5672/tcp, 15671-15672/tcp, 25672/tcp
Some weeks ago, I had an installation of Rasa OS where I had a connection to TTS - STT Audiocodes, here is the github link for it’s connection with Rasa: Audiocodes.
-
I installed audiocodes with
pip install rasa-audiocodes
-
I added the following content to credentials.yml:
rasa_audiocodes.AudiocodesInput: token: “2******”
I succeded to connect to audiocodes channel with this command:
rasa run -m models --enable-api --cors "*" --debug
It worked like a charm.
But now, with rasa-x & docker, and following the instructions of the GitHub - ac-voice-ai/rasa-audiocodes: AudioCodes VoiceAI Connect integration for Rasa, I having some problems in making the connection, because, I really don’t understand where to add the credentials if: in the file of my project on github (credentials.yml) or in “etc/rasa/credentials.yml”.
Also in the instructions Audiocodes says:
If you're using Rasa on Docker, you can copy rasa_audiocodes and docker-compose.yml to your application directory, and edit the volumes section to match your app directory.
If you already have a docker-compose file, just add this to the rasa volumes:
- ./rasa_audiocodes:/opt/venv/lib/python3.8/site-packages/rasa_audiocodes
How can I do this? I’ve tried to add that line of code to docker-compose.yml in “etc/rasa”, and rasa containers restart since then.
Any idea?
Thanks in advance!