No release in over a year
OpenAI Image Generation API client library in Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.18
~> 10
~> 3.0
~> 3.8
 Project Readme

OpenaiImageGenerator

Generate image with Open AI Image Generation Model

Installation

Add this line to your application's Gemfile:

gem 'openai_image_generator'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install openai_image_generator

Usage

Quickstart

For a quick test you can pass your api key directly to a new client:

result = OpenaiImageGenerator::Client.new(api_key).generate('a white siamese cat', 2, '256x256')

Open AI Image Generation Model

OpenAI has a model that help you generate a new image given a prompt and/or an input image.

api_key = "YOUR_API_KEY"

# A text description of the desired image(s). The maximum length is 1000 characters.
prompt = "A cute baby sea otter" 

# The number of images to generate. Must be between 1 and 10.
n = 2

# The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024.
size = '256x256'

result = OpenaiImageGenerator::Client.new(api_key).generate(prompt, n, size)

puts result

# => {"created"=>1676326332, "data"=>[{"url"=>"https://loremflickr.com/300/300"}, {"url"=>"https://loremflickr.com/300/300"}]}

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/openai_image_generator. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the OpenaiImageGenerator project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.