(no commit message)

This commit is contained in:
2025-12-21 00:56:09 -08:00
parent 35901cfaa1
commit 11ffdd3cd4
11 changed files with 788 additions and 1 deletions

13
medval/generator.py Normal file
View File

@@ -0,0 +1,13 @@
import dspy
class MedVAL_Generator(dspy.Signature):
"""
Generate a candidate, given the reference composed by an expert.
"""
instruction: str = dspy.InputField()
reference: str = dspy.InputField()
candidate: str = dspy.OutputField(
description="Only respond with the candidate, do not include any additional text or explanation."
)