I have created a custom entity "toppings", I have an agent Pizza. I am creating an intent by using Dialogflow REST API and I am trying to put multiple training phrases. But in the console I am unable to get all those training phrases. All the Training Phrases are getting combined to a single line.
"trainingPhrases": [
{
"name":"",
"type": "EXAMPLE",
"parts": [
{
"text": "I want a pizza with extra "
},
{
"text": "cheese",
"entityType":"@toppings",
"alias": "pizza",
"userDefined": "True"
},
{
"text" : "where is my pizza"
},
{
"text" : "get me a pizza"
}
]
}
]
TIA

