AI Functions
Common Request Body
{
"openAIConfiguration": {
"apiKey": "string",
"model": "string"
},
// Operation-specific body below
}Response Format
Last updated
{
"openAIConfiguration": {
"apiKey": "string",
"model": "string"
},
// Operation-specific body below
}Last updated
{
"status": "ResponseStatus",
"response": "string",
"openAiError": "AIError (optional)"
}public enum AIError : byte {
UNKNOWN = 0,
CONTENT_FLAGGED = 1,
TOO_LONG = 2,
INVALID_API_KEY = 3
}