mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-09 11:48:47 +00:00
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
12 lines
250 B
Ruby
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
|