mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-15 11:27:11 +08: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
11 lines
250 B
Ruby
11 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
|