Awesome-openAI

A curated list of all things awesome about OpenAI - the research company behind ChatGPT

OpenAI General Resources

Quick Start

Models

Guides on building applications

Latest News

Apps Utilizing OpenAI API with Frontend Frameworks/Libraries

Devops Tools using OpenAI APIs

VSCode Extensions

API References

To install the official Python bindings, run the following command:

pip install openai

To install the official Node.js library, run the following command in your Node.js project directory:

npm install openai

Authentication

The OpenAI API uses API keys for authentication. Visit your API Keys page to retrieve the API key you'll use in your requests.

Remember that your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.

All API requests should include your API key in an Authorization HTTP header as follows:

Authorization: Bearer YOUR_API_KEY

Last updated