Skip to content

Commit c42e63b

Browse files
Merge pull request #4 from test-IO/hotfix/not_existing_method
fix
2 parents a431021 + 78252a8 commit c42e63b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
llm_eval_ruby (0.2.2)
4+
llm_eval_ruby (0.2.3)
55
httparty (~> 0.22.0)
66
liquid (~> 5.5.0)
77

lib/llm_eval_ruby/trace_adapters/langfuse.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def generation(**kwargs)
5050

5151
result = yield generation
5252

53-
finish_generation(generation, result)
53+
end_generation(generation, result)
5454

5555
result
5656
end

lib/llm_eval_ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module LlmEvalRuby
4-
VERSION = "0.2.2"
4+
VERSION = "0.2.3"
55
end

spec/llm_eval_ruby_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
RSpec.describe LlmEvalRuby do
44
it "has a version number" do
5-
expect(LlmEvalRuby::VERSION).to be("0.2.2")
5+
expect(LlmEvalRuby::VERSION).to be("0.2.3")
66
end
77
end

0 commit comments

Comments
 (0)