language-operator 0.1.54 → 0.1.55

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: cc9f8e717ca6bd8f00386094494b88f2f2e3050239b9d476ba9519868d82df58
4
- data.tar.gz: b15364fd16e4a9793263a8d861999d3c0a9188c2db3c6122176462a6b934c753
3
+ metadata.gz: d8f659d81bffc80250db041ffe9aad7b22618c0ed7cfe93836adc248010295ad
4
+ data.tar.gz: d4364c0cd5cd8c7f3d8f009d5ddf9665a328f9a82c1ddbf9fbdb5c3c95ff791b
5
5
  SHA512:
6
- metadata.gz: 62729e36597f476b960c64b589a2e426ef5fe54f51e7db91d0ab91cdbc05a916fc000bc94c1e828e9839e2f6bff95a31f42f3c330006a008bc9c1e2a2fd63e03
7
- data.tar.gz: a5472ea444b2d6bf58316c638b03b22365bd51e6b635a3eb3b2cb2d458a540e802def9e7d86243ec72bf958924b1c4441485ea8cf9121c7d96647a9bf046cec9
6
+ metadata.gz: 9131e2a4882cf617ef92724dd2c90a1133203c25e1aac1c89b7f7b28baf77d05c4347f98cf901f4c39c2423713140142f01887f5b3698285d19c8694564bdd14
7
+ data.tar.gz: 3f11916df339b3a605287db9ad38794642d6e843c42710354b5c09e34b10fa12ce94012a793127a1ef7ad4ffdb400656b10f33afb764e05683b341a6dca2109e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- language-operator (0.1.54)
4
+ language-operator (0.1.55)
5
5
  faraday (~> 2.0)
6
6
  k8s-ruby (~> 0.17)
7
7
  mcp (~> 0.4)
@@ -37,7 +37,8 @@ module LanguageOperator
37
37
 
38
38
  spec['schedule'] = schedule if schedule
39
39
  spec['persona'] = persona if persona
40
- spec['tools'] = tools unless tools.empty?
40
+ # Convert tool names to toolRef objects
41
+ spec['toolRefs'] = tools.map { |t| { 'name' => t } } unless tools.empty?
41
42
  # Convert model names to modelRef objects
42
43
  spec['modelRefs'] = models.map { |m| { 'name' => m } } unless models.empty?
43
44
 
@@ -2,7 +2,7 @@
2
2
  :openapi: 3.0.3
3
3
  :info:
4
4
  :title: Language Operator Agent API
5
- :version: 0.1.54
5
+ :version: 0.1.55
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.54",
6
+ "version": "0.1.55",
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.54'
4
+ VERSION = '0.1.55'
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.54
4
+ version: 0.1.55
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Ryan