Update lago.py to accomodate API change (#5495) (#5543)

* 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:
Krish Dholakia 2024-09-05 17:27:40 -07:00 committed by GitHub
parent 6cd8951f56
commit 7ced9c8c0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -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}")