Is there a way to populate UI fields using variables within a module?

I want to know if there is a way to dynamically create fields in UI editor using properties within the module?

{% set tagChoices = [] %}
{% set myTags = blog_tags(blog, 250) %}

{% choice “filter by tag” label=“tags to filter post by”, choices={{myTags}}, export_to_template_context=True %}

Current View:

note: The choices module does not render which may be due to the export_to_template_context prop being true and the options do not show up

Just to confirm, I used a choice tag without the export_to_template_context to see if that would fix it
Screenshots:

NParker4_0-1692461677989.png

note: There were no updates to the view in design manager’s preview screen (same as above picture)

Desired Result:
There should be a UI input that lets me pick a tag from my blog as an option for the choice module in the preview screen of the design manager

Hi NParker4,
export_to_template_context is not supported in custom modules.

For this case I would suggest you to use the tag field selector: