Releases: replicate/cog-runtime
Releases · replicate/cog-runtime
v0.5.0-alpha10
Move assignment earlier
v0.5.0-alpha3
Tagging 55073f334933dbe23eade4d2e4919d8e313e4535
v0.5.0-alpha7
Tagging 87eeac8fb00413f4342bf50dcc0ad72cb6c5cdf6
v0.5.0-alpha6
Tagging ae1163db3b94700e9784f30ed941dcfee289e0e7
v0.5.0-alpha5
No shadowing
v0.5.0-alpha4
Tagging f14484b908a0414da68034aeff71b58588e78b5a
v0.5.0-alpha2
Standardize flag casing
v0.5.0-alpha1
Send ready signal
v0.4.0
v0.3.5
bugfix: Ensure schema is loaded before processing (#221) * bugfix: Ensure schema is loaded before processing Schema wasn't loaded prior to processing the input paths this resulted in a noop nil response. To ensure we always load the schema first we now block on runner ready state before processing. Additionaly a nil doc is considered an error. In the cases we call ProcessInputPaths we can accept that error; in manager we explicitly check for doc being nil and emit an error log. * Ensure that we always 202 for async Async predictions should not 500. However, since we now known that the runner failed before we send the prediction request down, we end up needing to work around the error and still send a 202 *then* let the webhook indicate failure. While this behavior is somewhat crazy, it is the behavioral contract we can revisit in the future.