dspy-code_act 0.29.1 → 1.0.0
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/README.md +18 -0
- data/lib/dspy/code_act/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfa3f6fe68fadbf93038e6d422545322feff17f17ecf50b738aa336e201e72ce
|
|
4
|
+
data.tar.gz: 74d143813c304431f3d68750762a7ab57fd231a8cda07537409f64cb98b561c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75b3cf9ba1c059fc8abe7046cb987880709d9e7fd75fea371aee99ee60cf6539dc7ee3d8da9480c1af57f4a3def875a753c964f25edb64905f24673f58eaa09e
|
|
7
|
+
data.tar.gz: 1a5845ec6f54194bd266a1dacf1d6f23196f50c51743721793863adbb6aeb41923c30fb667bb2b4aecb77f2e64946406a806922474f806751b840e2890ed80d9
|
data/README.md
CHANGED
|
@@ -46,6 +46,24 @@ and
|
|
|
46
46
|
```bash
|
|
47
47
|
bundle install
|
|
48
48
|
```
|
|
49
|
+
|
|
50
|
+
### Optional Sibling Gems
|
|
51
|
+
|
|
52
|
+
DSPy.rb ships multiple gems from this monorepo so you only install what you need. Add these alongside `dspy`:
|
|
53
|
+
|
|
54
|
+
| Gem | Description | Status |
|
|
55
|
+
| --- | --- | --- |
|
|
56
|
+
| `dspy-schema` | Exposes `DSPy::TypeSystem::SorbetJsonSchema` for downstream reuse. | **Stable** (v1.0.0) |
|
|
57
|
+
| `dspy-code_act` | Think-Code-Observe agents that synthesize and execute Ruby safely. | Preview (0.x) |
|
|
58
|
+
| `dspy-datasets` | Dataset helpers plus Parquet/Polars tooling for richer evaluation corpora. | Preview (0.x) |
|
|
59
|
+
| `dspy-evals` | High-throughput evaluation harness with metrics, callbacks, and regression fixtures. | Preview (0.x) |
|
|
60
|
+
| `dspy-miprov2` | Bayesian optimization + Gaussian Process backend for the MIPROv2 teleprompter. | Preview (0.x) |
|
|
61
|
+
| `dspy-gepa` | `DSPy::Teleprompt::GEPA`, reflection loops, experiment tracking, telemetry adapters. | Preview (mirrors `dspy` version) |
|
|
62
|
+
| `gepa` | GEPA optimizer core (Pareto engine, telemetry, reflective proposer). | Preview (mirrors `dspy` version) |
|
|
63
|
+
| `dspy-o11y` | Core observability APIs: `DSPy::Observability`, async span processor, observation types. | **Stable** (v1.0.0) |
|
|
64
|
+
| `dspy-o11y-langfuse` | Auto-configures DSPy observability to stream spans to Langfuse via OTLP. | **Stable** (v1.0.0) |
|
|
65
|
+
|
|
66
|
+
Set the matching `DSPY_WITH_*` environment variables (see `Gemfile`) to include or exclude each sibling gem when running Bundler locally (for example `DSPY_WITH_GEPA=1` or `DSPY_WITH_O11Y_LANGFUSE=1`). Refer to `docs/core-concepts/dependency-tree.md` for the full dependency map and roadmap.
|
|
49
67
|
### Your First Reliable Predictor
|
|
50
68
|
|
|
51
69
|
```ruby
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dspy-code_act
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vicente Reig Rincón de Arellano
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date: 2025-10-
|
|
11
|
+
date: 2025-10-25 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: dspy
|
|
@@ -15,14 +16,14 @@ dependencies:
|
|
|
15
16
|
requirements:
|
|
16
17
|
- - '='
|
|
17
18
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
19
|
+
version: 0.30.0
|
|
19
20
|
type: :runtime
|
|
20
21
|
prerelease: false
|
|
21
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
23
|
requirements:
|
|
23
24
|
- - '='
|
|
24
25
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
26
|
+
version: 0.30.0
|
|
26
27
|
description: CodeAct provides Think-Code-Observe agents that synthesize and execute
|
|
27
28
|
Ruby code dynamically. Ship DSPy.rb workflows that write custom Ruby code while
|
|
28
29
|
tracking execution history, observations, and safety signals.
|
|
@@ -42,6 +43,7 @@ licenses:
|
|
|
42
43
|
- MIT
|
|
43
44
|
metadata:
|
|
44
45
|
github_repo: git@github.com:vicentereig/dspy.rb
|
|
46
|
+
post_install_message:
|
|
45
47
|
rdoc_options: []
|
|
46
48
|
require_paths:
|
|
47
49
|
- lib
|
|
@@ -56,7 +58,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
56
58
|
- !ruby/object:Gem::Version
|
|
57
59
|
version: '0'
|
|
58
60
|
requirements: []
|
|
59
|
-
rubygems_version: 3.
|
|
61
|
+
rubygems_version: 3.0.3.1
|
|
62
|
+
signing_key:
|
|
60
63
|
specification_version: 4
|
|
61
64
|
summary: Dynamic code generation agents for DSPy.rb.
|
|
62
65
|
test_files: []
|