dspy-miprov2 1.0.1 → 1.0.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: fde0c11127168c911adeca892160bb6b3f9ffd9941a38d652921bb8c5c8126f5
4
- data.tar.gz: 7653c7420baca49de8a1228da58f6ad5b0968762f9bb1f5d60a99f3b863dec32
3
+ metadata.gz: 07ed85bd030f0fc69db2c866701e06b9ea794b742127d43bddca24fa25753315
4
+ data.tar.gz: fc3ffd0b4d502610148c237c620e0298fc5274e8b0387ae20f0c2f5f524a4380
5
5
  SHA512:
6
- metadata.gz: 987f3fa71f53caa56432ac163076ee912f5b4c560393f22ed6f38aba7222b8540bc1d0a422685ce4c280d51c76810b57ebadaf5b7470941a1f75e062978db00d
7
- data.tar.gz: bfec858d2fb94fae00412b6b89b335507dcbe0f17c459a29730c92cd54668b60ff1dc86de96bde038fc7b210672ebca23a6e06421e92658ae51730514eb42277
6
+ metadata.gz: fe890bd2b02fe25ba611ad912f5a8594901abbc3d826e435b0e2cc2482a4d61de905346db66bcfdc8294fa1808e46fbe8a26f00466438ec67c805e0fc0e692a8
7
+ data.tar.gz: 0cfa42c70947cc4790c6616f5627f65f9f434391c8dc2a634b87c364500cab16243565917ccddf9e1423f20ea134cb1edeb8ea0ea8aef071ccfc3172781445f9
data/README.md CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  **Build reliable LLM applications in idiomatic Ruby using composable, type-safe modules.**
18
18
 
19
- DSPy.rb is the Ruby-first surgical port of Stanford's [DSPy framework](https://github.com/stanfordnlp/dspy). It delivers structured LLM programming, prompt engineering, and context engineering in the language we love. Instead of wrestling with brittle prompt strings, you define typed signatures in idiomatic Ruby and compose workflows and agents that actually behave.
19
+ DSPy.rb is the Ruby-first surgical port of Stanford's [DSPy paradigm](https://github.com/stanfordnlp/dspy). It delivers structured LLM programming, prompt engineering, and context engineering in the language we love. Instead of wrestling with brittle prompt strings, you define typed signatures in idiomatic Ruby and compose workflows and agents that actually behave.
20
20
 
21
21
  **Prompts are just functions.** Traditional prompting is like writing code with string concatenation: it works until it doesn't. DSPy.rb brings you the programming approach pioneered by [dspy.ai](https://dspy.ai/): define modular signatures and let the framework deal with the messy bits.
22
22
 
@@ -5,6 +5,6 @@ require_relative '../version'
5
5
 
6
6
  module DSPy
7
7
  module MIPROv2
8
- VERSION = '1.0.1'
8
+ VERSION = '1.0.2'
9
9
  end
10
10
  end
@@ -7,10 +7,10 @@ require 'concurrent-ruby'
7
7
  require 'sorbet-runtime'
8
8
  require 'securerandom'
9
9
  require 'set'
10
- require_relative 'teleprompter'
11
- require_relative 'utils'
12
- require_relative 'instruction_updates'
13
- require_relative '../propose/grounded_proposer'
10
+ require 'dspy/teleprompt/teleprompter'
11
+ require 'dspy/teleprompt/utils'
12
+ require 'dspy/teleprompt/instruction_updates'
13
+ require 'dspy/propose/grounded_proposer'
14
14
  require_relative '../optimizers/gaussian_process'
15
15
 
16
16
  module DSPy
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dspy-miprov2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vicente Reig Rincón de Arellano