随着 OpenAI 终于公开了 GPT-3 相关的 API,我正在玩它来探索和发现他的潜力。
我正在尝试 Answer API,文档中的简单示例: https ://beta.openai.com/docs/guides/answers
我.jsonl
按照指示上传文件,我可以看到它已成功使用openai.File.list()
api 上传。
不幸的是,当我尝试使用它时,我总是遇到同样的错误:
>>> openai.File.create(purpose='answers', file=open('example.jsonl') )
<File file id=file-xxx at 0x7fbc9eca5e00> JSON: {
"bytes": 140,
"created_at": 1637597242,
"filename": "example.jsonl",
"id": "file-xxx",
"object": "file",
"purpose": "answers",
"status": "uploaded",
"status_details": null
}
#Use the file in the API:
openai.Answer.create(
search_model="ada",
model="curie",
question="which puppy is happy?",
file="file-xxx",
examples_context="In 2017, U.S. life expectancy was 78.6 years.",
examples=[["What is human life expectancy in the United States?", "78 years."]],
max_rerank=10,
max_tokens=5,
stop=["\n", "<|endoftext|>"]
)
<some exception, then>
openai.error.InvalidRequestError: File is still processing. Check back later.
我已经等了几个小时,我认为这个内容不值得等这么久......你知道这是正常行为,还是我错过了什么?
谢谢