Convert to dictionary representation
(self)
| 95 | embedding: Optional[List[float]] = None |
| 96 | |
| 97 | def to_dict(self) -> Dict[str, Any]: |
| 98 | """Convert to dictionary representation""" |
| 99 | return asdict(self) |
| 100 | |
| 101 | @classmethod |
| 102 | def from_dict(cls, data: Dict[str, Any]) -> "Program": |
no outgoing calls
no test coverage detected