discourse-ai/spec/fabricators/ai_persona_fabricator.rb
Roman Rizzi 0d60aca6ef
FEATURE: Personas powered summaries. (#1232)
* REFACTOR: Move personas into it's own module.

* WIP: Use personas for summarization

* Prioritize persona default LLM or fallback to newest one

* Simplify summarization strategy

* Keep ai_sumarization_model as a fallback
2025-04-02 12:54:47 -03:00

7 lines
180 B
Ruby

# frozen_string_literal: true
Fabricator(:ai_persona) do
name { sequence(:name) { |i| "persona_#{i}" } }
description "I am a test bot"
system_prompt "You are a test bot"
end