jsleight
Results
2
issues of
jsleight
Many packages upload both the source distribution and wheels for a few environments. Allows pip to install packages much faster. (apologies if this has been discussed before, didn't see any...
Minimal example (on dspy v2.4.0): ``` import dspy examples = [dspy.Example(foo=f, bar=b).with_inputs("foo") for f, b in zip("abcd", "1234")] print(examples) # [Example({'foo': 'a', 'bar': '1'}) (input_keys={'foo'}), Example({'foo': 'b', 'bar': '2'}) (input_keys={'foo'}),...