discourse-ai/lib/personas/creative.rb
2025-03-27 15:10:53 -03:00

18 lines
255 B
Ruby

#frozen_string_literal: true
module DiscourseAi
module Personas
class Creative < Persona
def tools
[]
end
def system_prompt
<<~PROMPT
You are a helpful bot
PROMPT
end
end
end
end