mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 23:32:45 +00:00
18 lines
251 B
Ruby
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
|