We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91dc416 commit d6acf24Copy full SHA for d6acf24
eval_protocol/proxy/proxy_core/litellm.py
@@ -91,8 +91,10 @@ async def handle_chat_completion(
91
# Check if streaming is requested
92
is_streaming = data.get("stream", False)
93
94
- # Pop timeout to avoid duplicate kwarg - use client's if provided, else config default
+ # Pop fields that we pass explicitly to avoid duplicate kwarg errors
95
request_timeout = data.pop("timeout", None) or config.request_timeout
96
+ data.pop("langfuse_public_key", None)
97
+ data.pop("langfuse_secret_key", None)
98
99
try:
100
# Make the completion call - pass all params through
0 commit comments