Files
LangBot/pkg/utils/credit.py

19 lines
513 B
Python
Raw Normal View History

# OpenAI账号免费额度剩余查询
import requests
2023-03-15 21:04:55 +08:00
def fetch_credit_data(api_key: str, http_proxy: str) -> dict:
"""OpenAI账号免费额度剩余查询"""
2023-03-15 21:04:55 +08:00
proxies = {
"http":http_proxy,
"https":http_proxy
} if http_proxy is not None else None
resp = requests.get(
url="https://api.openai.com/dashboard/billing/credit_grants",
headers={
"Authorization": "Bearer {}".format(api_key),
2023-03-15 21:04:55 +08:00
},
proxies=proxies
)
2023-03-15 21:04:55 +08:00
return resp.json()