-
Notifications
You must be signed in to change notification settings - Fork 340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get account balance info from token #23
Comments
This would also be useful to set up an alert system when paying for things on a large scale to ensure the app doesn't become unusable during a massive surge in traffic and so I don't have to keep checking manually. |
coming soon, but hasn't been incorporated into this package yet. If you don't mind getting under the hood the grpc stubs you'll need can be found here: |
@dmarx I've managed to use the dashboard stub to access GetMe and I'm getting a permission error... is this something that i can get opened up? if so how? grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with: I'm using the same StabilityInference example in client.py to open up the channel. generation works fine with the api token i'm using. wd = pathlib.Path(file).parent.resolve() import dashboard_pb2 as dashboard #then inside class StabilityInference: |
@jessekoska We'll need to do some back-end work to support this, as API keys have a very limited permission set at the moment. Allowing API key permissions to be customized at creation time is on our radar. |
As same to @CEOSiyris is saying, I also would like to monitor the remaining balance to use DreamStudio API in production. But I've not figured out how to get the access token in a canonical way. Could you have some advice?
It worked, but copying the token by the dev tool doesn't seem like the right way to do it. |
yeah i attempted this approach too (but must have not done something correct in the metadata approach cause i didn't get it to connect) but i also noticed that my account's Bearer token changed at some point so i stopped trying as i wasn't confident of how long the token would be valid or how i might refresh it |
With a recent update, API keys now have read-only access to certain dashboard operations, such as GetMe and GetOrganization, so this is now possible. |
There's a handy function for this the animation notebook uses to fetch the user's profile picture and credit balance you could use: https://github.com/Stability-AI/stability-sdk/blob/main/src/stability_sdk/api.py#L181 |
I'd like users to be able to put their own tokens in our software and use the balance they have at dreamstudio using a different front-end.
Is it currently possible (and if not, I'd like to request this feature), to get the balance of the account, so I can provide this information to users without them having to go to a browser and log into dreamstudio?
The text was updated successfully, but these errors were encountered: