1 Commits
v0.1.0 ... dev

Author SHA1 Message Date
10be28a125 (no commit message) 2025-12-21 13:34:10 -08:00

View File

@@ -8,4 +8,5 @@ class Summarizer(PrecompiledProgram):
self.predict = dspy.Predict("input -> summary")
def forward(self, input: str) -> str:
input = input.strip()
return self.predict(input=input)