diff --git a/agents-api/agents_api/clients/litellm.py b/agents-api/agents_api/clients/litellm.py index 463f6fa67..2c98abc30 100644 --- a/agents-api/agents_api/clients/litellm.py +++ b/agents-api/agents_api/clients/litellm.py @@ -21,6 +21,8 @@ async def acompletion( supported_params = get_supported_openai_params(model) settings = {k: v for k, v in kwargs.items() if k in supported_params} + print("+++>", settings) + return await _acompletion( model=model, messages=messages,