| 310 | |
| 311 | @dataclass |
| 312 | class UserNaturalProfileState: |
| 313 | profile_text: str |
| 314 | directions: List[str] |
| 315 | terms: List[str] |
| 316 | profile_vector: Dict[str, float] |
| 317 | |
| 318 | |
| 319 | def make_state(profile: Dict[str, Any], idf: Dict[str, float]) -> UserNaturalProfileState: |