ox-ai-workers 0.9.6.6 → 0.9.6.7
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/lib/oxaiworkers/module_request.rb +3 -1
- data/lib/oxaiworkers/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: 49ad8f9e3ff36419d89daae2c11bb6a0f77f584a039749dcb3a7842551a2963a
|
4
|
+
data.tar.gz: fecdb987ba5b1d8774f35231b956d6a6651887bba948550942cf129fb6e9349a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '088ed6ed996155d4885970743fa76713e6d994fbb971c17464443c4e0dc5da078c634e1fb1b40794c92e289e59752077fbf93aefde5cfb345dfc5bd60afab327'
|
7
|
+
data.tar.gz: d4e007033cd57585b0fc94c45fd89173454b1fce3696da70a86e9aaa035075b2f18b328b41b00aa10560f761bcf59cc62c39691a8b3a44ce122a6fe95c657304
|
@@ -140,8 +140,10 @@ module OxAiWorkers
|
|
140
140
|
# Skipping for now, as partial args are likely useless.
|
141
141
|
next
|
142
142
|
end
|
143
|
-
|
143
|
+
OxAiWorkers.logger.info("function: #{function.inspect}", for: self.class)
|
144
144
|
# Accumulate parsed tool calls
|
145
|
+
next if function['name'].empty?
|
146
|
+
|
145
147
|
@tool_calls << {
|
146
148
|
class: function['name'].split('__').first,
|
147
149
|
name: function['name'].split('__').last,
|
data/lib/oxaiworkers/version.rb
CHANGED