Thanks for your post! I take it you are using an action endpoint for this? Because the line tracker._set_slot("make", "honda") will set the tracker’s slot on the action endpoint side only. The “real” tracker on core’s side only gets updated by the events which are passed back from the action.run() call (see the processor code)
if the example template I put there has a slot in its string? (I am referring to when a string is something like “Hey there, {name}!” and there is a slot & entity called “name”)
Would the same work with utter_message instead of utter_template?
If you want to interact with the slots you set on the Action server side, you actually need to return them back to the Rasa server. There are two ways to do this