This is an extension that incorporates the openAI's Codex API. By providing the code editor with the API_KEY of openAI Codex you can directly use it within your code files to generate code automatically.
- This is just an abstraction to the underlying Codex API that was implemented by openAI
- openai-codex <- Check the following link to understand the specification.
- You are required to have a Codex API key in your possession.
- Cannot generate multiple completion for the same piece of code
- The Generated code, is limited by the effeciency of AI
- Even though you have a API Key the extension might reject it
// Key not verified error message might be displayed Check: - If you have access to davinci-codex through playground Fix: - If you don't have access: please apply for codex - If you do have the access: A simple fix might be to create a new API key from the API keys settings and use that instead
- Improved Error Messages
{
// Specification for extension
"model_used": "davinci-codex",
// Tokens generated by AI per exection
// (Can be changed through settings)
"token_generation": 128,
"bug fixes": "README.md, main_code",
"fixes": "Improved key verification & Error Understanding"
}