Get current date in domain file

Hi everyone. I’m trying to render buttons in an utterance with titles “Today” and “Tomorrow”. I want to use this utterance in a form action. Can someone point me in the right direction please? Thanks.

You may already be aware of the documentation on forms. You may notice the dispatcher in the documentation. This object has an utter_message and I believe this is the signature of that method (I found the signature here);

(CollectingDispatcher
  .utter_message(text=None,
                 image=None, 
                 json_message=None, 
                 template=None, 
                 attachment=None, 
                 buttons=None, 
                 elements=None, **kwargs)

You should also be able to have it render buttons that represent a choice between two dates.