Is it still possible to use the JSON format as NLU training data on Rasa (>= 2.0.0)?

Hi all,

I am still using an older version of Rasa for our projects, but I want to know if the current version is able to use JSON data as valid instances for the nlu training data.

As in our architecture we are considering the use of a NoSQL database for storing the curated data, I wonder if we are going to need to parse the data to yaml instead of directly importing it as json.

It should still be possible to load JSON data. However, the format is deprecated and will be removed in the future. So, if you want to be on the save side, I would convert the data to yaml first.

1 Like

I will start parsing to yaml then. Thank you, Tanja!