Agent Builder not rendering options values/labels of Select/RadioGroup Widget Builder

When I set the option values and labels directly in the card widget, they don’t render in the Agent Builder Preview. I can see there are three options, but both the value and label fields appear empty. These values are meant to be fixed and not editable by the agent.

does it work correctly if you set each value separately instead of one big jsonOptions block? What are your agent prompt instructions about what to fill in? Try instructing the agent prompt to put the labels and values you want.

The jsonOptions is working correctly. The problem occurs when setting the value and label inside the card instead of in the JSON. The thing is, there are some selects where I don’t want the agent to define the labels and values, I want them to be predefined in the <Card>.

<Card>
  <Text value='Values at card' />
  <Select name="choice"
    options={[
      { value: '1', label: 'A' },
      { value: '2', label: 'B' },
      { value: '3', label: 'C' }
    ]}
  />
</Card>