Yash030's picture
Deploy claude-code-nvidia proxy to Hugging Face Spaces
0157ac7
"""Small shared protocol utility helpers."""
from typing import Any
def set_if_not_none(body: dict[str, Any], key: str, value: Any) -> None:
"""Set ``body[key]`` only when value is not None."""
if value is not None:
body[key] = value