All specs 3 total
StaleDetector.find_staleREAL LLM gemma4:latest · · unknownsrc/aumai_maintainer/core.py
Identifies and returns a subset of provided issue dictionaries that have not been updated within a specified number of days. It accepts a list of issue dictionaries, where each must contain an "updated_at" field, and an integer representing the stale threshold in days. The function returns a new list containing only the issues deemed stale and raises a ValueError if any issue's update timestamp cannot be parsed.
StaleDetector.find_staleREAL LLM gpt-oss:latest · · unknownsrc/aumai_maintainer/core.py
Finds all issue dictionaries that have not been updated within the specified number of days by comparing each issue’s `updated_at` field to the current UTC time. It accepts
StaleDetector.find_staletemplated static_v1 · O(n) · Apache-2.0src/aumai_maintainer/core.py · L369
Method `StaleDetector.find_stale` with 2 parameter(s); returns `list[dict[str, object]]`. Classified as `non-deterministic` side-effect. May raise: ValueError. Contains 1 loop(s).