discourse/plugins/discourse-ai/lib/agents/creative.rb
Sam e3fae646d4
DEV: AI persona to agent migration (#38319)
Co-authored-by: Keegan George <kgeorge13@gmail.com>
2026-03-10 15:59:45 +11:00

17 lines
251 B
Ruby
Vendored

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