README
::: tip github
代码库:https://github.com/UNICKCHENG/openai-proxy
:::
openai-proxy
是为中国用户提供的一个方案,即解决 openai api 无法正常请求。
现在您只需要将 https://api.openai.com/
替换成 https://openai.aihey.cc/openai
即可食用。
# openai api
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'
# 替换后
curl https://openai.aihey.cc/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'
✨ 新特征
支持查询费用消耗量
自从 2023 年 04 月份开始,
https://api.openai.com/dashboard/billing/credit_grants
只能通过网页登录生成的 session id 来请求,而 key (sk-*****
) 的方式将无效。不过您可以通过下述两个方式来请求。
方式1:使用 openai-proxy
缺点:
- 可能和网页端显示的数据存在差异(这个不知道为啥,有了解的小伙伴欢迎在 ISSUES 指出)
# 指定统计开始日期和结束日期
curl https://openai.aihey.cc/openai/billing/credit_grants?start_date=2022-05-10&end_date=2023-05-10 \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-***********"
# 不指定参数,默认统计最近 90 天的数据
curl https://openai.aihey.cc/openai/billing/credit_grants \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-**********"
方式2:使用网页端生成的 sensitive_id
缺点:
- 首次需要去网页端获取(按 F12 后刷新网页)
- 可能随时会失效(但目前来看只要网页端不退出登录,
sensitive_id
时效都比较长)
```bash
curl https://openai.aihey.cc/openai/billing/credit_grants\
-H "Content-Type: application/json"
-H "Authoriz
最后修改时间: 1 年前