younghao
(younghao)
1
in endpoints.yml,I set:
> tracker_store:
> store_type: redis
> url: 'localhost'
> port: 6379
> db: 0
> password: None
run this:
python3 -m rasa_core.run --enable_api -d models/dialogue -u models/current/nlu --endpoints endpoints.yml --cors “*” --debug
However, I check the redis,the keys were empty.the slot was still saved in memory.
So, did I make something wrong with this?
try this
tracker_store:
store_type: redis
url: localhost
port: 6379
db: 1
younghao
(younghao)
3
@azizullah2017 not work.redis is still empty.
Try this.
Remove action endpoint if do not use custom action.
python -m rasa_core.run -d models/dialogue -u models/current/nlu --port 5002 --credentials credentials.yml --endpoints endpoints.yml --enable_api
action_endpoint:
url: http://localhost:5055/webhook
tracker_store:
store_type: redis
url: localhost
port: 6379
db: 13
younghao
(younghao)
5
@azizullah2017 very kind of you.I will use the custom action,It seems that still not work.
same here didnt work how did you solve it