You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TrainedModelSizeStats class has the wrong type for required_native_memory_bytes, it is marked as integer but should be ByteSize. This is causing the spec to have the wrong type, and the auto-generated clients like the .NET one to always fail when deserializing the response.
Definition
export class TrainedModelSizeStats {
/** The size of the model in bytes. */
model_size_bytes: ByteSize
/** The amount of memory required to load the model in bytes. */
- required_native_memory_bytes: integer+ required_native_memory_bytes: ByteSize
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
🐛 Wrong type
The TrainedModelSizeStats class has the wrong type for
required_native_memory_bytes
, it is marked asinteger
but should beByteSize
. This is causing the spec to have the wrong type, and the auto-generated clients like the .NET one to always fail when deserializing the response.Definition
The text was updated successfully, but these errors were encountered: