discourse-ai/spec/lib/modules/ai_bot/anthropic_bot_spec.rb
Sam Saffron c7781c57fc
Fix all specs
Also ensure triage is more consistent by reducing temp
2023-05-29 14:11:32 +10:00

34 lines
772 B
Ruby

# frozen_string_literal: true
RSpec.describe DiscourseAi::AiBot::AnthropicBot do
describe "#update_with_delta" do
def bot_user
User.find(DiscourseAi::AiBot::EntryPoint::GPT4_ID)
end
subject { described_class.new(bot_user) }
describe "get_delta" do
it "can properly remove Assistant prefix" do
context = {}
reply = +""
full = +"test"
reply << subject.get_delta({ completion: full }, context)
expect(reply).to eq(full)
full << "test2"
reply << subject.get_delta({ completion: full }, context)
expect(reply).to eq(full)
full << "test3"
reply << subject.get_delta({ completion: full }, context)
expect(reply).to eq(full)
end
end
end
end