Skip to content

Commit

Permalink
adds missing predicate require
Browse files Browse the repository at this point in the history
  • Loading branch information
obie committed Dec 3, 2024
1 parent b32df72 commit e679e8b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@
- adds support for `ResponseFormat`
- added some missing requires to support String#squish

## [0.4.6] - 2024-11-12
## [0.4.7] - 2024-11-12
- adds missing requires `raix/predicate` so that it can be used in a Rails app automatically
- adds missing openai support for `Predicate`
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:
raix (0.4.6)
raix (0.4.7)
activesupport (>= 6.0)
open_router (~> 0.2)
ruby-openai (~> 7.0)
Expand Down
1 change: 1 addition & 0 deletions lib/raix.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require_relative "raix/chat_completion"
require_relative "raix/function_dispatch"
require_relative "raix/prompt_declarations"
require_relative "raix/predicate"
require_relative "raix/response_format"

# The Raix module provides configuration options for the Raix gem.
Expand Down
2 changes: 1 addition & 1 deletion lib/raix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Raix
VERSION = "0.4.6"
VERSION = "0.4.7"
end

0 comments on commit e679e8b

Please sign in to comment.