mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 11:12:53 +08:00
17 lines
251 B
Ruby
Vendored
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
|