language-operator 0.1.42 → 0.1.43

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: 21f9d0f6d79748ca4d6770581a1dbe46e3abd8bfa176b358fc61d57681801b0d
4
- data.tar.gz: 3751ffbd7c65cc31d1d3b4401ca2195119c4da16d499db50d118f8e219a2ce28
3
+ metadata.gz: 93ec6f2acf240eac8da803b1411e1a7b4132900fd3d6f162e398b5de2e8f536a
4
+ data.tar.gz: fdb53922b98facf4656035013c1890921eba18e767d88160316b8fa978b03fa2
5
5
  SHA512:
6
- metadata.gz: c1787788a7491a65db181ec063bc1bcdd40773ee3b6aa0dca08329e26a03dd0780656a0f86f4fab3ba7c29e657f6a20a1d0b94f7c45462dd4a91d93ac0c2d1c4
7
- data.tar.gz: 10b22cb56a7050a25786ef6c1abdf5c6e343069be5de49bfc9fb204575d02c9dbcd80a05403a6cf03bb31087b786f7ea7842aca7f82248b6a94045a9b024c563
6
+ metadata.gz: 2b6d5078b3b83149f4c2a2cfbddc25bfcd18692804329cfeedf28f97135562b95cac91f3e89aab5d77eea1e0ad8dbb537c9e0d4e5772a27a771eec51ac11c9ca
7
+ data.tar.gz: 9dd639680cf1a3e351d1cb9ee8b24c14eb6bf17fc842f34d4b68057f95ff6afa5aef77d387c2858cee3ee1430b45af4ae174e9006fedf25afb14a0b1ba0bb241
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- language-operator (0.1.42)
4
+ language-operator (0.1.43)
5
5
  faraday (~> 2.0)
6
6
  k8s-ruby (~> 0.17)
7
7
  mcp (~> 0.4)
@@ -234,8 +234,8 @@ 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
- # execute_symbolic takes (inputs, context) - outputs are the inputs, task_executor is context
238
- output_config.execute_symbolic(outputs, task_executor)
237
+ # call() takes (inputs, context) - outputs are the inputs, task_executor is context
238
+ output_config.call(outputs, task_executor)
239
239
  elsif output_config.neural?
240
240
  # Neural output - would need LLM access to execute
241
241
  # For now, just log the instruction
@@ -2,7 +2,7 @@
2
2
  :openapi: 3.0.3
3
3
  :info:
4
4
  :title: Language Operator Agent API
5
- :version: 0.1.42
5
+ :version: 0.1.43
6
6
  :description: HTTP API endpoints exposed by Language Operator reactive agents
7
7
  :contact:
8
8
  :name: Language Operator
@@ -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.42",
6
+ "version": "0.1.43",
7
7
  "type": "object",
8
8
  "properties": {
9
9
  "name": {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LanguageOperator
4
- VERSION = '0.1.42'
4
+ VERSION = '0.1.43'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: language-operator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.42
4
+ version: 0.1.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Ryan