Does anyone have any info on how the "guardrails" are implemented in GPTs? I haven't been able to find much info.
https://platform.openai.com/docs/guides/moderation/overview
> The moderation endpoint is a tool you can use to check whether content complies with OpenAI's usage policies. Developers can thus identify content that our usage policies prohibits and take action, for instance by filtering it.
The raw access to the models (e.g. doing calls to to text-davinci-003) isn't filtered - there are times when as a developer, you may need that unfiltered data (e.g. you don't want to moderate the input text if you're trying to clean it up).
For tools that they provide such as ChatGPT, it is likely that that model is run on the output (and possibly the input too) which then goes to some canned responses.