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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/ruby_llm/team/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0adfb225e50d500aaf16054970689ffdb52ea1c48067b47db18b725774a4c552
|
|
4
|
+
data.tar.gz: 5ea091504175e88e8b1c0aa432e4d2f94aa34223b9d29f7b2de04bb964644a7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,
|
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.
|
|
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.
|
|
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: []
|