2023-09-14 12:53:44 -03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
RSpec.describe DiscourseAi::AiHelper::Painter do
|
|
|
|
subject(:painter) { described_class.new }
|
|
|
|
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.ai_stability_api_url = "https://api.stability.dev"
|
|
|
|
SiteSetting.ai_stability_api_key = "abc"
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#commission_thumbnails" do
|
|
|
|
let(:artifacts) do
|
|
|
|
%w[
|
|
|
|
iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAEhQGAhKmMIQAAAABJRU5ErkJggg==
|
|
|
|
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mP8z8BQz0AEYBxVSF+FABJADveWkH6oAAAAAElFTkSuQmCC
|
|
|
|
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mNk+M9Qz0AEYBxVSF+FAAhKDveksOjmAAAAAElFTkSuQmCC
|
|
|
|
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFUlEQVR42mNkYPhfz0AEYBxVSF+FAP5FDvcfRYWgAAAAAElFTkSuQmCC
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:raw_content) do
|
|
|
|
"Poetry is a form of artistic expression that uses language aesthetically and rhythmically to evoke emotions and ideas."
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:expected_image_prompt) { <<~TEXT.strip }
|
|
|
|
Visualize a vibrant scene of an inkwell bursting, spreading colors across a blank canvas,
|
FEATURE: UI to update ai personas on admin page (#290)
Introduces a UI to manage customizable personas (admin only feature)
Part of the change was some extensive internal refactoring:
- AIBot now has a persona set in the constructor, once set it never changes
- Command now takes in bot as a constructor param, so it has the correct persona and is not generating AIBot objects on the fly
- Added a .prettierignore file, due to the way ALE is configured in nvim it is a pre-req for prettier to work
- Adds a bunch of validations on the AIPersona model, system personas (artist/creative etc...) are all seeded. We now ensure
- name uniqueness, and only allow certain properties to be touched for system personas.
- (JS note) the client side design takes advantage of nested routes, the parent route for personas gets all the personas via this.store.findAll("ai-persona") then child routes simply reach into this model to find a particular persona.
- (JS note) data is sideloaded into the ai-persona model the meta property supplied from the controller, resultSetMeta
- This removes ai_bot_enabled_personas and ai_bot_enabled_chat_commands, both should be controlled from the UI on a per persona basis
- Fixes a long standing bug in token accounting ... we were doing to_json.length instead of to_json.to_s.length
- Amended it so {commands} are always inserted at the end unconditionally, no need to add it to the template of the system message as it just confuses things
- Adds a concept of required_commands to stock personas, these are commands that must be configured for this stock persona to show up.
- Refactored tests so we stop requiring inference_stubs, it was very confusing to need it, added to plugin.rb for now which at least is clearer
- Migrates the persona selector to gjs
---------
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
Co-authored-by: Martin Brennan <martin@discourse.org>
2023-11-21 16:56:43 +11:00
|
|
|
embodying words in tangible forms, symbolizing the rhythm and emotion evoked by poetry,
|
2023-09-14 12:53:44 -03:00
|
|
|
under the soft glow of a full moon.
|
|
|
|
TEXT
|
|
|
|
|
|
|
|
it "returns 4 samples" do
|
|
|
|
expected_prompt = [
|
|
|
|
{ role: "system", content: <<~TEXT },
|
|
|
|
Provide me a StableDiffusion prompt to generate an image that illustrates the following post in 40 words or less, be creative.
|
|
|
|
TEXT
|
|
|
|
{ role: "user", content: raw_content },
|
|
|
|
]
|
|
|
|
|
|
|
|
OpenAiCompletionsInferenceStubs.stub_response(expected_prompt, expected_image_prompt)
|
|
|
|
StableDiffusionStubs.new.stub_response(expected_image_prompt, artifacts)
|
|
|
|
|
|
|
|
thumbnails = subject.commission_thumbnails(raw_content, user)
|
|
|
|
thumbnail_urls = Upload.last(4).map(&:short_url)
|
|
|
|
|
|
|
|
expect(thumbnails).to contain_exactly(*thumbnail_urls)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|