phronomy 0.24.0 → 0.24.1
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 +3 -0
- data/lib/phronomy/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb31ae2fdc7b102461fd91480ea2e2aaeda618fb65cc3eb885a9525ca1e985e2
|
|
4
|
+
data.tar.gz: 2ede56b656b789ff195561ac72cac5df2f51dba410dbee8e3025437985509e61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe717ea7a31272ad7d7247f214c59ca8c5370a80ce80e67d69d8bb14f5e285d779004545e56f3298e85d63ca7352ba430f2912e967453b899c1181e8d00fb77e
|
|
7
|
+
data.tar.gz: e3a45c05b4b8f129e61fa09ae7e23be8916aeae762642f5333fb3876c6d142091d836c8c33d3dcb0a3908d1d1d6d99261bffde3e07d8ad505aa136a0df9f9097
|
data/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,9 @@ Release history for 0.14.0 and earlier is archived in
|
|
|
14
14
|
|
|
15
15
|
### Fixed
|
|
16
16
|
|
|
17
|
+
- Add runtime dependency constraint `json < 3` to prevent Faraday/RubyLLM JSON
|
|
18
|
+
parser incompatibilities from resolving in consumer environments.
|
|
19
|
+
|
|
17
20
|
- Run recovered output filtering inside the ordinary Agent FSM so filter
|
|
18
21
|
exceptions commit a failed execution and release admission, including after
|
|
19
22
|
another restart. Preserve explicit filter blocking as the `blocked` status.
|
data/lib/phronomy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phronomy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.24.
|
|
4
|
+
version: 0.24.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Raizo T.C.S
|
|
@@ -78,6 +78,20 @@ dependencies:
|
|
|
78
78
|
- - "~>"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
80
|
version: '1.0'
|
|
81
|
+
- !ruby/object:Gem::Dependency
|
|
82
|
+
name: json
|
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - "<"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3'
|
|
88
|
+
type: :runtime
|
|
89
|
+
prerelease: false
|
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
91
|
+
requirements:
|
|
92
|
+
- - "<"
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: '3'
|
|
81
95
|
description: Phronomy is a Ruby AI agent framework that provides composable building
|
|
82
96
|
blocks — Agents, Workflows, Tools, Filters, and Tracing — for building AI agents
|
|
83
97
|
in Ruby. Powered by RubyLLM for LLM abstraction.
|