Understanding the Available Models and Which One to Use OpenAI Available Models and Important Considerations cat << EOF > src/test_api.py from api import client models = client.models.list() for model in models: print(vars(model)) EOF python src/test_api.py { 'id': 'curie-search-query', 'created': 1651172509, 'object': 'model', 'owned_by': 'openai-dev' } { 'id': 'babbage-search-query', 'created': 1651172509, 'object': 'model', 'owned_by': 'openai-dev' } { 'id': 'dall-e-3', 'created': 1698785189, 'object': 'model', 'owned_by': 'system' } ... etc cat << EOF > src/test_api.py from api import client models = client.models.list() for model in models: print(model.id) EOF python src/test_api.py dall-e-3 dall-e-2 GPT-4 davinci-002 babbage-002 whisper-1 GPT-3.5-Turbo-16k GPT-3.5-Turbo GPT-3.5-Turbo-Instruct Which Model to Use? OpenAI Model Series GPT-4 Series GPT-3.5 Series InstructGPT-3 Series Base GPT-3 Series Codex Series Content Filter DALL-E Series TTS Series Whisper Model Embedding Model OpenAI Models and Pricing What’s Next?