docs: fix example code in fine-tuned_qa section 2.3

This commit is contained in:
Akshay 2023-02-04 11:10:15 +05:30
parent fe448be5e8
commit e894ddf315

View File

@ -256,7 +256,7 @@
" try:\n",
" response = openai.Completion.create(\n",
" engine=\"davinci-instruct-beta-v3\",\n",
" prompt=f\"Write questions based on the text below\\n\\nText: {row.context}\\n\\nQuestions:\\n{row.questions}\\n\\nAnswers:\\n1.\",\n",
" prompt=f\"Write answer based on the text below\\n\\nText: {row.context}\\n\\nQuestions:\\n{row.questions}\\n\\nAnswers:\\n1.\",\n",
" temperature=0,\n",
" max_tokens=257,\n",
" top_p=1,\n",