ruby_llm-team 0.1.0 → 0.1.2

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: 276088260e61f9aeed5607c1e613f408ff4c58cf777cae74e6fe01d8890da170
4
- data.tar.gz: 110604d8bb1288218f78bd5ef2285f2d380a0ebad64f29185d23f45c1fd6ce5e
3
+ metadata.gz: 0adfb225e50d500aaf16054970689ffdb52ea1c48067b47db18b725774a4c552
4
+ data.tar.gz: 5ea091504175e88e8b1c0aa432e4d2f94aa34223b9d29f7b2de04bb964644a7b
5
5
  SHA512:
6
- metadata.gz: 12067c8dc5622ddfb3355a007b5282f65b231ed0d22e719b311aa07d7fd91f91a3c5df1e21a42e670f6d1a9989f8fd510ccf58381e8cb9df8c1bb51c8f24fc9a
7
- data.tar.gz: bd7c200b51eb79f6fb5553cfc1b4634c6ae392c35d3c82bf0fcdd077ce2425d54e5e3522d1af96cc0087eba1f8756fa4ee4f43c998e6dbad8ed35fd9a6deecf0
6
+ metadata.gz: 262f5f933244e34ea77392028aefb3b81dbc8b74b69dd52da7ca75adc98701a030aeb54a1f8eab842c6cb865c2f29147de7a286be4bc96efbca67d3ed8bced72
7
+ data.tar.gz: d05ea94486a132bc2bb0498a300a6813ad35fcb2d80e31f8daabd366032b79995342913acedc0db1e485844e08b160e49427b8f77afb8902fd752d3f8e520eef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2
4
+
5
+ - Pin `ruby_llm` to `< 2.0`. RubyLLM 2.0 removes `halt` and decomposes the agentic loop into
6
+ `ask_later`/`generate`/`run_tools`/`step`; this gem has never run against it, and an
7
+ unbounded constraint would have resolved new installs onto an untested major the day it
8
+ publishes. The bound widens once the suite passes on 2.x.
9
+
10
+ ## 0.1.1
11
+
12
+ First release published by GitHub Actions through RubyGems trusted publishing — no API key
13
+ exists anywhere in the pipeline. No library changes.
14
+
3
15
  ## 0.1.0 — experimental
4
16
 
5
17
  First public release. The API is deliberately small but not yet stable: artifact ordering,
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RubyLLM
4
4
  class Team
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_llm-team
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - JetThoughts
@@ -16,6 +16,9 @@ dependencies:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
18
  version: 1.16.0
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '2.0'
19
22
  type: :runtime
20
23
  prerelease: false
21
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -23,6 +26,9 @@ dependencies:
23
26
  - - ">="
24
27
  - !ruby/object:Gem::Version
25
28
  version: 1.16.0
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '2.0'
26
32
  description: 'A RubyLLM extension that groups named coworkers and exposes delegation
27
33
  tools so a model can hand tasks and questions to teammates. Built on the RubyLLM
28
34
  public API: Tool, Agent, Message, and Attachment.'
@@ -61,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
67
  - !ruby/object:Gem::Version
62
68
  version: '0'
63
69
  requirements: []
64
- rubygems_version: 4.0.19
70
+ rubygems_version: 4.0.16
65
71
  specification_version: 4
66
72
  summary: 'Team collaboration for RubyLLM: delegate work to named coworkers.'
67
73
  test_files: []