language-operator 0.1.43 → 0.1.44
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 588de63b620795a41863a1fe516368c01ea002290a87c49d3632839b0d8b190b
|
|
4
|
+
data.tar.gz: d16c8648276ddfd5a4d4bced8f5bc3a263a51b8250f195858c5c459450785292
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e58ec25b437ee27932f0067e7404fc7fc44e8597e44771c6338fd5886cef30792c61fd01fd595db22bf03d40a9c661332807807b67fdfdeb84e4a16c922c6f6
|
|
7
|
+
data.tar.gz: b84d6129fe0e7464d4ad620d7a82000298f5ec95345e9c451a0996b4fd8f976aa0981599942bbfdc9d0b711543fe8838725960bfcc09bf242e8da22dfaa4a047
|
data/Gemfile.lock
CHANGED
|
@@ -234,8 +234,16 @@ module LanguageOperator
|
|
|
234
234
|
# If symbolic implementation exists, use it
|
|
235
235
|
if output_config.symbolic?
|
|
236
236
|
logger.debug('Executing symbolic output handler')
|
|
237
|
-
#
|
|
238
|
-
|
|
237
|
+
# Call the execute block directly without validation
|
|
238
|
+
# Output blocks don't need input validation since they receive whatever main returns
|
|
239
|
+
block = output_config.execute_block
|
|
240
|
+
if block.arity == 1
|
|
241
|
+
block.call(outputs)
|
|
242
|
+
elsif block.arity == 2
|
|
243
|
+
block.call(outputs, task_executor)
|
|
244
|
+
else
|
|
245
|
+
block.call
|
|
246
|
+
end
|
|
239
247
|
elsif output_config.neural?
|
|
240
248
|
# Neural output - would need LLM access to execute
|
|
241
249
|
# For now, just log the instruction
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "https://github.com/language-operator/language-operator-gem/schema/agent-dsl.json",
|
|
4
4
|
"title": "Language Operator Agent DSL",
|
|
5
5
|
"description": "Schema for defining autonomous AI agents using the Language Operator DSL",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.44",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|