my rasa api response is like [ { “recipient_id”: “silla”, “text”: “https://www.google.com/” } ] it is rasa api respose on postman so first value is recipient_id and second value is text how can i change this “text” to “google” keywords for this custom user intent open_google
i want this like
[ { “recipient_id”: “silla”, “google”: “https://www.google.com/” } ]
how can i do that ?