mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-25 03:06:52 +00:00
e1fbdde289
* feat: add summarize parameter to /spend/logs endpoint for individual transaction logs - Introduced a new `summarize` parameter to control data format when querying spend logs. - `summarize=true` (default) returns aggregated data, while `summarize=false` provides individual transaction logs. - Updated documentation and added tests to validate the new functionality. * fix: wrap boto3.Session() with tracer for observability - Add tracer.trace wrapper around boto3.Session() call in _get_aws_region_name method - Ensures all boto3 initializations in base_aws_llm.py are properly instrumented - Fixes test_boto3_init_tracer_wrapping test failure - Maintains consistency with other boto3 calls in the same file