How can i get the model name?

How can I get the model name? I am using the callback_url property in the train model API, it is calling the call back URL, but I am not sure where I will get to know the model name?

Your models are storage in models folder

You can get this names using rasa X or if you want to get the current models using API, you can use http://localhost:5005/status

{
  "model_id": {
    "config": [
      "7625d69d93053ac8520a544d0852c626"
    ],
    "domain": [
      "229b51e41876bbcbbbfbeddf79548d5a"
    ],
    "messages": [
      "cf7eda7edcae128a75ee8c95d3bbd680"
    ],
    "stories": [
      "b5facea681fd00bc7ecc6818c70d9639"
    ],
    "trained_at": 1556527123.42784,
    "version": "1.0.0"
  },
  "model_file": "20190429-103105.tar.gz",
  "num_active_training_jobs": 2
}

@itsjhonny think this API is returning the model I am using not the model I just trained using train API.

here is the status API result

Yeah! The API just return the model are you using

I think the only easy way to get this information is using RASA X or botfront

Without rasa x, I believe rest two ways

  • Create some API router to get all files in models folder and return to you
  • Or use some SFTP service in your server

@itsjhonny Do you know any solution to this I really need help, please?