# 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: "https://omdena-lc-omdena-ng-lagos-chatbot-actions-server.hf.space/webhook" | |
action_endpoint: | |
url: "https://pvanand-rasa-omdena-demo-model-feature-followup-8f6a2c7.hf.space/webhook" | |
# 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: redis | |
# url: <host of the redis instance, e.g. localhost> | |
# port: <port of your redis instance, usually 6379> | |
# db: <number of your database within redis, e.g. 0> | |
# password: <password used for authentication> | |
# use_ssl: <whether or not the communication is encrypted, default false> | |
tracker_store: | |
type: SQL | |
dialect: "postgresql" # the dialect used to interact with the db | |
url: "ep-soft-unit-44308222.cloud.argon.aws.neon.build" | |
db: "rasa" # path to your db | |
username: "pvanand09" | |
password: "i0bRkLm1dZzO" | |
use_ssl: True | |
# 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 | |