mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-08 23:18:04 -05:00
When go-yaml decode into CommonParameter with Default being an any type, int will be converted into []uint64. It will fail the Parse() when the value is being used since it does not belong to either of the int types. Unmarshal `default` value into each field's type directly. Fixes #771