After going through the openai docs it wasn’t to clear to me where i can find all the method that can be used when we install openai with NPM. Being a javascript developer, i’m always thinking in terms of properties and methods. So i understand that there is:
openai.createCompletion
openai.createEdit
Is there any other methods besides those two? Can we read about it somewhere?
thanks
I think before you look at how wrappers are structured, you should review the core OpenAI API docs.
Every OpenAI API method is listed in the following link with code examples as well as sample API responses which you can easily use when you want to parse an API response.
@ruby_coder thanks for your reply. Ok i just realized that they have the api’s in the code blocks to the right. Since a lot of other docs usually have them in the body i was just blindly looking only there. i need some sleep.