diff --git a/fieldExtraction/src/prompts/prompt_templates.py b/fieldExtraction/src/prompts/prompt_templates.py index eb395f0..7d44288 100644 --- a/fieldExtraction/src/prompts/prompt_templates.py +++ b/fieldExtraction/src/prompts/prompt_templates.py @@ -913,6 +913,7 @@ Briefly explain your reasoning. After your explanation, include the heading "FIN - Each provider must be an object within this array - All provider objects must have these exact keys: "TIN", "NPI", "NAME" - Use null (not strings like "null" or "N/A") for missing values +- A provider record is considered valid as long as either a TIN, NPI, or NAME is present. If any one or two of those fields are missing, use null for those fields. - Your final JSON array must begin with an opening bracket '[' and end with a closing bracket ']' - Make sure the JSON array is correctly formatted with commas between objects - Do not include any JSON notation elsewhere in your response @@ -929,6 +930,11 @@ FINAL PROVIDER INFO: "TIN": "987654321", "NPI": null, "NAME": "Dr. John Smith", + }}, + {{ + "TIN": null, + "NPI": "1234567890", + "NAME": "Jane Doe, CRNA" }} ]