endpoints.yml 1.4 KB

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