Hi All, I am hitting my rasa server on the model/parse endpoint using curl localhost:5005/model/parse -d ‘{“text”:“Hi”}’ . I am getting correct intent, but the response is null. Can anyone help me solve it?
This is the response I am getting
{
"text":"Hi",
"intent":{
"id":2401587965935920955,
"name":"greetings.hello",
"confidence":0.748959481716156
},
"entities":[ ],
"intent_ranking":[
{
"id":2401587965935920955,
"name":"greetings.hello",
"confidence":0.748959481716156
},
{
"id":916937703885804630,
"name":"greetings.goodmorning",
"confidence":0.06902354210615158
},
{
"id":2857899066996091794,
"name":"greetings.goodevening",
"confidence":0.040738534182310104
},
{
"id":6007210907891355534,
"name":"greetings.how_are_you",
"confidence":0.03640391305088997
},
{
"id":-5711088046477069850,
"name":"greetings.bye",
"confidence":0.03622930124402046
},
{
"id":423038357581255635,
"name":"greetings.goodnight",
"confidence":0.024439124390482903
},
{
"id":8278756237344589134,
"name":"greetings.nice_to_talk_to_you",
"confidence":0.018406303599476814
},
{
"id":4132358217728696234,
"name":"appraisal.thank_you",
"confidence":0.010744664818048477
},
{
"id":5606075028228511676,
"name":"agent.acquaintance",
"confidence":0.00826401449739933
},
{
"id":-683074124695170743,
"name":"appraisal.welcome",
"confidence":0.006791161373257637
}
],
"response_selector":{
"all_retrieval_intents":[],
"default":{
"response":{
"id":null,
"responses":null,
"response_templates":null,
"confidence":0.0,
"intent_response_key":null,
"utter_action":"utter_None",
"template_name":"utter_None"
},
"ranking":[]
}
}
}