From 028cdaf77be3831723606e06b998062f81e3c4a4 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Mon, 12 Jan 2026 15:20:38 +0530 Subject: [PATCH] Add starting status for replicate --- litellm/llms/replicate/chat/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/llms/replicate/chat/handler.py b/litellm/llms/replicate/chat/handler.py index e4bb64fed71..4c75db5abc6 100644 --- a/litellm/llms/replicate/chat/handler.py +++ b/litellm/llms/replicate/chat/handler.py @@ -213,7 +213,7 @@ def completion( response = httpx_client.get(url=prediction_url, headers=headers) if ( response.status_code == 200 - and response.json().get("status") == "processing" + and response.json().get("status") in ["processing", "starting"] ): continue return litellm.ReplicateConfig().transform_response( @@ -284,7 +284,7 @@ async def async_completion( response = await async_handler.get(url=prediction_url, headers=headers) if ( response.status_code == 200 - and response.json().get("status") == "processing" + and response.json().get("status") in ["processing", "starting"] ): continue return litellm.ReplicateConfig().transform_response(