Nested entities in markdown format - Getting Started with Rasa / Tutorials, Resources & Videos - Rasa Community Forum

👋 Introducing the Rasa Playground

Nested entities in markdown format

post by jalalirs on Jul 18, 2019

I want to create a nested entity, an entity that is a combination of a look up entity and a number. In markdown format. My current training file looks something like the following:

# intent: select_galaxy

# intent:select_star

## intent:set_threshold

# lookup:galaxy

milky way

galaxy1

galaxy2

However, the model, while recognizes the "set_threshold" intent, it extracts "bright 10.4" as a star entity. In order to solve this, one needs to strict the star entity to the combination of a galaxy name and a number. For instance, what I need is something like this

Any ideas how to achieve that?