mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-17 17:04:48 +00:00
20 lines
299 B
Ruby
20 lines
299 B
Ruby
|
#frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module AiBot
|
||
|
module Personas
|
||
|
class Creative < Persona
|
||
|
def commands
|
||
|
[]
|
||
|
end
|
||
|
|
||
|
def system_prompt
|
||
|
<<~PROMPT
|
||
|
You are a helpful bot
|
||
|
PROMPT
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|