已订阅(已支付)的chatgpt给出错误:速率限制错误:您已超出当前配额,请检查您的计划和账单详细信息

fzwojiic  于 2023-06-30  发布在  其他
关注(0)|答案(1)|浏览(464)

为什么我得到“RateLimitError:您已超过当前配额,请检查您的计划和账单详细信息。我已经订阅了,这是我的第一个请求。我付了订阅费。为什么?OPENAPI WTF?下面是我的代码:

import openai
KEY = "mykeyhere it is checked over 10 times" //i tries to create new keys, not working, all times RATELIMITERROR
openai.api_key = KEY
def generate_response(text):
    response = openai.Completion.create(
        prompt=text,
        engine='text-davinci-003',
        max_tokens=100,
        temperature=0.7,
        n=1,
        stop=None,
        timeout=15
    )
    if response and response.choices:
        return response.choices[0].text.strip()
    else:
        return None

res = generate_response("Hello, how are you?")

print(res)

我做错了什么,为什么我的第一个请求给出了这个错误?

bvhaajcl

bvhaajcl1#

Generate a new API key如果您的旧API密钥是在升级到付费计划之前生成的。

相关问题