Im getting this error in using of utter_template

: Use of utter_template is deprecated. Use utter_message(template=<template_name>) instead. FutureWarning,

Your version is old. Try the latest version.

im using rasa 1.9.5 should i use the new one 1.9.6

In the newer version of RASA, utter_template is deprecated. In your utter_template function, you got a template_name. suppose your code is something like…

utter_template(“utter_greet”)

So change this function to

utter_message(template =“utter_greet”)