Ошибка: запрошенный URL / разговоры не найдены - PullRequest
0 голосов
/ 08 ноября 2019

Я звоню в API RASA от почтальона http://localhost:5005/conversations, но он выдает ошибку.

Я создал хранилище трекеров для хранения чата в SQL, и я использую следующую команду для запуска rasa.

rasa run --cors "*" -m models --enable-api --log-file out.log --endpoints endpoints.yml --auth-token thisismysecret --debug

Я не знаю, где я ошибаюсь.

Я ожидаю следующего вывода.

```[

{

    "conversation_id": "string",
    "latest_event_time": 0,
    "latest_input_channel": "string",
    "intents": 

[],
"actions": 
[],
"minimum_action_confidence": 0,
"in_training_data": true,
"policies": 
[],
"n_user_messages": 0,
"flagged_messages": 
[],
"unflagged_messages": 

        []
    }

]```

endpoints.yml

```action_endpoint:
  url: "http://localhost:5055/webhook"

# Tracker store which is used to store the conversations.
# By default the conversations are stored in memory.
# https://rasa.com/docs/rasa/api/tracker-stores/

tracker_store:
    type: SQL
    dialect: "mysql+pymysql"  # the dialect used to interact with the db
    url: "localhost"  # (optional) host of the sql db, e.g. "localhost"
    db: "db"  # path to your db
    username: "username" # username used for authentication
    password:  "password" # password used for authentication
    query: # optional dictionary to be added as a query string to the connection URL```

1 Ответ

0 голосов
/ 08 ноября 2019

Это означает, что, скорее всего, вы не правильно определили маршрут / конечную точку /conversation.

...