Convert to dictionary representation
(self)
| 77 | embedding: Optional[List[float]] = None |
| 78 | |
| 79 | def to_dict(self) -> Dict[str, Any]: |
| 80 | """Convert to dictionary representation""" |
| 81 | return asdict(self) |
| 82 | |
| 83 | @classmethod |
| 84 | def from_dict(cls, data: Dict[str, Any]) -> "Program": |
no outgoing calls
no test coverage detected