(value: Any)
| 1132 | return _to_positive_int(_env_text("PAPERFLOW_DAILY_LIMIT", "30"), 30) |
| 1133 | return _to_positive_int(value, 30) |
| 1134 | |
| 1135 | |
| 1136 | def _configured_relevance_threshold() -> int: |
| 1137 | return int(_to_float(_env_text("PAPERFLOW_RELEVANCE_THRESHOLD", "60"), 60)) |
| 1138 | |
| 1139 | |
| 1140 | def _normalized_cache_list(value: Any) -> List[str]: |
no outgoing calls
no test coverage detected