Skip to content

Commit e05ffcf

Browse files
committed
fix back
1 parent 002c2f1 commit e05ffcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

litellm/google_genai/adapters/handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def _prepare_completion_kwargs(
3838
completion_kwargs: Dict[str, Any] = dict(completion_request)
3939

4040
# feed metadata for custom callback
41-
# if 'metadata' in extra_kwargs:
42-
# completion_kwargs['metadata'] = extra_kwargs['metadata']
41+
if 'metadata' in extra_kwargs:
42+
completion_kwargs['metadata'] = extra_kwargs['metadata']
4343

4444
if stream:
4545
completion_kwargs["stream"] = stream

0 commit comments

Comments
 (0)