shreyas-joshi's picture
feat: Implement chunking and graph management for code review environment
899a7c7
from inventory import is_available
def pick_item(preferred: str, fallback: str) -> str:
if is_available(preferred):
return preferred
return fallback