Update healthagent/types.py
Browse files- healthagent/types.py +1 -0
healthagent/types.py
CHANGED
@@ -7,6 +7,7 @@ class CausesFeature(BaseModel):
|
|
7 |
|
8 |
class CausesResult(BaseModel):
|
9 |
results: List[CausesFeature] = Field(description="A List of all the causes and their values")
|
|
|
10 |
|
11 |
|
12 |
class ThresholdFeature(BaseModel):
|
|
|
7 |
|
8 |
class CausesResult(BaseModel):
|
9 |
results: List[CausesFeature] = Field(description="A List of all the causes and their values")
|
10 |
+
status: str = Field(description="Status of the prediction")
|
11 |
|
12 |
|
13 |
class ThresholdFeature(BaseModel):
|