-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from OmarMWarraich/11-trasnmit-data-to-stable-…
…diffusion 11 transmit data to stable diffusion
- Loading branch information
Showing
6 changed files
with
114 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,71 @@ | ||
class Txt2ImgsController < ApplicationController | ||
before_action :authenticate_user! | ||
|
||
def index | ||
|
||
@styles = Styles.load | ||
|
||
api_instance = RStableDiffusionAI::DefaultApi.new | ||
config = RStableDiffusionAI::Configuration.new | ||
config.host = ENV['SD_API_HOST'] | ||
config.scheme = ENV['SD_API_SCHEME'] | ||
config.debugging = true | ||
|
||
client = RStableDiffusionAI::ApiClient.new(config) | ||
|
||
api_instance = RStableDiffusionAI::DefaultApi.new(client) | ||
|
||
result = api_instance.get_sd_models_sdapi_v1_sd_models_get | ||
@models = result.map { |model| model.model_name } | ||
end | ||
|
||
def create | ||
style = Styles.find_by_name(params[:style_template]) | ||
style = { name: '++ None', prompt: '{prompt}', negative_prompt: '' } if style.nil? | ||
style = Styles.find_by_name(image_create_params[:style_template]) | ||
style ||= { name: 'default', prompt: '{prompt}', negative_prompt: '' } | ||
|
||
prompt = params[:prompt] | ||
prompt = image_create_params[:prompt] | ||
merged_prompt = style[:prompt].gsub('{prompt}', prompt) | ||
merged_negative_prompt = [style[:negative_prompt], image_maker_params[:negative_prompt]].compact.join(', ') | ||
merged_negative_prompt = [style[:negative_prompt], image_create_params[:negative_prompt]].compact.join(', ') | ||
|
||
aspect_ratios = { | ||
'3:2' => { height: 682, width: 1024 }, | ||
'1:1' => { height: 1024, width: 1024 }, | ||
'2:3' => { height: 1024, width: 682 } | ||
} | ||
|
||
height, width = aspect_ratios.fetch(image_create_params[:aspect_ratio], { height: 1024, width: 1024 }).values_at(:height, | ||
:width) | ||
|
||
sd_settings = { | ||
original_prompt: image_create_params[:prompt], | ||
prompt: merged_prompt, | ||
negative_prompt: merged_negative_prompt, | ||
sampler_name: 'DPM++ 2M Karras', | ||
width: width, | ||
height: height, | ||
steps: image_create_params[:steps], | ||
override_settings: { sd_model_checkpoint: image_create_params.delete(:sd_model) } | ||
}.deep_symbolize_keys | ||
|
||
new_settings = image_create_params.to_h.deep_symbolize_keys.merge(sd_settings) | ||
Rails.logger.info("sd_settings: #{sd_settings}") | ||
# new_settings = image_create_params.to_h.deep_symbolize_keys.merge(sd_settings) | ||
render_result = SdRenderJob.perform_now(sd_settings, current_user.id) | ||
|
||
respond_to do |format| | ||
format.turbo_stream do | ||
render turbo_stream: turbo_stream.replace( | ||
'image_maker', | ||
partial: 'txt2_imgs/image_maker', | ||
locals: { | ||
render_result: render_result | ||
} | ||
) | ||
end | ||
end | ||
end | ||
|
||
private | ||
|
||
def image_create_params | ||
params.require(:image_maker).permit(:prompt, :style_template) | ||
params.require(:image_maker).permit(:style_template, :prompt, :negative_prompt, :sd_model, :aspect_ratio, :steps) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
class SdRenderJob < ApplicationJob | ||
queue_as :default | ||
|
||
def perform(render_settings, user_id) | ||
original_prompt = render_settings.delete(:original_prompt) | ||
style_template = render_settings.delete(:style_template) | ||
|
||
config = RStableDiffusionAI::Configuration.new | ||
config.host = ENV['SD_API_HOST'] | ||
config.scheme = ENV['SD_API_SCHEME'] | ||
config.debugging = true | ||
|
||
client = RStableDiffusionAI::ApiClient.new(config) | ||
|
||
api_instance = RStableDiffusionAI::DefaultApi.new(client) | ||
|
||
result = api_instance.text2imgapi_sdapi_v1_txt2img_post(render_settings) | ||
|
||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<turbo-frame id="image_maker" action="update"> | ||
<%= image_tag "data:image/png;base64,#{render_result.images[0]}", alt: "#{render_result.info}", class: "img-fluid thumbnail" %> | ||
</turbo-frame> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
require "test_helper" | ||
|
||
class SdRenderJobTest < ActiveJob::TestCase | ||
# test "the truth" do | ||
# assert true | ||
# end | ||
end |