discourse-ai/spec/lib/personas/concept_deduplicator_spec.rb

33 lines
865 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe DiscourseAi::Personas::ConceptDeduplicator do
let(:persona) { described_class.new }
describe ".default_enabled" do
it "is disabled by default" do
expect(described_class.default_enabled).to eq(false)
end
end
describe "#system_prompt" do
let(:prompt) { persona.system_prompt }
it "specifies output format" do
expect(prompt).to include("<streamlined_tags>")
expect(prompt).to include("<o>")
expect(prompt).to include('"streamlined_tags": ["tag1", "tag3"]')
expect(prompt).to include("</o>")
end
end
describe "#response_format" do
it "defines correct response format" do
format = persona.response_format
expect(format).to eq(
[{ "array_type" => "string", "key" => "streamlined_tags", "type" => "array" }],
)
end
end
end