We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a43042 commit 0c78cd7Copy full SHA for 0c78cd7
litellm/proxy/vertex_ai_endpoints/langfuse_endpoints.py
@@ -128,12 +128,12 @@ async def langfuse_proxy_route(
128
endpoint=endpoint,
129
target=str(updated_url),
130
custom_headers={"Authorization": langfuse_combined_key},
131
+ query_params=dict(request.query_params), # type: ignore
132
) # dynamically construct pass-through endpoint based on incoming path
133
received_value = await endpoint_func(
134
request,
135
fastapi_response,
136
user_api_key_dict,
- query_params=dict(request.query_params), # type: ignore
137
)
138
139
return received_value
0 commit comments