2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RailsでDALL-E3のAPIを使ってみる

Posted at

Ruby on Railsを使用してDALL-E3 APIを介して画像を生成する方法を紹介します。

環境

ruby 3.2.2
Rails 7.0.8

完成図

生成前

rails-dall-e3-before.png

生成後

rails-dall-e3-completed.png

アプリケーション作成

DALL-E3を使った画像生成は、servicesディレクトリ下のopen_ai_service.rbファイルです。

追加したgem

API通信を簡素化するhttpartyと、APIキーを安全に管理するためのdotenv-railsを導入しました。

gem "httparty"
gem "dotenv-rails"

資料

OpenAIのドキュメントを参考にしました。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?