rails_mcp_engine 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/lib/tool_schema/ruby_llm_builder.rb +2 -2
- data/lib/rails_mcp_engine/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3448e618eae50c7f5357c7948986b5208a308f685d5bb88e311790e4a3467825
|
|
4
|
+
data.tar.gz: 0ca92186f069f550157bf15dfb8df68e954cd14db58688af06af981cacf65d1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ffe2fddbaf4dce4ae4e93f38ae5200de091558849f779ff93a4d2f4237a81789717b8945f73f9def02ba0972971cac76516cbdd21ddc3201456acedd825e8751
|
|
7
|
+
data.tar.gz: 92b5d6c89ec0ed02fc3b1bfbda1dff9b643d2abcdf81900802937d3755a3d3f2c9ae0c5b44d2c9bf980d21c1246976ca1e01e36fd5952449ff8ff540d4085f83
|
|
@@ -61,7 +61,7 @@ module ToolSchema
|
|
|
61
61
|
case type
|
|
62
62
|
when :string then :string
|
|
63
63
|
when :integer then :integer
|
|
64
|
-
when :float then :float
|
|
64
|
+
when :float then :number # RubyLLM uses `number` not `float`
|
|
65
65
|
when :boolean then :boolean
|
|
66
66
|
else :any
|
|
67
67
|
end
|
|
@@ -71,7 +71,7 @@ module ToolSchema
|
|
|
71
71
|
def self.scalar_method(type)
|
|
72
72
|
case type
|
|
73
73
|
when :integer then :integer
|
|
74
|
-
when :float then :float
|
|
74
|
+
when :float then :number # RubyLLM uses `number` not `float`
|
|
75
75
|
when :boolean then :boolean
|
|
76
76
|
else :string
|
|
77
77
|
end
|