| 44 | return self.__str__() |
| 45 | |
| 46 | class Importance(Enum): |
| 47 | HIGH = "high" |
| 48 | MEDIUM = "medium" |
| 49 | LOW = "low" |
| 50 | |
| 51 | class Insight(BaseModel): |
| 52 | id: str = Field(description="The unique identifier for the insight.") |
no outgoing calls
no test coverage detected