dspy
dspy copied to clipboard
DSPy: The framework for programming—not prompting—language models
Weights & Biases (wandb) are one of the industry leaders in experiment tracking software for Machine Learning. I think `runs` and `sweeps` both offer significant value to monitoring DSPy optimization...
Adds ensemble to the teleprompt imports. Solves #533
I am trying out DSPy 2.3.6 with a simple transcript summarization example: ```python class Summarizer(dspy.Module): def __init__(self): super().__init__() self.summarizer = dspy.Predict('transcript -> summary') def forward(self, transcript): return dspy.Prediction(summary=self.summarizer(transcript=transcript)) ``` I...
This PR is intended to get a "DSPy Only Predict" running, ie. No `dsp` code running. This is ultimately the point at which the Backend refactor becomes breaking, ## TODOs,...
Addresses https://github.com/stanfordnlp/dspy/issues/477
This PR does two main things: 1. It fixes an issue where the code would try to checkout code from a repo it did not have access to. The way...
add 'k' as argument to FaissRM.forward()
Adds native support for claude wrapper
Fixes #492
Draft, started with changing `dsp.retrieveEnsemble` to `dsp.settings.rm` in calls to dspy.Retrieve === TODO == I now need to remove the long_text key from all the RMs === RELATED PROJECT TODO...