Skip to content

Commit

Permalink
Consider function calling roles and messages valid (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilsedgh committed Oct 7, 2023
1 parent 2df818a commit f05c2c9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions examples/Chat_finetuning_data_prep.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,16 @@
" if \"role\" not in message or \"content\" not in message:\n",
" format_errors[\"message_missing_key\"] += 1\n",
" \n",
" if any(k not in (\"role\", \"content\", \"name\") for k in message):\n",
" if any(k not in (\"role\", \"content\", \"name\", \"function_call\") for k in message):\n",
" format_errors[\"message_unrecognized_key\"] += 1\n",
" \n",
" if message.get(\"role\", None) not in (\"system\", \"user\", \"assistant\"):\n",
" if message.get(\"role\", None) not in (\"system\", \"user\", \"assistant\", \"function\"):\n",
" format_errors[\"unrecognized_role\"] += 1\n",
" \n",
" content = message.get(\"content\", None)\n",
" if not content or not isinstance(content, str):\n",
" function_call = message.get(\"function_call\", None)\n",
" \n",
" if (not content and not function_call) or not isinstance(content, str):\n",
" format_errors[\"missing_content\"] += 1\n",
" \n",
" if not any(message.get(\"role\", None) == \"assistant\" for message in messages):\n",
Expand Down

0 comments on commit f05c2c9

Please sign in to comment.