From 4332346d9bf25b2b0c31f29e1084475c786db25e Mon Sep 17 00:00:00 2001 From: Ty Todd Date: Sat, 20 Dec 2025 17:25:45 -0800 Subject: [PATCH] (no commit message) --- summarizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/summarizer.py b/summarizer.py index 4c10a3d..2c1c09b 100644 --- a/summarizer.py +++ b/summarizer.py @@ -4,8 +4,8 @@ import dspy class Summarizer(PrecompiledProgram): def __init__(self, **kwargs): - self.predict = dspy.Predict("input -> summary") super().__init__(**kwargs) + self.predict = dspy.Predict("input -> summary") def forward(self, input: str) -> str: return self.predict(input=input)