Sam e3abbd9f46
FEATURE: add researcher persona (#181)
The researcher persona has access to Google and can perform
various internet research tasks. At the moment it can not read
web pages, but that is under consideration
2023-09-04 12:05:27 +10:00

12 lines
250 B
Ruby

# frozen_string_literal: true
RSpec.describe DiscourseAi::AiBot::Personas::Researcher do
let :researcher do
subject
end
it "renders schema" do
expect(researcher.commands).to eq([DiscourseAi::AiBot::Commands::GoogleCommand])
end
end