-
Notifications
You must be signed in to change notification settings - Fork 11
/
endpoints.yml
41 lines (33 loc) · 1.28 KB
/
endpoints.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This file contains the different endpoints your bot can use.
# Server where the models are pulled from.
# https://rasa.com/docs/rasa/model-storage#fetching-models-from-a-server
#models:
# url: http://my-server.com/models/default_core@latest
# wait_time_between_pulls: 10 # [optional](default: 100)
# Server which runs your custom actions.
# https://rasa.com/docs/rasa/custom-actions
action_endpoint:
url: ${ACTIONS_ENDPOINT_URL}
# Tracker store which is used to store the conversations.
# By default the conversations are stored in memory.
# https://rasa.com/docs/rasa/tracker-stores
tracker_store:
type: ${TRACKER_STORE_TYPE}
dialect: "postgresql" # the dialect used to interact with the db
url: ${DB_HOSTNAME} # (optional) host of the sql db, e.g. "localhost"
port: ${DB_PORT} # Port of the DB
db: ${DB_NAME} # path to your db
username: ${DB_USERNAME} # username used for authentication
password: ${DB_PASSWORD} # password used for authentication
lock_store:
type: ${LOCK_STORE_TYPE}
url: ${REDIS_HOSTNAME}
port: ${REDIS_PORT}
db: ${REDIS_DB}
# Event broker which all conversation events should be streamed to.
# https://rasa.com/docs/rasa/event-brokers
#event_broker:
# url: localhost
# username: username
# password: password
# queue: queue