{ "model": null, "signature": { "description": "Determine whether the dialogue response is hallucinated given the reference knowledge and prior turns.As you reason, note any uncertainties, ambiguities, and gaps \u2014 both in how the instructions apply to the task at hand and in whether you have the knowledge needed to solve it. Be honest in your reasoning when you are unsure about your answer.", "properties": { "knowledge": { "__dspy_field_type": "input", "desc": "Reference knowledge used to ground the dialogue response.", "prefix": "Knowledge:", "title": "Knowledge", "type": "string" }, "dialogue_history": { "__dspy_field_type": "input", "desc": "Conversation history preceding the response.", "prefix": "Dialogue History:", "title": "Dialogue History", "type": "string" }, "response": { "__dspy_field_type": "input", "desc": "Dialogue response to evaluate for hallucination.", "prefix": "Response:", "title": "Response", "type": "string" }, "reasoning": { "__dspy_field_type": "output", "desc": "Step-by-step reasoning, including uncertainty, ambiguity, or uncertainty in your thought process when relevant.", "prefix": "Reasoning:", "title": "Reasoning", "type": "string" }, "hallucination": { "__dspy_field_type": "output", "desc": "Final hallucination label: 'yes' if the response is hallucinated, otherwise 'no'.", "enum": [ "yes", "no" ], "prefix": "Hallucination:", "title": "Hallucination", "type": "string" } }, "required": [ "knowledge", "dialogue_history", "response", "reasoning", "hallucination" ], "title": "HaluEvalDialogueJudgeSig", "type": "object" } }