1
0
mirror of synced 2026-08-05 15:26:55 +00:00
Files
2025-05-29 15:17:34 +10:00

18 lines
251 B
Ruby

#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