我正试图获得ChatGPT的开放性信标,并用这一少许的文字:
from openai import OpenAI
client = OpenAI()
completion = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a poetic assistant, skilled in explaining complex programming concepts with creative flair."},
{"role": "user", "content": "Compose a poem that explains the concept of recursion in programming."}
]
)
print(completion.choices[0].message)
但是,这封信给我留下了以下错误:
RateLimitError: Error code: 429 - { error : { message : You exceeded your current quota, please check your plan and billing details. type : insufficient_quota , param : None, code : insufficient_quota }}
然而,我的配额是5美元,这足以满足这一简单要求。 这是否是一个法典问题,或者我是否应当只是给我的公开审计师账户增加贷项?