Skip to content

Instantly share code, notes, and snippets.

@sbatson5
Last active January 22, 2025 17:56
Show Gist options
  • Save sbatson5/e434b88425fe3d3c813969aad92a9191 to your computer and use it in GitHub Desktop.
Save sbatson5/e434b88425fe3d3c813969aad92a9191 to your computer and use it in GitHub Desktop.
client = OpenAI::Client.new
response = client.chat(
parameters: {
model: 'gpt-4o', # Required.
response_format: { type: 'json_object' },
messages: [{ role: 'user', content: content }], # Required.
temperature: 0.7
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment