mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-07 01:39:54 +00:00
Previous to this change we relied on explicit loading for a files in Discourse AI. This had a few downsides: - Busywork whenever you add a file (an extra require relative) - We were not keeping to conventions internally ... some places were OpenAI others are OpenAi - Autoloader did not work which lead to lots of full application broken reloads when developing. This moves all of DiscourseAI into a Zeitwerk compatible structure. It also leaves some minimal amount of manual loading (automation - which is loading into an existing namespace that may or may not be there) To avoid needing /lib/discourse_ai/... we mount a namespace thus we are able to keep /lib pointed at ::DiscourseAi Various files were renamed to get around zeitwerk rules and minimize usage of custom inflections Though we can get custom inflections to work it is not worth it, will require a Discourse core patch which means we create a hard dependency.
136 lines
3.5 KiB
Ruby
136 lines
3.5 KiB
Ruby
#frozen_string_literal: true
|
|
|
|
module DiscourseAi::AiBot::Commands
|
|
class ImageCommand < Command
|
|
class << self
|
|
def name
|
|
"image"
|
|
end
|
|
|
|
def desc
|
|
"Renders an image from the description (remove all connector words, keep it to 40 words or less). Despite being a text based bot you can generate images! (when user asks to draw, paint or other synonyms try this)"
|
|
end
|
|
|
|
def parameters
|
|
[
|
|
Parameter.new(
|
|
name: "prompts",
|
|
description:
|
|
"The prompts used to generate or create or draw the image (40 words or less, be creative) up to 4 prompts",
|
|
type: "array",
|
|
item_type: "string",
|
|
required: true,
|
|
),
|
|
Parameter.new(
|
|
name: "seeds",
|
|
description:
|
|
"The seed used to generate the image (optional) - can be used to retain image style on amended prompts",
|
|
type: "array",
|
|
item_type: "integer",
|
|
),
|
|
]
|
|
end
|
|
end
|
|
|
|
def result_name
|
|
"results"
|
|
end
|
|
|
|
def description_args
|
|
{ prompt: @last_prompt }
|
|
end
|
|
|
|
def chain_next_response
|
|
false
|
|
end
|
|
|
|
def custom_raw
|
|
@custom_raw
|
|
end
|
|
|
|
def process(prompts:, seeds: nil)
|
|
# max 4 prompts
|
|
prompts = prompts[0..3]
|
|
seeds = seeds[0..3] if seeds
|
|
|
|
@last_prompt = prompts[0]
|
|
|
|
show_progress(localized_description)
|
|
|
|
results = nil
|
|
|
|
# this ensures multisite safety since background threads
|
|
# generate the images
|
|
api_key = SiteSetting.ai_stability_api_key
|
|
engine = SiteSetting.ai_stability_engine
|
|
api_url = SiteSetting.ai_stability_api_url
|
|
|
|
threads = []
|
|
prompts.each_with_index do |prompt, index|
|
|
seed = seeds ? seeds[index] : nil
|
|
threads << Thread.new(seed, prompt) do |inner_seed, inner_prompt|
|
|
attempts = 0
|
|
begin
|
|
DiscourseAi::Inference::StabilityGenerator.perform!(
|
|
inner_prompt,
|
|
engine: engine,
|
|
api_key: api_key,
|
|
api_url: api_url,
|
|
image_count: 1,
|
|
seed: inner_seed,
|
|
)
|
|
rescue => e
|
|
attempts += 1
|
|
retry if attempts < 3
|
|
Rails.logger.warn("Failed to generate image for prompt #{prompt}: #{e}")
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
|
|
while true
|
|
show_progress(".", progress_caret: true)
|
|
break if threads.all? { |t| t.join(2) }
|
|
end
|
|
|
|
results = threads.map(&:value).compact
|
|
|
|
if !results.present?
|
|
return { prompts: prompts, error: "Something went wrong, could not generate image" }
|
|
end
|
|
|
|
uploads = []
|
|
|
|
results.each_with_index do |result, index|
|
|
result[:artifacts].each do |image|
|
|
Tempfile.create("v1_txt2img_#{index}.png") do |file|
|
|
file.binmode
|
|
file.write(Base64.decode64(image[:base64]))
|
|
file.rewind
|
|
uploads << {
|
|
prompt: prompts[index],
|
|
upload: UploadCreator.new(file, "image.png").create_for(bot_user.id),
|
|
seed: image[:seed],
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
@custom_raw = <<~RAW
|
|
|
|
[grid]
|
|
#{
|
|
uploads
|
|
.map do |item|
|
|
"![#{item[:prompt].gsub(/\|\'\"/, "")}|512x512, 50%](#{item[:upload].short_url})"
|
|
end
|
|
.join(" ")
|
|
}
|
|
[/grid]
|
|
RAW
|
|
|
|
{ prompts: uploads.map { |item| item[:prompt] }, seeds: uploads.map { |item| item[:seed] } }
|
|
end
|
|
end
|
|
end
|