How to display argument tooltip in Assistant?

I created an automation in UiPath Studio that has input arguments with tooltip descriptions. I published the package to Orchestrator, and when I view the automation in Assistant, the arguments are there but the tooltip does not show up. Is there a way to get the tooltip descriptions to show up in Assistant?
Screenshots of my issue shown below:

Hi @AJ21

UiPath Assistant does not currently support displaying tooltip descriptions for input arguments directly. Tooltip descriptions are a Studio feature that provides additional information about input arguments when you hover over them in the Properties panel, but they are not automatically displayed in UiPath Assistant.

One possible workaround is to include the tooltip descriptions as comments within the input argument fields in UiPath Studio.

Thank you for your reply @Nitya1
For your suggested workaround, are you suggesting a comment in the “Default value” field for the argument? If so, I don’t think that will work for my case because my argument is a String, but the comment seems to be type System.Xml.Linq.XComment.

Hi @AJ21 - One way to handle this case is,

  • Starting of your workflow, take an If condition,
String.IsNullOrEmtpy(in_QueryProcessName)

Then block >> Assign Activity >> in_QueryProcessName = My process

Else block >> Do Nothing