OpenAI Connector configuration issue

0
I'm trying to configure the OpenAI connector to point to our Azure OpenAI models. I keep getting an issue where the InputModality combobox is not populated. I can't submit the "Add deployed Model" screen as a result. I've added GenAICommons and AIConnector latest versions The combobox has selectable objects - [InputModality By Database]. When I review the console for ConnectionBus Mapping - I see this log: ConnectionBus_Mapping "Query not mapped: QueryParseResult(SELECT ""GenAICommons.InputModality"".* FROM ""GenAICommons.InputModality"" ,com.mendix.connectionbus.retrieve.parameters.ParameterMap@3e1bb0a1)"The table exists and is populated in the database. I have cleaned deployment folder etc. restarted, so I dont think its a model synch issue. Anyone experience this ?
asked
1 answers
1

I would not treat the query not mapped line as the root cause yet.

The more likely issue is that the combo box cannot actually retrieve visible GenAICommons.InputModality objects at runtime.


I would check two things first:

  1. whether the current user role has read access to GenAICommons.InputModality and the related association,
  2. whether the reference data in InputModality is really present and visible at runtime.


The easiest way to verify this is to create a temporary page with a data grid 2 on GenAICommons.InputModality and open it with the same user role.

If the grid is empty, this is likely a security issue.

If the grid shows records, then the problem is more likely in the widget/page setup.

answered