Factory function for default question pool.
()
| 50 | |
| 51 | |
| 52 | def get_default_question_pool() -> Dict[str, Optional[List[str]]]: |
| 53 | """Factory function for default question pool.""" |
| 54 | return { |
| 55 | EvaluationType.INSTRUCTION.value: None, |
| 56 | EvaluationType.PHYSICAL_LAWS.value: [ |
| 57 | "Violation of Newton's Law: Objects move without any external force.", |
| 58 | "Violation of the Law of Conservation of Mass or Solid Constitutive Law: Objects deform irregularly.", |
| 59 | "Violation of Fluid Constitutive Law: Liquids flow in an unnatural manner.", |
| 60 | "Violation of Non-physical Penetration: Objects unnaturally pass through each other.", |
| 61 | "Violation of Gravity: Objects behave inconsistently with gravity.", |
| 62 | ], |
| 63 | EvaluationType.COMMON_SENSE.value: [ |
| 64 | "Poor Aesthetics: Visually unappealing or low-quality content.", |
| 65 | "Temporal Inconsistency: Noticeable flickering or abrupt changes.", |
| 66 | ], |
| 67 | } |
| 68 | |
| 69 | |
| 70 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected