diff --git a/centml/sdk/api.py b/centml/sdk/api.py index 1823dcb..e1e11d3 100644 --- a/centml/sdk/api.py +++ b/centml/sdk/api.py @@ -134,6 +134,9 @@ def get_deployment_usage( step=step, ).values + def get_credits(self): + return self._api.get_credits_credits_get() + def initialize_user(self): return self._api.setup_stripe_customer_payments_setup_post() diff --git a/setup.py b/setup.py index b752c00..c2dafb5 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='centml', - version='0.4.6', + version='0.4.7', packages=find_packages(), python_requires=">=3.10", long_description=open('README.md').read(),