From dcea31e50a9c5fa1557832c5c5ce905c4e205720 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 26 Nov 2024 00:26:27 -0800 Subject: [PATCH] run ci/cd again for new release --- .../proxy/pass_through_endpoints/pass_through_endpoints.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/litellm/proxy/pass_through_endpoints/pass_through_endpoints.py b/litellm/proxy/pass_through_endpoints/pass_through_endpoints.py index 7d0e3b29b46..53c4a55c370 100644 --- a/litellm/proxy/pass_through_endpoints/pass_through_endpoints.py +++ b/litellm/proxy/pass_through_endpoints/pass_through_endpoints.py @@ -609,6 +609,11 @@ def _init_kwargs_for_pass_through_endpoint( def _update_metadata_with_tags_in_header(request: Request, metadata: dict) -> dict: + """ + If tags are in the request headers, add them to the metadata + + Used for google and vertex JS SDKs + """ _tags = request.headers.get("tags") if _tags: metadata["tags"] = _tags.split(",")