Unified ModelTask structure

This commit is contained in:
Xisen-Wang
2024-07-24 11:33:04 +00:00
parent 86d954775a
commit 202ea4a566
5 changed files with 51 additions and 21 deletions
+2 -1
View File
@@ -22,9 +22,10 @@ class Hypothesis:
- Belief
"""
def __init__(self, hypothesis: str, reason: str) -> None:
def __init__(self, hypothesis: str, reason: str, concise_reason = str) -> None:
self.hypothesis: str = hypothesis
self.reason: str = reason
self.concise_reason: str = concise_reason
def __str__(self) -> str:
return f"""Hypothesis: {self.hypothesis}