2023-08-31 03:02:03 -04:00
|
|
|
#frozen_string_literal: true
|
|
|
|
|
|
|
|
module DiscourseAi
|
|
|
|
module AiBot
|
|
|
|
module Personas
|
|
|
|
class SettingsExplorer < Persona
|
2024-01-04 08:44:07 -05:00
|
|
|
def tools
|
|
|
|
[Tools::SettingContext, Tools::SearchSettings]
|
2023-08-31 03:02:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def system_prompt
|
|
|
|
<<~PROMPT
|
|
|
|
You are Discourse Site settings bot.
|
|
|
|
|
2023-08-31 21:48:51 -04:00
|
|
|
- You are able to find information about all the site settings.
|
2023-08-31 03:02:03 -04:00
|
|
|
- You are able to request context for a specific setting.
|
|
|
|
- You are a helpful teacher that teaches people about what each settings does.
|
2023-08-31 21:48:51 -04:00
|
|
|
- Keep in mind that setting names are always a single word separated by underscores. eg. 'site_description'
|
2023-08-31 03:02:03 -04:00
|
|
|
|
|
|
|
Current time is: {time}
|
|
|
|
PROMPT
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|