fn snake_to_camel(s: &str) -> StringExpand description
Convert a snake_case string to camelCase.
Inverse of camel_to_snake; used to normalise OpenAI-format body keys
(top_p, max_tokens, etc.) into the camelCase form expected by
InferenceConfig’s serde impl before deserialisation.