Hi Bubblers,
I’m working on a ChatGPT-style app where users can chat with AI models based on different categories (like Architecture, Medical, etc.). I’m using Option Sets to store category-specific prompt contexts and trying to send dynamic JSON to OpenAI using the Zeroqode OpenAI Full Plugin.
I’m building the (body) content
as a stringified JSON array like this:
[
{ "role": "system", "content": "[Prompt Context from Option Set]" },
{ "role": "user", "content": "[User Message]" }
]
Even after formatting as JSON-safe, OpenAI doesn’t return any response,
Has anyone successfully passed a dynamic message list (with system + user roles) using this plugin? Or is the API Connector a better route for this use case?
Appreciate any tips, examples, or confirmation if this plugin has limitations with structured JSON input.
Thanks!