ChatGPT is an end-user product and that uses the moderation endpoint really well.
also,
ChatGPT is an end-user product and that uses the moderation endpoint really well.
also,
Donāt you think cutting the number of requests per second in half is a good idea? lol. I do.
When developing a tool for everyone, also the most commonly occurring usage patterns become particular relevant. If most of the time a call does moderation+completion, thatās a pretty good tip you need an endpoint that encapsulates exactly that.
I 100% agree with @sps
But I fail to see the logic here
Why would this cut the number of requests per second in half?
āAPI Endpoints with Integrated Content Moderationā take one HTTP request. Without integration itās two.
You made a whole lot of assumptions I wasnāt implying. Iām just saying have a āmoderate=trueā flag, and if I set that the server can simply throw a bad request error, with the reason. Itās not mixing responsibilities. Itās good API design. If something takes 10 steps you donāt always tell the API consumers to make 10 HTTP requests. Itās an art not a science.
HTTP APIs normally have all kinds of different āreasonsā that any particular request can fail. Iām just saying ābad moralityā is most certainly one of the reasons the ācompletionsā should be able to fail. And from my 23yrs exp as a dev, I can tell you itās about 3 lines of code to check this and throw an exception in OpenAIās implementation. Aside from adding ādontDingMeBroā as an argument.
The rate limits are counted per endpoint, using the moderation endpoint is not going to count towards your rate limits on completion requests
Regardless of academically good API design, Azure already does this. They run filtering on all chat completion requests and return moderation errors from that endpoint.
Good point. That would imply an āimmoral queryā attempt would cost nothing, because they refused to answer it. Thatās identical to submitting a moderation endpoint query that gets failed. Currently they already offer the pure moderation endpoint for free. Correct.
To me thatās just silly and would result in a lot of unhandled errors
Well I think thatās the crux of the issue in these threads. Azure thinks that itās important enough to strictly enforce all requests should be moderated before running. OpenAI doesnāt, and while OpenAI may punish you if you donāt moderate it, the documentation could certainly be more clear around when to use it and the ramifications of not using it.
Will take it as an action item to make it more clear people should use moderation, our best practices and safety best practices already suggest this but will look for more places to add it.
yes, they should. My service is partly backed by GPT and the actions of users of my service could lead to my api access to be revoked. I am implementing a moderation verification before the api call now, but I hate that this is even a thing. The API could just respond with a code (HTML - like) that says 403 Forbidden when against the guidelines and the api user can implement a catch