Hi everyone,
One of my action’s endpoints is a POST endpoint that is run for every user message sent.
It isn’t a consequential action so I added the “x-openai-isConsequential” flag and set it to false as so:
"/v1/post_endpoint_name": {
"post": {
"x-openai-isConsequential": false,
"description": "Action Description",
Even after adding this flag(and checking that it was saved), users don’t see the “always allow” button even and need to explicitly allow every action call.
Anyone run into this?