Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
## [0.2.5] - 2024-12-16

- Added metadata field to traces.

## [0.2.6] - 2025-03-07

- Fixed span for local adapter.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
llm_eval_ruby (0.2.5)
llm_eval_ruby (0.2.6)
httparty (~> 0.22.0)
liquid (~> 5.5.0)

Expand Down
4 changes: 2 additions & 2 deletions lib/llm_eval_ruby/trace_adapters/local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def span(**kwargs)

return span unless block_given?

result = yield
result = yield span

end_span(span, result)

Expand All @@ -43,7 +43,7 @@ def generation(**kwargs)

return generation unless block_given?

result = yield
result = yield generation

end_generation(generation, result)

Expand Down
2 changes: 1 addition & 1 deletion lib/llm_eval_ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LlmEvalRuby
VERSION = "0.2.5"
VERSION = "0.2.6"
end
2 changes: 1 addition & 1 deletion spec/llm_eval_ruby_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

RSpec.describe LlmEvalRuby do
it "has a version number" do
expect(LlmEvalRuby::VERSION).to be("0.2.5")
expect(LlmEvalRuby::VERSION).to be("0.2.6")
end
end
Loading