matrix-rasa

A rasa bot for matrix based on the data from matrix.org
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-rasa.git
Log | Files | Refs | LICENSE

endpoints.yml (1409B)


      1 # This file contains the different endpoints your bot can use.
      2 
      3 # Server where the models are pulled from.
      4 # https://rasa.com/docs/rasa/model-storage#fetching-models-from-a-server
      5 
      6 #models:
      7 #  url: http://my-server.com/models/default_core@latest
      8 #  wait_time_between_pulls:  10   # [optional](default: 100)
      9 
     10 # Server which runs your custom actions.
     11 # https://rasa.com/docs/rasa/custom-actions
     12 
     13 action_endpoint:
     14   url: "http://localhost:5055/webhook"
     15 
     16 # Tracker store which is used to store the conversations.
     17 # By default the conversations are stored in memory.
     18 # https://rasa.com/docs/rasa/tracker-stores
     19 
     20 #tracker_store:
     21 #    type: redis
     22 #    url: <host of the redis instance, e.g. localhost>
     23 #    port: <port of your redis instance, usually 6379>
     24 #    db: <number of your database within redis, e.g. 0>
     25 #    password: <password used for authentication>
     26 #    use_ssl: <whether or not the communication is encrypted, default false>
     27 
     28 #tracker_store:
     29 #    type: mongod
     30 #    url: <url to your mongo instance, e.g. mongodb://localhost:27017>
     31 #    db: <name of the db within your mongo instance, e.g. rasa>
     32 #    username: <username used for authentication>
     33 #    password: <password used for authentication>
     34 
     35 # Event broker which all conversation events should be streamed to.
     36 # https://rasa.com/docs/rasa/event-brokers
     37 
     38 #event_broker:
     39 #  url: localhost
     40 #  username: username
     41 #  password: password
     42 #  queue: queue