mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
* Update lago.py to accomodate API change (#5495) external_customer_id is deprecated. external_subscription_id is the replacement. * fix(lago.py): fixes \ --------- Co-authored-by: Raymond Weitekamp <19483938+rawwerks@users.noreply.github.com>
This commit is contained in:
parent
6cd8951f56
commit
7ced9c8c0e
2 changed files with 4 additions and 2 deletions
|
@ -114,7 +114,7 @@ class LagoLogger(CustomLogger):
|
|||
returned_val = {
|
||||
"event": {
|
||||
"transaction_id": str(uuid.uuid4()),
|
||||
"external_customer_id": external_customer_id,
|
||||
"external_subscription_id": external_customer_id,
|
||||
"code": os.getenv("LAGO_API_EVENT_CODE"),
|
||||
"properties": {"model": model, "response_cost": cost, **usage},
|
||||
}
|
||||
|
@ -189,6 +189,8 @@ class LagoLogger(CustomLogger):
|
|||
)
|
||||
|
||||
response.raise_for_status()
|
||||
|
||||
verbose_logger.debug(f"Logged Lago Object: {response.text}")
|
||||
except Exception as e:
|
||||
if response is not None and hasattr(response, "text"):
|
||||
litellm.print_verbose(f"\nError Message: {response.text}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue