- nlu: Intent Definition
- domain: Definition of all adressable components
- stories: Definition of conversation structures/scripts
- actions: Validation and processing of data
shell@something/.../horus> rasa train
shell@something/.../horus> rasa run actions
shell@something/.../horus> rasa shell
shell@something/.../horus> rasa x
shell@something/.../horus> rasa run --enable-api --cors "*"
Local Address: http://localhost:5005/webhooks/rest/webhook
Request Body:
{
"sender": "other",
"message": "hallo"
}
docker-compose up
version: '3.0'
services:
rasa:
image: rasa/rasa:1.4.6
ports:
- 80:5005
networks:
- app_net
volumes:
- ./:/app
command:
run
--enable-api
--cors *
action_server:
image: rasa/rasa-sdk:1.4.0
volumes:
- ./actions:/app/actions
expose:
- 5055
networks:
- app_net
networks:
app_net:
docker run -it -v %cd%:/app rasa/rasa:1.4.6 shell
docker run -v %cd%:/app rasa/rasa:1.4.6 train --domain domain.yml --data data --out models
Addresses:
docker build -t horusrasaregistry.azurecr.io/rasa/rasa-sdk:custom .
docker push horusrasaregistry.azurecr.io/rasa/rasa-sdk:custom
docker build -f app.Dockerfile -t horusrasaregistry.azurecr.io/rasa/rasa:custom2 .
docker push horusrasaregistry.azurecr.io/rasa/rasa:custom2
FROM rasa/rasa-sdk:latest
LABEL maintainer="Spenlingwimer Gerald" version="1.0"
COPY ./actions /app/actions
FROM rasa/rasa:latest
LABEL maintainer="Spenlingwimer Gerald" version="1.4"
COPY ./ /app
CMD [ "run", "--enable-api", "--cors", "*" ]
version: '3.0'
services:
rasa:
image: horusrasaregistry.azurecr.io/rasa/rasa:custom2
ports:
- 80:5005
networks:
- app_net
action_server:
image: horusrasaregistry.azurecr.io/rasa/rasa-sdk:custom2
expose:
- 5055
networks:
- app_net
networks:
app_net: