#Can you show me how?
1 messages · Page 1 of 1 (latest)
Track and analyze your daily usage and cost of the OpenAI API. Understand the costs for different models, including ChatGPT, GPT-4, Whisper, and text-embedding models. Display the information by time or using a pie chart. This tool is open-source and will not leak your API key.
Thsi site is realiable?
Creating AI applications using OpenAI API is great but monitoring the API usage might be a challenging task. In this article, I will first…
also there is a way to check api usage in openai
you need to login to openai and there you can find api usage page.
Current im leading a couple of different teams of developers, and using just one account.
They all have one key per team
amazing!
The usage tab doesnt help much to identify who are using most
In that case, I suggest like this.
You create seperated api keys per team.
And monitor token usage per api key.
In this way, we can monitor api usage per team.
What is your opinion?
Monitor token usage using the apiusage.info website?
In Dashboard page of Openai
and also using api call, you can get api usage based on api key.
Reference this discussion
r = openai.api_requestor.APIRequestor();
resp = r.request("GET", '/usage?date=2023-04-05'); // or start_date and end_date
resp_object = resp[0]
resp_object.data
Great
Look, there by setting data, you can get api usage per api key.
I think is a reliable way to mesure
openai object is something configurable.
Will try that