Skip to content

Commit 39387cb

Browse files
authored
Fix ReinforceJob LM assignment (#8249)
1 parent 2ac7756 commit 39387cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dspy/clients/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def status(self):
3737

3838
class ReinforceJob:
3939
def __init__(self, lm: "LM", train_kwargs: Optional[Dict[str, Any]] = None):
40-
self.lm = LM
40+
self.lm = lm
4141
self.train_kwargs = train_kwargs or {}
4242
self.checkpoints = {}
4343
self.last_checkpoint = None

0 commit comments

Comments
 (0)