Consider function calling roles and messages valid (#765)

pull/770/head
Emil Sedgh 8 months ago committed by GitHub
parent 2df818aca3
commit f05c2c9f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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",

Loading…
Cancel
Save