Return an empty parse result for command-only bootstrap text.
()
| 558 | |
| 559 | |
| 560 | def _empty_parsed_profile_fragment() -> Dict[str, Any]: |
| 561 | """Return an empty parse result for command-only bootstrap text.""" |
| 562 | return { |
| 563 | "core_directions": {}, |
| 564 | "methodology_preferences": {}, |
| 565 | "topic_weights": {}, |
| 566 | "interest_vector": [], |
| 567 | "taste_profile": {}, |
| 568 | "inferred_topics": [], |
| 569 | } |
| 570 | |
| 571 | |
| 572 | def _get_env_int(name: str, default: int) -> int: |
no outgoing calls
no test coverage detected