PurAI is SHUT DOWN. This website is purely for archival purposes. No such services exist anymore.
Docs
Model Forcing

Model Forcing

⚠️

This only works for OpenAI endpoints!

There is an optional query parameter for OpenAI endpoints: forceModel

This parameter can only be true, auto or false. Defaults to auto.

  • If it is true, the API will try to find responses with your requested model.
  • If it is auto, the API will try to find responses with your requested model. If not found, will return first valid response.
  • If it is false, the API will return first valid response.

Example Request Body With forceModel

{
	"forceModel": true,
	"messages": [
		{
			"role": "user",
			"content": "Who are you?"
		}
	]
}