From 3fc0d8fda9d68c2632f8059f7e64314e4cf7dfeb Mon Sep 17 00:00:00 2001 From: Rena Lu Date: Tue, 13 Feb 2024 18:49:56 +0000 Subject: [PATCH] delete print --- litellm/llms/vertex_ai.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/litellm/llms/vertex_ai.py b/litellm/llms/vertex_ai.py index 8f16136efa..5fcaae45f2 100644 --- a/litellm/llms/vertex_ai.py +++ b/litellm/llms/vertex_ai.py @@ -997,8 +997,6 @@ async def async_streaming( stream = optional_params.pop("stream", None) _ = instances[0].pop("stream", None) request_str += f"llm_model.predict_async(instances={instances}, **{optional_params})\n" - print("instances", instances) - print("optional_params", optional_params) response_obj = await llm_model.predict_async( instances=instances, **optional_params,