Skip to content

Instantly share code, notes, and snippets.

@cmpadden
Created August 4, 2023 19:41
Show Gist options
  • Select an option

  • Save cmpadden/b919f2a94b89dbbbc2dfb6c6b9a1fbe2 to your computer and use it in GitHub Desktop.

Select an option

Save cmpadden/b919f2a94b89dbbbc2dfb6c6b9a1fbe2 to your computer and use it in GitHub Desktop.
List OpenAI Models
#!/bin/bash
models=$(curl -s https://api.openai.com/v1/models -H "Authorization: Bearer $OPENAI_API_KEY")
jq .data[].id <(echo "$models") | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment