Basit Anwer commited on
Commit ·
4c02d58
1
Parent(s): 83cccee
Removed default text
Browse files- config.yml +1 -10
- credentials.yml +0 -27
- endpoints.yml +1 -39
config.yml
CHANGED
|
@@ -24,13 +24,4 @@ pipeline:
|
|
| 24 |
|
| 25 |
# Configuration for Rasa Core.
|
| 26 |
# https://rasa.com/docs/rasa/core/policies/
|
| 27 |
-
policies:
|
| 28 |
-
# # No configuration for policies was provided. The following default policies were used to train your model.
|
| 29 |
-
# # If you'd like to customize them, uncomment and adjust the policies.
|
| 30 |
-
# # See https://rasa.com/docs/rasa/policies for more information.
|
| 31 |
-
# - name: MemoizationPolicy
|
| 32 |
-
# - name: RulePolicy
|
| 33 |
-
# - name: TEDPolicy
|
| 34 |
-
# max_history: 5
|
| 35 |
-
# epochs: 100
|
| 36 |
-
# constrain_similarities: true
|
|
|
|
| 24 |
|
| 25 |
# Configuration for Rasa Core.
|
| 26 |
# https://rasa.com/docs/rasa/core/policies/
|
| 27 |
+
policies:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
credentials.yml
CHANGED
|
@@ -2,32 +2,5 @@
|
|
| 2 |
# which your bot is using.
|
| 3 |
# https://rasa.com/docs/rasa/messaging-and-voice-channels
|
| 4 |
|
| 5 |
-
rest:
|
| 6 |
-
# # you don't need to provide anything here - this channel doesn't
|
| 7 |
-
# # require any credentials
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
#facebook:
|
| 11 |
-
# verify: "<verify>"
|
| 12 |
-
# secret: "<your secret>"
|
| 13 |
-
# page-access-token: "<your page access token>"
|
| 14 |
-
|
| 15 |
-
#slack:
|
| 16 |
-
# slack_token: "<your slack token>"
|
| 17 |
-
# slack_channel: "<the slack channel>"
|
| 18 |
-
# slack_signing_secret: "<your slack signing secret>"
|
| 19 |
-
|
| 20 |
-
#socketio:
|
| 21 |
-
# user_message_evt: <event name for user message>
|
| 22 |
-
# bot_message_evt: <event name for bot messages>
|
| 23 |
-
# session_persistence: <true/false>
|
| 24 |
-
|
| 25 |
-
#mattermost:
|
| 26 |
-
# url: "https://<mattermost instance>/api/v4"
|
| 27 |
-
# token: "<bot token>"
|
| 28 |
-
# webhook_url: "<callback URL>"
|
| 29 |
-
|
| 30 |
-
# This entry is needed if you are using Rasa X. The entry represents credentials
|
| 31 |
-
# for the Rasa X "channel", i.e. Talk to your bot and Share with guest testers.
|
| 32 |
rasa:
|
| 33 |
url: "http://localhost:5002/api"
|
|
|
|
| 2 |
# which your bot is using.
|
| 3 |
# https://rasa.com/docs/rasa/messaging-and-voice-channels
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
rasa:
|
| 6 |
url: "http://localhost:5002/api"
|
endpoints.yml
CHANGED
|
@@ -1,42 +1,4 @@
|
|
| 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://0.0.0.0: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
|
|
|
|
| 1 |
# This file contains the different endpoints your bot can use.
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
action_endpoint:
|
| 4 |
+
url: "http://0.0.0.0:5055/webhook"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|