Are there any ‘official’ regular expressions for the API key string and the Organisation ID string formats?
To save pointless usage of the api endpoint, I would like to do some simple pre-validation in my functions before attempting a connection/authentication.
Hey! We don’t have anything official to do this right now but it’s a good suggestion. Can’t promise we will have anything soon but you can ask ChatGPT to write the regex for you and it should be pretty close to what you need for something like this.
For reference, this is the output ChatGPT gave me:
function isValidFormat(apiKey) {
// Check if it's a string, has some length, and starts with 'sk'
return typeof apiKey === 'string' && apiKey.length > 0 && apiKey.startsWith('sk');
}
var apiKey = 'YOUR_API_KEY_HERE'; // Replace with your OpenAI key
console.log(isValidFormat(apiKey) ? 'Key format looks good' : 'Key format is incorrect');
I am encountering issues where some APIs, like the File APIs, accept the “sk-” prefix while others, such as the Image APIs, reject the prefix. It seems like a kluge to have to manipulate the API keys.
if(token->StartsWith("sk-")) {
token := token->SubString((3), token->Size() - 3);
};
image := Image->Create("Create an image of two old steel gears with a transparent background", token);
if(image <> Nil) {
urls := image->GetUrls();
each(url in urls) {
url->ToString()->PrintLine();
};
};
Using the key ‘sk-proj-dSUxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxY8cM’ and calling ‘https://api.openai.com/v1/images/generations’ without chopping off the “sk-” prefix generates the error message below.
The call works fine when the prefix is removed.
Suggestions?
{
"error": {
"code": "invalid_api_key",
"message": "Incorrect API key provided: sk-sk-pr***********************************************Y8cM. You can find your API key at https://platform.openai.com/account/api-keys.",
"param": null,
"type": "invalid_request_error"
}
}