Spaces:
Sleeping
Sleeping
| [ | |
| { | |
| "name": "get_active_ingredient_info_by_drug_name", | |
| "description": "Fetch a list of active ingredients in a specific drug product.", | |
| "label": [ | |
| "ActiveIngredient", | |
| "Drug", | |
| "FDA", | |
| "FDADrugLabel" | |
| ], | |
| "type": "FDADrugLabel", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "active_ingredient" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "get_dosage_and_storage_information_by_drug_name", | |
| "description": "Retrieve dosage and storage information for a specific drug.", | |
| "label": [ | |
| "DosageAndAdministration", | |
| "StorageAndHandling", | |
| "Drug", | |
| "FDA", | |
| "FDADrugLabel" | |
| ], | |
| "type": "FDADrugLabel", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "dosage_and_administration", | |
| "how_supplied" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "get_drug_names_by_abuse_info", | |
| "description": "Retrieve drug names based on information about types of abuse and adverse reactions pertinent to those types of abuse.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "abuse_info": { | |
| "type": "string", | |
| "description": "Information about the types of abuse that can occur with the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "abuse_info": [ | |
| "abuse" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on drugs that have a high potential for abuse similar to opioids, and limit the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_abuse_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(abuse:high potential for abuse similar to opioids)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some drugs that are commonly associated with misuse and addiction, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_abuse_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(abuse:commonly associated with misuse and addiction)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Please list drugs that have a risk of overdose and death when abused, and provide only 2 results.", | |
| "query": { | |
| "name": "get_drug_names_by_abuse_info", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(abuse:risk of overdose and death when abused)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Abuse", | |
| "AdverseReactions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_abuse_info_by_drug_name", | |
| "description": "Retrieve information about types of abuse based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "abuse" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the types of abuse and adverse reactions associated with the drug Lorazepam, limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_abuse_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Lorazepam+openfda.generic_name:Lorazepam)+AND+(_exists_:abuse)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the known abuse-related adverse reactions for the drug Tramadol Hydrochloride, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_abuse_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:abuse)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the misuse and abuse potential of the drug Paroxetine, including any severe adverse reactions. Please limit the results to 4 records and skip the first 2.", | |
| "query": { | |
| "name": "get_abuse_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Paroxetine+openfda.generic_name:Paroxetine)+AND+(_exists_:abuse)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Abuse", | |
| "AdverseReactions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_accessories", | |
| "description": "Retrieve drug names based on the accessories field information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "accessory_name": { | |
| "type": "string", | |
| "description": "The name or part of the name of the accessory.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "accessory_name": [ | |
| "accessories" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are some drugs that use the accessory 'syringe'?", | |
| "query": { | |
| "name": "get_drug_names_by_accessories", | |
| "arguments": { | |
| "search": "(accessories:syringe)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Accessories", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_accessories_info_by_drug_name", | |
| "description": "Retrieve information about accessories based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "accessories" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on the accessories associated with the drug Polyethylene Glycol 3350, limiting the results to 2 and skipping the first 2 records?", | |
| "query": { | |
| "name": "get_accessories_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Polyethylene Glycol 3350+openfda.generic_name:Polyethylene Glycol 3350)+AND+(_exists_:accessories)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need details on the accessories for MIPaste One Perio, but please limit the results to just 1 record.", | |
| "query": { | |
| "name": "get_accessories_info_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:MIPASTE ONE PERIO+openfda.generic_name:MIPASTE ONE PERIO)+AND+(_exists_:accessories)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Accessories", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_active_ingredient", | |
| "description": "Retrieve drug names based on the active ingredient information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "active_ingredient": { | |
| "type": "string", | |
| "description": "The active ingredient in the drug product.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "active_ingredient": [ | |
| "active_ingredient" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that contain Acetaminophen as an active ingredient, with a limit of 3 results and skipping the first 5?", | |
| "query": { | |
| "name": "get_drug_names_by_active_ingredient", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(active_ingredient:Acetaminophen)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have Lidocaine as an active ingredient. Please return only 2 results and skip the first 4.", | |
| "query": { | |
| "name": "get_drug_names_by_active_ingredient", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(active_ingredient:Lidocaine)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names that include Naproxen Sodium as an active ingredient, with a limit of 4 results and skipping the first 3?", | |
| "query": { | |
| "name": "get_drug_names_by_active_ingredient", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 3, | |
| "search": "(active_ingredient:Naproxen Sodium)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "active_ingredient", | |
| "FDA", | |
| "Description" | |
| ] | |
| }, | |
| { | |
| "name": "get_active_ingredient_application_number_manufacturer_name_NDC_number_administration_route_by_drug_name", | |
| "description": "Retrieve detailed information about a drug's active ingredient, FDA application number, manufacturer name, National Drug Code (NDC) number, and route of administration; all based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "active_ingredient", | |
| "openfda.application_number", | |
| "openfda.manufacturer_name", | |
| "openfda.product_ndc", | |
| "openfda.route" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information about the drug 'Rescue Sleep', including the first 2 records and skipping the first 4?", | |
| "query": { | |
| "name": "get_active_ingredient_application_number_manufacturer_name_NDC_number_administration_route_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(openfda.brand_name:Rescue Sleep+openfda.generic_name:Rescue Sleep)+AND+(_exists_:active_ingredient+_exists_:openfda.application_number+_exists_:openfda.manufacturer_name+_exists_:openfda.product_ndc+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the active ingredients and manufacturer details for the drug 'Pain Reliever Extra Strength', but only show 2 records and skip the first 5.", | |
| "query": { | |
| "name": "get_active_ingredient_application_number_manufacturer_name_NDC_number_administration_route_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Pain Reliever Extra Strength+openfda.generic_name:Pain Reliever Extra Strength)+AND+(_exists_:active_ingredient+_exists_:openfda.application_number+_exists_:openfda.manufacturer_name+_exists_:openfda.product_ndc+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the active ingredients and application numbers for the drug 'Cuprum aceticum Nicotiana', with a limit of 2 results and skipping the first 2?", | |
| "query": { | |
| "name": "get_active_ingredient_application_number_manufacturer_name_NDC_number_administration_route_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Cuprum aceticum Nicotiana+openfda.generic_name:Cuprum aceticum Nicotiana)+AND+(_exists_:active_ingredient+_exists_:openfda.application_number+_exists_:openfda.manufacturer_name+_exists_:openfda.product_ndc+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "active_ingredient", | |
| "FDA", | |
| "Description", | |
| "DosageAndAdministration", | |
| "HowSupplied", | |
| "FDAApprovedLabeling" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_application_number_manufacturer_name_NDC_number", | |
| "description": "Retrieve drug names based on the specified FDA application number, manufacturer name, or National Drug Code (NDC) number.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "application_manufacturer_or_NDC_info": { | |
| "type": "string", | |
| "description": "FDA application, manufacturer, or NDC number info", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "application_manufacturer_or_NDC_info": [ | |
| "openfda.application_number", | |
| "openfda.manufacturer_name", | |
| "openfda.product_ndc" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "active_ingredient", | |
| "FDA", | |
| "Description", | |
| "DosageAndAdministration", | |
| "HowSupplied", | |
| "FDAApprovedLabeling" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_adverse_reaction", | |
| "description": "Retrieve the drug name based on specific adverse reactions reported.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "adverse_reaction": { | |
| "type": "string", | |
| "description": "The adverse reaction to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "adverse_reaction": [ | |
| "adverse_reactions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have been reported to cause pulmonary toxicity, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_adverse_reaction", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(adverse_reactions:pulmonary toxicity)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications have been associated with causing gastrointestinal disorders, and skip the first 5 records?", | |
| "query": { | |
| "name": "get_drug_name_by_adverse_reaction", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(adverse_reactions:gastrointestinal disorders)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are linked to causing skin ulceration, and provide the first 4 results?", | |
| "query": { | |
| "name": "get_drug_name_by_adverse_reaction", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(adverse_reactions:skin ulceration)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AdverseReactions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_adverse_reactions_by_drug_name", | |
| "description": "Retrieve adverse reactions information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "adverse_reactions", | |
| "warnings_and_cautions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the adverse reactions associated with the drug Cyclosporine, including the first 3 records?", | |
| "query": { | |
| "name": "get_adverse_reactions_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Cyclosporine+openfda.generic_name:Cyclosporine)+AND+(_exists_:adverse_reactions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the reported side effects of using the medication Enalapril Maleate, and can you skip the first 5 records and show the next 2?", | |
| "query": { | |
| "name": "get_adverse_reactions_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Enalapril Maleate+openfda.generic_name:Enalapril Maleate)+AND+(_exists_:adverse_reactions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for adverse reaction data for the drug Flovent Diskus. Could you provide this information, limiting the results to 4 records?", | |
| "query": { | |
| "name": "get_adverse_reactions_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(openfda.brand_name:Flovent Diskus+openfda.generic_name:Flovent Diskus)+AND+(_exists_:adverse_reactions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AdverseReactions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_alarm", | |
| "description": "Retrieve drug names based on the presence of specific alarms, which are related to adverse reaction events.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "alarm_type": { | |
| "type": "string", | |
| "description": "The type of alarm to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "alarm_type": [ | |
| "alarms" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs associated with a 'high blood pressure' alarm, limiting the results to 10?", | |
| "query": { | |
| "name": "get_drug_names_by_alarm", | |
| "arguments": { | |
| "limit": 10, | |
| "search": "(alarms:high blood pressure)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are flagged with a 'liver damage' alarm, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_alarm", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(alarms:liver damage)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have a 'heart attack' alarm. Please provide the first 3 results.", | |
| "query": { | |
| "name": "get_drug_names_by_alarm", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(alarms:heart attack)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "alarms", | |
| "FDA", | |
| "DrugInteractions", | |
| "AdverseReactions" | |
| ] | |
| }, | |
| { | |
| "name": "get_alarms_by_drug_name", | |
| "description": "Retrieve alarms based on the specified drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "alarms" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "alarms", | |
| "FDA", | |
| "DrugInteractions", | |
| "AdverseReactions" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_animal_pharmacology_info", | |
| "description": "Retrieve drug names based on animal pharmacology and toxicology information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pharmacology_info": { | |
| "type": "string", | |
| "description": "Information from studies of the drug in animals.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pharmacology_info": [ | |
| "animal_pharmacology_and_or_toxicology" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have shown retinal toxicity in animal studies, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_animal_pharmacology_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(animal_pharmacology_and_or_toxicology:retinal toxicity)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have been associated with phospholipidosis in animal studies, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_animal_pharmacology_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(animal_pharmacology_and_or_toxicology:phospholipidosis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have shown signs of increased cholesterol and triglycerides in animal studies, limited to 4 results and skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_names_by_animal_pharmacology_info", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(animal_pharmacology_and_or_toxicology:increased cholesterol and triglycerides)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AnimalPharmacology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_animal_pharmacology_info_by_drug_name", | |
| "description": "Retrieve animal pharmacology and toxicology information based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "animal_pharmacology_and_or_toxicology" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed animal pharmacology and toxicology information for the drug Olanzapine, skipping the first record and limiting the results to 2?", | |
| "query": { | |
| "name": "get_animal_pharmacology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Olanzapine+openfda.generic_name:Olanzapine)+AND+(_exists_:animal_pharmacology_and_or_toxicology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the toxicological effects observed in animals when treated with Azithromycin?", | |
| "query": { | |
| "name": "get_animal_pharmacology_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Azithromycin+openfda.generic_name:Azithromycin)+AND+(_exists_:animal_pharmacology_and_or_toxicology)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the animal pharmacology and toxicology findings for the drug Lorbrena, but only the first 3 records.", | |
| "query": { | |
| "name": "get_animal_pharmacology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Lorbrena+openfda.generic_name:Lorbrena)+AND+(_exists_:animal_pharmacology_and_or_toxicology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AnimalPharmacology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_info_on_conditions_for_doctor_consultation", | |
| "description": "Retrieve the drug names that require asking a doctor before use due to a patient's specific conditions and symptoms.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "condition": { | |
| "type": "string", | |
| "description": "The condition or symptom that requires consulting a doctor.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "condition": [ | |
| "ask_doctor" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "AskDoctor", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_info_on_conditions_for_doctor_consultation_by_drug_name", | |
| "description": "Get information about when a doctor should be consulted before using a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "ask_doctor" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Under what conditions should a patient consult a doctor before using the nicotine replacement therapy product 'exchange select nicotine'?", | |
| "query": { | |
| "name": "get_info_on_conditions_for_doctor_consultation_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:exchange select nicotine+openfda.generic_name:exchange select nicotine)+AND+(_exists_:ask_doctor)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide information on when to consult a doctor before using 'Biofreeze' with a limit of 2 records and skipping the first 1?", | |
| "query": { | |
| "name": "get_info_on_conditions_for_doctor_consultation_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Biofreeze+openfda.generic_name:Biofreeze)+AND+(_exists_:ask_doctor)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the specific conditions that require a doctor's consultation before using 'Dyural 80 Kit'?", | |
| "query": { | |
| "name": "get_info_on_conditions_for_doctor_consultation_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Dyural 80 Kit+openfda.generic_name:Dyural 80 Kit)+AND+(_exists_:ask_doctor)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AskDoctor", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_info_on_consulting_doctor_pharmacist_for_drug_interactions", | |
| "description": "Retrieve drug names based on information about when a doctor or pharmacist should be consulted regarding drug interactions.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "interaction_info": { | |
| "type": "string", | |
| "description": "Information about when a doctor or pharmacist should be consulted regarding drug interactions.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "interaction_info": [ | |
| "ask_doctor_or_pharmacist" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that require consulting a doctor or pharmacist if the patient is taking blood thinners like warfarin?", | |
| "query": { | |
| "name": "get_drug_names_by_info_on_consulting_doctor_pharmacist_for_drug_interactions", | |
| "arguments": { | |
| "search": "(ask_doctor_or_pharmacist:Ask a doctor or pharmacist if you are taking the blood thinning drug warfarin)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some medications that necessitate a doctor's consultation if the patient is using sedatives or tranquilizers, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_info_on_consulting_doctor_pharmacist_for_drug_interactions", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(ask_doctor_or_pharmacist:Ask a doctor or pharmacist before use if you are taking sedatives or tranquilizers.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Please list the drugs that require a doctor's advice if the patient is on any blood thinning medication, skipping the first 2 results.", | |
| "query": { | |
| "name": "get_drug_names_by_info_on_consulting_doctor_pharmacist_for_drug_interactions", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(ask_doctor_or_pharmacist:Ask a doctor or pharmacist before use if you are taking the blood thinning drug warfarin)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "ask_doctor_or_pharmacist", | |
| "FDA", | |
| "AskDoctor", | |
| "DrugInteractions" | |
| ] | |
| }, | |
| { | |
| "name": "get_info_on_consulting_doctor_pharmacist_for_drug_interactions_by_drug_name", | |
| "description": "Get information about when a doctor or pharmacist should be consulted regarding drug interactions for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "ask_doctor_or_pharmacist" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the specific conditions under which a doctor should be consulted before using the drug COLTALIN?", | |
| "query": { | |
| "name": "get_info_on_consulting_doctor_pharmacist_for_drug_interactions_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:COLTALIN+openfda.generic_name:COLTALIN)+AND+(_exists_:ask_doctor_or_pharmacist)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide information on when to consult a healthcare professional before using MegaBabe Butt Stuff Hemorrhoidal, with a limit of 1 result?", | |
| "query": { | |
| "name": "get_info_on_consulting_doctor_pharmacist_for_drug_interactions_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:MegaBabe Butt Stuff Hemorrhoidal+openfda.generic_name:MegaBabe Butt Stuff Hemorrhoidal)+AND+(_exists_:ask_doctor_or_pharmacist)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need details on the precautions for using Epsom Salt, skipping the first 3 records and limiting the results to 2.", | |
| "query": { | |
| "name": "get_info_on_consulting_doctor_pharmacist_for_drug_interactions_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Epsom Salt+openfda.generic_name:Epsom Salt)+AND+(_exists_:ask_doctor_or_pharmacist)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "AskDoctor", | |
| "ask_doctor_or_pharmacist", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_assembly_installation_info", | |
| "description": "Retrieve drug names based on assembly or installation instructions.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "field_info": { | |
| "type": "string", | |
| "description": "Information related to assembly or installation instructions.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "field_info": [ | |
| "assembly_or_installation_instructions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have specific assembly instructions for their dispensers, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_assembly_installation_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(assembly_or_installation_instructions:assembly instructions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to find drugs that come with detailed installation instructions for their packaging. Please skip the first 2 records and return the next 2.", | |
| "query": { | |
| "name": "get_drug_names_by_assembly_installation_info", | |
| "arguments": { | |
| "skip": 2, | |
| "limit": 2, | |
| "search": "(assembly_or_installation_instructions:installation instructions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names that include loading instructions for their use, and can you provide the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_assembly_installation_info", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(assembly_or_installation_instructions:loading instructions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "assembly_or_installation_instructions", | |
| "FDA", | |
| "InstructionsForUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_assembly_installation_info_by_drug_name", | |
| "description": "Retrieve assembly or installation instructions based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "assembly_or_installation_instructions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the assembly instructions for the drug Doxycycline, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_assembly_installation_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Doxycycline+openfda.generic_name:Doxycycline)+AND+(_exists_:assembly_or_installation_instructions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed preparation and stability instructions for the drug Ethyl Alcohol. Please skip the first 1 record.", | |
| "query": { | |
| "name": "get_assembly_installation_info_by_drug_name", | |
| "arguments": { | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Ethyl Alcohol+openfda.generic_name:Ethyl Alcohol)+AND+(_exists_:assembly_or_installation_instructions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the specific instructions for the preparation and infusion of the drug Doxy 100(TM) Doxycycline?", | |
| "query": { | |
| "name": "get_assembly_installation_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Doxy 100(TM) Doxycycline+openfda.generic_name:Doxy 100(TM) Doxycycline)+AND+(_exists_:assembly_or_installation_instructions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "assembly_or_installation_instructions", | |
| "FDA", | |
| "InstructionsForUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_boxed_warning", | |
| "description": "Retrieve drug names that have specific boxed warnings and adverse effects.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "warning_text": { | |
| "type": "string", | |
| "description": "The text of the boxed warning to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "warning_text": [ | |
| "boxed_warning" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings related to fetal toxicity, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_boxed_warning", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(boxed_warning:fetal toxicity)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications have boxed warnings about the risk of addiction and misuse, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_boxed_warning", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(boxed_warning:addiction and misuse)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have boxed warnings concerning serious respiratory depression, with a limit of 2 results and skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_names_by_boxed_warning", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(boxed_warning:serious respiratory depression)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "boxed_warning", | |
| "FDA", | |
| "DrugInteractions", | |
| "Warnings" | |
| ] | |
| }, | |
| { | |
| "name": "get_boxed_warning_info_by_drug_name", | |
| "description": "Retrieve boxed warning and adverse effects information for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "boxed_warning" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the boxed warning information for the drug Enalapril Maleate, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_boxed_warning_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Enalapril Maleate+openfda.generic_name:Enalapril Maleate)+AND+(_exists_:boxed_warning)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the boxed warnings associated with the drug Cyclosporine, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_boxed_warning_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Cyclosporine+openfda.generic_name:Cyclosporine)+AND+(_exists_:boxed_warning)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed boxed warning information for the drug Amphetamine Sulfate, with a limit of 2 records and skipping the first 3.", | |
| "query": { | |
| "name": "get_boxed_warning_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Amphetamine Sulfate+openfda.generic_name:Amphetamine Sulfate)+AND+(_exists_:boxed_warning)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "boxed_warning", | |
| "FDA", | |
| "Warnings" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_calibration_instructions", | |
| "description": "Retrieve the drug name based on the calibration instructions provided.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "calibration_instructions": { | |
| "type": "string", | |
| "description": "Instructions used for calibration of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "calibration_instructions": [ | |
| "calibration_instructions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug name for the medication that requires the following calibration instructions: 'Shake well before use and store at room temperature'?", | |
| "query": { | |
| "name": "get_drug_name_by_calibration_instructions", | |
| "arguments": { | |
| "search": "(calibration_instructions:Shake well before use and store at room temperature)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the drug name for a medication with the calibration instructions 'Calibrate using a 5ml syringe'. Please limit the results to 3 records.", | |
| "query": { | |
| "name": "get_drug_name_by_calibration_instructions", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(calibration_instructions:Calibrate using a 5ml syringe)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the drug name for a medication that has the calibration instructions 'Use a calibrated dropper for accurate dosing'? Skip the first 2 records.", | |
| "query": { | |
| "name": "get_drug_name_by_calibration_instructions", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(calibration_instructions:Use a calibrated dropper for accurate dosing)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "calibration_instructions", | |
| "FDA", | |
| "Description" | |
| ] | |
| }, | |
| { | |
| "name": "get_calibration_instructions_by_drug_name", | |
| "description": "Retrieve calibration instructions based on the specified drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "calibration_instructions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "calibration_instructions", | |
| "FDA", | |
| "Description" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_carcinogenic_mutagenic_fertility_impairment_info", | |
| "description": "Retrieve drug names based on the presence of carcinogenic, mutagenic, or fertility impairment information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "carcinogenic_info": { | |
| "type": "string", | |
| "description": "Information about carcinogenic, mutagenic, or fertility impairment potential.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "carcinogenic_info": [ | |
| "carcinogenesis_and_mutagenesis_and_impairment_of_fertility" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have been studied for their potential to cause cancer, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_carcinogenic_mutagenic_fertility_impairment_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(carcinogenesis_and_mutagenesis_and_impairment_of_fertility:cancer)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have information on mutagenic effects, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_carcinogenic_mutagenic_fertility_impairment_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(carcinogenesis_and_mutagenesis_and_impairment_of_fertility:mutagenic)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that mention impairment of fertility in their documentation, with a limit of 4 results and skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_names_by_carcinogenic_mutagenic_fertility_impairment_info", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(carcinogenesis_and_mutagenesis_and_impairment_of_fertility:fertility impairment)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "CarcinogenesisAndMutagenesis", | |
| "ImpairmentOfFertility", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_carcinogenic_mutagenic_fertility_impairment_info_by_drug_name", | |
| "description": "Retrieve carcinogenic, mutagenic, or fertility impairment information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "carcinogenesis_and_mutagenesis_and_impairment_of_fertility" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the carcinogenic and mutagenic potential of the drug Enoxaparin Sodium, including any effects on fertility?", | |
| "query": { | |
| "name": "get_carcinogenic_mutagenic_fertility_impairment_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Enoxaparin Sodium+openfda.generic_name:Enoxaparin Sodium)+AND+(_exists_:carcinogenesis_and_mutagenesis_and_impairment_of_fertility)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the findings related to carcinogenesis, mutagenesis, and fertility impairment for the drug Sumatriptan, with a limit of 3 records and skipping the first 1?", | |
| "query": { | |
| "name": "get_carcinogenic_mutagenic_fertility_impairment_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Sumatriptan+openfda.generic_name:Sumatriptan)+AND+(_exists_:carcinogenesis_and_mutagenesis_and_impairment_of_fertility)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know if there are any carcinogenic or mutagenic effects associated with the drug Diclofenac Sodium, and how it impacts fertility, with a limit of 2 records.", | |
| "query": { | |
| "name": "get_carcinogenic_mutagenic_fertility_impairment_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Diclofenac Sodium+openfda.generic_name:Diclofenac Sodium)+AND+(_exists_:carcinogenesis_and_mutagenesis_and_impairment_of_fertility)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "CarcinogenesisAndMutagenesis", | |
| "ImpairmentOfFertility", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_application_number_NUI_identifier_SPL_document_ID_SPL_set_ID", | |
| "description": "Retrieve the drug name based on the FDA application number, NUI unique identifier, document ID of a specific version of the drug's Structured Product Label (SPL), or set ID of the drug's Structured Product Label that works across label versions.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "field_info": { | |
| "type": "string", | |
| "description": "The specific field information to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "field_info": [ | |
| "openfda.application_number", | |
| "openfda.nui", | |
| "openfda.spl_id", | |
| "openfda.spl_set_id" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the brand name of the drug with the application number ANDA077397?", | |
| "query": { | |
| "name": "get_drug_name_by_application_number_NUI_identifier_SPL_document_ID_SPL_set_ID", | |
| "arguments": { | |
| "search": "(openfda.application_number:ANDA077397+openfda.nui:ANDA077397+openfda.spl_id:ANDA077397+openfda.spl_set_id:ANDA077397)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the generic name of the drug associated with the SPL ID 7a9c455d-8060-4269-a866-18018e722d24, and limit the results to 1?", | |
| "query": { | |
| "name": "get_drug_name_by_application_number_NUI_identifier_SPL_document_ID_SPL_set_ID", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.application_number:7a9c455d-8060-4269-a866-18018e722d24+openfda.nui:7a9c455d-8060-4269-a866-18018e722d24+openfda.spl_id:7a9c455d-8060-4269-a866-18018e722d24+openfda.spl_set_id:7a9c455d-8060-4269-a866-18018e722d24)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the brand name of the drug that has the SPL Set ID 00281d57-4b60-4485-bcb9-1aeca3e6630b, skipping the first 3 records.", | |
| "query": { | |
| "name": "get_drug_name_by_application_number_NUI_identifier_SPL_document_ID_SPL_set_ID", | |
| "arguments": { | |
| "skip": 3, | |
| "search": "(openfda.application_number:00281d57-4b60-4485-bcb9-1aeca3e6630b+openfda.nui:00281d57-4b60-4485-bcb9-1aeca3e6630b+openfda.spl_id:00281d57-4b60-4485-bcb9-1aeca3e6630b+openfda.spl_set_id:00281d57-4b60-4485-bcb9-1aeca3e6630b)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "DrugName", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_clinical_pharmacology", | |
| "description": "Retrieve drug names based on clinical pharmacology information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "clinical_pharmacology": { | |
| "type": "string", | |
| "description": "Information about the clinical pharmacology and actions of the drug in humans.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "clinical_pharmacology": [ | |
| "clinical_pharmacology" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that act on purine catabolism and reduce uric acid production, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_pharmacology", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(clinical_pharmacology:acts on purine catabolism and reduces uric acid production)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs inhibit the absorption of cholesterol by the small intestine, and skip the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_pharmacology", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(clinical_pharmacology:inhibit the absorption of cholesterol by the small intestine)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are known to inhibit the enzyme HMG-CoA reductase and what are their names?", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_pharmacology", | |
| "arguments": { | |
| "search": "(clinical_pharmacology:inhibit the enzyme HMG-CoA reductase)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "ClinicalPharmacology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_clinical_pharmacology_by_drug_name", | |
| "description": "Retrieve clinical pharmacology information based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "clinical_pharmacology" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed clinical pharmacology information for the drug Betamethasone Dipropionate, including the first 3 records?", | |
| "query": { | |
| "name": "get_clinical_pharmacology_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Betamethasone Dipropionate+openfda.generic_name:Betamethasone Dipropionate)+AND+(_exists_:clinical_pharmacology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the pharmacokinetics and pharmacodynamics of the drug Etodolac, skipping the first 2 records and limiting to 2 results?", | |
| "query": { | |
| "name": "get_clinical_pharmacology_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Etodolac+openfda.generic_name:Etodolac)+AND+(_exists_:clinical_pharmacology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the clinical pharmacology details for Ondansetron Hydrochloride, but only the first record.", | |
| "query": { | |
| "name": "get_clinical_pharmacology_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Ondansetron Hydrochloride+openfda.generic_name:Ondansetron Hydrochloride)+AND+(_exists_:clinical_pharmacology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "clinical_pharmacology", | |
| "FDA", | |
| "ClinicalPharmacology" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_clinical_studies", | |
| "description": "Retrieve drug names based on the presence of clinical studies information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "clinical_studies": { | |
| "type": "string", | |
| "description": "Information related to clinical studies.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "clinical_studies": [ | |
| "clinical_studies" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have clinical studies related to rheumatoid arthritis, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_studies", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(clinical_studies:rheumatoid arthritis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs have been studied for their effects on osteoarthritis, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_studies", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(clinical_studies:osteoarthritis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have clinical studies information on ankylosing spondylitis.", | |
| "query": { | |
| "name": "get_drug_names_by_clinical_studies", | |
| "arguments": { | |
| "search": "(clinical_studies:ankylosing spondylitis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "ClinicalStudies", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_clinical_studies_info_by_drug_name", | |
| "description": "Retrieve clinical studies information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "clinical_studies" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed clinical study information for the drug Betamethasone Dipropionate, including the first 2 records?", | |
| "query": { | |
| "name": "get_clinical_studies_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Betamethasone Dipropionate+openfda.generic_name:Betamethasone Dipropionate)+AND+(_exists_:clinical_studies)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for clinical studies related to the drug Calcium Acetate, but I want to skip the first 3 records and get the next 2.", | |
| "query": { | |
| "name": "get_clinical_studies_info_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Calcium Acetate+openfda.generic_name:Calcium Acetate)+AND+(_exists_:clinical_studies)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What clinical studies have been conducted on the drug Metoprolol Succinate, and can you provide the information for the 4th and 5th records?", | |
| "query": { | |
| "name": "get_clinical_studies_info_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Metoprolol Succinate+openfda.generic_name:Metoprolol Succinate)+AND+(_exists_:clinical_studies)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "clinical_studies", | |
| "FDA", | |
| "ClinicalStudies" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_contraindications", | |
| "description": "Retrieve drug names based on specific contraindications information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "contraindication_info": { | |
| "type": "string", | |
| "description": "Information about situations in which the drug product is contraindicated.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "contraindication_info": [ | |
| "contraindications" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that should not be used in children under 12 years old?", | |
| "query": { | |
| "name": "get_drug_names_by_contraindications", | |
| "arguments": { | |
| "search": "(contraindications:children under 12 years old)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications are contraindicated for patients with severe bronchial asthma, and can you limit the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_contraindications", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(contraindications:severe bronchial asthma)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that should not be used by individuals with a known hypersensitivity to sulfonamide derivatives, skipping the first 5 results.", | |
| "query": { | |
| "name": "get_drug_names_by_contraindications", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(contraindications:hypersensitivity to sulfonamide derivatives)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "contraindications", | |
| "FDA", | |
| "Contraindications" | |
| ] | |
| }, | |
| { | |
| "name": "get_contraindications_by_drug_name", | |
| "description": "Retrieve contraindications information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "contraindications" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "contraindications", | |
| "FDA", | |
| "Contraindications" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_controlled_substance_DEA_schedule", | |
| "description": "Retrieve drug names based on the Drug Enforcement Administration (DEA) schedule information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "controlled_substance_schedule": { | |
| "type": "string", | |
| "description": "The schedule in which the drug is controlled by the Drug Enforcement Administration.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "controlled_substance_schedule": [ | |
| "controlled_substance" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that are classified under Schedule III controlled substances, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_controlled_substance_DEA_schedule", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(controlled_substance:Schedule III)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for drugs listed under Schedule IV controlled substances, but I want to skip the first 5 records. Can you help?", | |
| "query": { | |
| "name": "get_drug_names_by_controlled_substance_DEA_schedule", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(controlled_substance:Schedule IV)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some drugs that fall under the Schedule II controlled substances category? Please provide the first 4 results.", | |
| "query": { | |
| "name": "get_drug_names_by_controlled_substance_DEA_schedule", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(controlled_substance:Schedule II)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "controlled_substance", | |
| "FDA", | |
| "ControlledSubstance" | |
| ] | |
| }, | |
| { | |
| "name": "get_controlled_substance_DEA_schedule_info_by_drug_name", | |
| "description": "Retrieve information about the controlled substance Drug Enforcement Administratino (DEA) schedule for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "controlled_substance" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the controlled substance classification for the drug Lorazepam, including any relevant schedules?", | |
| "query": { | |
| "name": "get_controlled_substance_DEA_schedule_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Lorazepam+openfda.generic_name:Lorazepam)+AND+(_exists_:controlled_substance)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the controlled substance schedule for Acetaminophen and Codeine Phosphate. Please limit the results to 2 and skip the first 6 records.", | |
| "query": { | |
| "name": "get_controlled_substance_DEA_schedule_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 6, | |
| "search": "(openfda.brand_name:Acetaminophen and Codeine Phosphate+openfda.generic_name:Acetaminophen and Codeine Phosphate)+AND+(_exists_:controlled_substance)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the controlled substance status of the drug Paroxetine Hydrochloride? Please provide the information with a limit of 2 results, skipping the first 3.", | |
| "query": { | |
| "name": "get_controlled_substance_DEA_schedule_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Paroxetine Hydrochloride+openfda.generic_name:Paroxetine Hydrochloride)+AND+(_exists_:controlled_substance)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "controlled_substance", | |
| "FDA", | |
| "ControlledSubstance" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_dependence_info", | |
| "description": "Retrieve the drug name based on information about dependence characteristics.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "dependence_info": { | |
| "type": "string", | |
| "description": "Information related to psychological and physical dependence of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "dependence_info": [ | |
| "dependence" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have a high risk of physical dependence, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_dependence_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(dependence:high risk of physical dependence)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are associated with severe withdrawal symptoms, and can you skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_name_by_dependence_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(dependence:severe withdrawal symptoms)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications are known to cause both tolerance and physical dependence?", | |
| "query": { | |
| "name": "get_drug_name_by_dependence_info", | |
| "arguments": { | |
| "search": "(dependence:tolerance and physical dependence)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "dependence", | |
| "FDA", | |
| "DrugAbuseAndDependence" | |
| ] | |
| }, | |
| { | |
| "name": "get_dependence_info_by_drug_name", | |
| "description": "Retrieve information about dependence characteristics based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "dependence" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the dependence characteristics of Phenobarbital, including any potential withdrawal symptoms?", | |
| "query": { | |
| "name": "get_dependence_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Phenobarbital+openfda.generic_name:Phenobarbital)+AND+(_exists_:dependence)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the dependence and withdrawal details for Tramadol Hydrochloride, with a limit of 3 records and skipping the first 2?", | |
| "query": { | |
| "name": "get_dependence_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:dependence)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know about the dependence potential and withdrawal symptoms associated with the use of Buprenorphine and Naloxone Sublingual Film.", | |
| "query": { | |
| "name": "get_dependence_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Buprenorphine and Naloxone Sublingual Film+openfda.generic_name:Buprenorphine and Naloxone Sublingual Film)+AND+(_exists_:dependence)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "dependence", | |
| "FDA", | |
| "DrugAbuseAndDependence" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_disposal_info", | |
| "description": "Retrieve drug names based on disposal and waste handling information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "disposal_info": { | |
| "type": "string", | |
| "description": "Information related to the disposal and waste handling of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "disposal_info": [ | |
| "disposal_and_waste_handling" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have specific recycling instructions in their disposal information, limited to 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_disposal_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(disposal_and_waste_handling:We support recycling. Please recycle where possible.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names associated with the disposal information that emphasizes recycling, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_disposal_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(disposal_and_waste_handling:We support recycling. Please recycle where possible.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the names of drugs that mention recycling in their disposal instructions, but skip the first 2 and limit the results to 4.", | |
| "query": { | |
| "name": "get_drug_names_by_disposal_info", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(disposal_and_waste_handling:We support recycling. Please recycle where possible.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "disposal_and_waste_handling", | |
| "FDA", | |
| "Disposal" | |
| ] | |
| }, | |
| { | |
| "name": "get_disposal_info_by_drug_name", | |
| "description": "Retrieve disposal and waste handling information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "disposal_and_waste_handling" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the recommended disposal methods for the drug Diclona Patch?", | |
| "query": { | |
| "name": "get_disposal_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Diclona Patch+openfda.generic_name:Diclona Patch)+AND+(_exists_:disposal_and_waste_handling)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on how to handle and dispose of the drug Fortify. Can you provide details?", | |
| "query": { | |
| "name": "get_disposal_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Fortify+openfda.generic_name:Fortify)+AND+(_exists_:disposal_and_waste_handling)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "disposal_and_waste_handling", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_dosage_info", | |
| "description": "Retrieve the drug name based on dosage and administration information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "dosage_info": { | |
| "type": "string", | |
| "description": "Information about the drug product\u2019s dosage and administration recommendations.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "dosage_info": [ | |
| "dosage_and_administration" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug name for a medication with the following dosage instructions: 'Use the lowest effective dosage for the shortest duration consistent with individual patient treatment goals. The recommended dosage for adult patients is 2 mg orally once daily.'?", | |
| "query": { | |
| "name": "get_drug_name_by_dosage_info", | |
| "arguments": { | |
| "search": "(dosage_and_administration:Use the lowest effective dosage for the shortest duration consistent with individual patient treatment goals. The recommended dosage for adult patients is 2 mg orally once daily.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the name of the drug that has a recommended starting dose of 750 mg followed by 250 mg every 8 hours until the attack has subsided, with a limit of 1 result?", | |
| "query": { | |
| "name": "get_drug_name_by_dosage_info", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(dosage_and_administration:The recommended starting dose is 750 mg followed by 250 mg every 8 hours until the attack has subsided.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Identify the drug that should be administered at the lowest effective dosage and dosage should be individually adjusted, with a limit of 2 results and skipping the first 1.", | |
| "query": { | |
| "name": "get_drug_name_by_dosage_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(dosage_and_administration:Administer at the lowest effective dosage and dosage should be individually adjusted.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "DosageAndAdministration", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_dosage_forms_and_strengths_info", | |
| "description": "Retrieve drug names based on specific dosage forms and strengths information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "dosage_forms_and_strengths": { | |
| "type": "string", | |
| "description": "Information about the dosage forms and strengths of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "dosage_forms_and_strengths": [ | |
| "dosage_forms_and_strengths" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs available in chewable tablet form with their respective strengths, limiting the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_dosage_forms_and_strengths_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(dosage_forms_and_strengths:chewable tablets)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for drugs that come in oral suspension form with specific strengths. Could you list some, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_dosage_forms_and_strengths_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(dosage_forms_and_strengths:oral suspension)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the names of drugs that are available as inhalation powders with their strengths, and show only the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_dosage_forms_and_strengths_info", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(dosage_forms_and_strengths:inhalation powder)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "DosageFormsAndStrengths", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_dosage_forms_and_strengths_by_drug_name", | |
| "description": "Retrieve dosage forms and strengths information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "dosage_forms_and_strengths" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the dosage forms and strengths for the drug Naproxen, with a limit of 3 results and skipping the first 1?", | |
| "query": { | |
| "name": "get_dosage_forms_and_strengths_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Naproxen+openfda.generic_name:Naproxen)+AND+(_exists_:dosage_forms_and_strengths)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the available dosage forms and strengths for the medication Olanzapine?", | |
| "query": { | |
| "name": "get_dosage_forms_and_strengths_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Olanzapine+openfda.generic_name:Olanzapine)+AND+(_exists_:dosage_forms_and_strengths)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed information on the dosage forms and strengths for the drug Azelastine Hydrochloride, but only show me the first 2 results.", | |
| "query": { | |
| "name": "get_dosage_forms_and_strengths_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Azelastine Hydrochloride+openfda.generic_name:Azelastine Hydrochloride)+AND+(_exists_:dosage_forms_and_strengths)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "dosage_forms_and_strengths", | |
| "FDA", | |
| "DosageFormsAndStrengths" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_abuse_types_and_related_adverse_reactions_and_controlled_substance_status", | |
| "description": "Retrieve the drug name based on information about drug abuse and dependence, including whether the drug is a controlled substances, the types of possible abuse, and adverse reactions relevant to those abuse types.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "abuse_info": { | |
| "type": "string", | |
| "description": "Information about drug abuse and dependence.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "abuse_info": [ | |
| "drug_abuse_and_dependence" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on the abuse and dependence potential of Phenobarbital, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_drug_name_by_abuse_types_and_related_adverse_reactions_and_controlled_substance_status", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(drug_abuse_and_dependence:Phenobarbital abuse and dependence)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the details regarding the abuse and dependence of drugs similar to barbiturates, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_name_by_abuse_types_and_related_adverse_reactions_and_controlled_substance_status", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(drug_abuse_and_dependence:barbiturates abuse and dependence)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the abuse potential of drugs that are not benzodiazepines but are used in addiction studies, with a limit of 2 results.", | |
| "query": { | |
| "name": "get_drug_name_by_abuse_types_and_related_adverse_reactions_and_controlled_substance_status", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(drug_abuse_and_dependence:not benzodiazepines addiction studies)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "DrugAbuseAndDependence", | |
| "drug_abuse_and_dependence", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_abuse_types_and_related_adverse_reactions_and_controlled_substance_status_by_drug_name", | |
| "description": "Get information about drug abuse and dependence based on the drug name, specifically information on whether the drug is a controlled substances, the types of possible abuse, and adverse reactions relevant to those abuse types.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "drug_abuse_and_dependence" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the abuse and dependence potential of the drug Methadone Hydrochloride, including any adverse reactions?", | |
| "query": { | |
| "name": "get_abuse_types_and_related_adverse_reactions_and_controlled_substance_status_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Methadone Hydrochloride+openfda.generic_name:Methadone Hydrochloride)+AND+(_exists_:drug_abuse_and_dependence)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the documented cases of abuse and dependence for the drug Venlafaxine Hydrochloride, and can you limit the results to 3 records?", | |
| "query": { | |
| "name":"get_abuse_types_and_related_adverse_reactions_and_controlled_substance_status_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Venlafaxine Hydrochloride+openfda.generic_name:Venlafaxine Hydrochloride)+AND+(_exists_:drug_abuse_and_dependence)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know about the abuse potential of Tramadol Hydrochloride, but please skip the first 2 records and show me the next 2.", | |
| "query": { | |
| "name": "get_abuse_types_and_related_adverse_reactions_and_controlled_substance_status_by_drug_name", | |
| "arguments": { | |
| "skip": 2, | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:drug_abuse_and_dependence)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "drug_abuse_and_dependence", | |
| "FDA", | |
| "DrugAbuseAndDependence" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_lab_test_interference", | |
| "description": "Retrieve drug names that have known interference with laboratory tests.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "lab_test_interference": { | |
| "type": "string", | |
| "description": "Information about any known interference by the drug with laboratory tests.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "lab_test_interference": [ | |
| "drug_and_or_laboratory_test_interactions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that interfere with creatine phosphokinase levels in lab tests, limiting the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_lab_test_interference", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(drug_and_or_laboratory_test_interactions:creatine phosphokinase levels)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are known to cause false positive test results for urinary 5-hydroxyindoleacetic acid, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_lab_test_interference", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(drug_and_or_laboratory_test_interactions:false positive test results for urinary 5-hydroxyindoleacetic acid)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications can lead to an increase in plasma corticosteroid levels, and provide the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_lab_test_interference", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(drug_and_or_laboratory_test_interactions:increase in plasma corticosteroid levels)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "drug_and_or_laboratory_test_interactions", | |
| "FDA", | |
| "LaboratoryTests" | |
| ] | |
| }, | |
| { | |
| "name": "get_lab_test_interference_info_by_drug_name", | |
| "description": "Retrieve information about laboratory test interferences for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "drug_and_or_laboratory_test_interactions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on how the drug Levothyroxine Sodium might interfere with laboratory tests, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_lab_test_interference_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Levothyroxine Sodium+openfda.generic_name:Levothyroxine Sodium)+AND+(_exists_:drug_and_or_laboratory_test_interactions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need details on the laboratory test interactions for Acetaminophen and Codeine Phosphate, skipping the first 5 records.", | |
| "query": { | |
| "name": "get_lab_test_interference_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Acetaminophen and Codeine Phosphate+openfda.generic_name:Acetaminophen and Codeine Phosphate)+AND+(_exists_:drug_and_or_laboratory_test_interactions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the laboratory test interferences associated with the drug Metformin, and can you provide up to 4 records while skipping the first 2?", | |
| "query": { | |
| "name": "get_lab_test_interference_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Metformin+openfda.generic_name:Metformin)+AND+(_exists_:drug_and_or_laboratory_test_interactions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "LaboratoryTests", | |
| "DrugInteractions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_drug_interactions", | |
| "description": "Retrieve a list of drug names that have the specified drug interactions.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "interaction_term": { | |
| "type": "string", | |
| "description": "The term to search for in drug interactions.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "interaction_term": [ | |
| "drug_interactions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that interact with hormonal contraceptives, and limit the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_drug_interactions", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(drug_interactions:hormonal contraceptives)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs should be avoided when taking Digoxin due to potential interactions, and skip the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_drug_interactions", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(drug_interactions:Digoxin)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications have interactions with corticosteroids, and provide only 5 results starting from the 2nd record?", | |
| "query": { | |
| "name": "get_drug_names_by_drug_interactions", | |
| "arguments": { | |
| "limit": 5, | |
| "skip": 1, | |
| "search": "(drug_interactions:corticosteroids)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "drug_interactions", | |
| "FDA", | |
| "DrugInteractions" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_interactions_by_drug_name", | |
| "description": "Retrieve drug interactions based on the specified drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "drug_interactions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "drug_interactions", | |
| "FDA", | |
| "DrugInteractions" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_effective_time", | |
| "description": "Retrieve drug names based on the effective time of the labeling document.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "effective_time": { | |
| "type": "string", | |
| "description": "Date reference to the particular version of the labeling document in YYYYmmdd format.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "effective_time": [ | |
| "effective_time" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that had their labeling documents updated on July 1, 2021, with a limit of 2 results?", | |
| "query": { | |
| "name": "get_drug_names_by_effective_time", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(effective_time:20210701)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the drug names for labeling documents effective on April 4, 2024, skipping the first 9 records.", | |
| "query": { | |
| "name": "get_drug_names_by_effective_time", | |
| "arguments": { | |
| "skip": 9, | |
| "search": "(effective_time:20240404)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names for labeling documents that were effective on November 17, 2022, with a limit of 2 and skipping the first 2 records?", | |
| "query": { | |
| "name": "get_drug_names_by_effective_time", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(effective_time:20221117)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "effective_time", | |
| "FDA", | |
| "DrugNames" | |
| ] | |
| }, | |
| { | |
| "name": "get_effective_time_by_drug_name", | |
| "description": "Retrieve effective time of the labeling document based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "effective_time" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the effective time for the drug Naproxen, including the first 3 records?", | |
| "query": { | |
| "name": "get_effective_time_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Naproxen+openfda.generic_name:Naproxen)+AND+(_exists_:effective_time)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the effective time for the drug Congestion PE, and limit the results to 4 records?", | |
| "query": { | |
| "name": "get_effective_time_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(openfda.brand_name:Congestion PE+openfda.generic_name:Congestion PE)+AND+(_exists_:effective_time)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "effective_time", | |
| "FDA", | |
| "DrugInformationRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_environmental_warning", | |
| "description": "Retrieve the drug name based on the specified environmental warnings.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "environmental_warning": { | |
| "type": "string", | |
| "description": "The environmental warning text to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "environmental_warning": [ | |
| "environmental_warning" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings about water and electrolyte depletion, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_environmental_warning", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(environmental_warning:water and electrolyte depletion)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications come with a warning about the need for careful medical supervision due to potent diuretic effects, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_name_by_environmental_warning", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(environmental_warning:careful medical supervision)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that caution against excessive amounts leading to profound diuresis. Please provide up to 4 results, skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_name_by_environmental_warning", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(environmental_warning:profound diuresis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "EnvironmentalWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_environmental_warning_by_drug_name", | |
| "description": "Fetch environmental warnings for a specific drug based on its name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "environmental_warning" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the environmental warnings for the drug Furosemide, but only show the first 3 records?", | |
| "query": { | |
| "name": "get_environmental_warning_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Furosemide+openfda.generic_name:Furosemide)+AND+(_exists_:environmental_warning)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "environmental_warning", | |
| "FDA", | |
| "EnvironmentalWarning" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_food_safety_warnings", | |
| "description": "Retrieve drug names based on specific food safety warnings.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "field_info": { | |
| "type": "string", | |
| "description": "Information related to food safety warnings.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "field_info": [ | |
| "food_safety_warning" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that have specific food safety warnings, limited to the first 10 results?", | |
| "query": { | |
| "name": "get_drug_names_by_food_safety_warnings", | |
| "arguments": { | |
| "limit": 10, | |
| "search": "(food_safety_warning:food safety warnings)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for drugs with food safety warnings but want to skip the first 5 entries. What are they?", | |
| "query": { | |
| "name": "get_drug_names_by_food_safety_warnings", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(food_safety_warning:food safety warnings)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have specific food safety warnings? Please provide the names without any limit or skip.", | |
| "query": { | |
| "name": "get_drug_names_by_food_safety_warnings", | |
| "arguments": { | |
| "search": "(food_safety_warning:food safety warnings)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "FoodSafetyWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_general_precautions", | |
| "description": "Retrieve drug names based on specific general precautions information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "precaution_info": { | |
| "type": "string", | |
| "description": "Information about any special care to be exercised for safe and effective use of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "precaution_info": [ | |
| "general_precautions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What precautions should be taken when using corticosteroids, and can you provide 3 examples of drugs with such precautions?", | |
| "query": { | |
| "name": "get_drug_names_by_general_precautions", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(general_precautions:corticosteroids)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you list 2 drugs that require special care due to potential liver complications, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_general_precautions", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 5, | |
| "search": "(general_precautions:liver complications)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some medications that need to be used cautiously in patients with renal insufficiency? Please provide 4 examples.", | |
| "query": { | |
| "name": "get_drug_names_by_general_precautions", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(general_precautions:renal insufficiency)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "general_precautions", | |
| "FDA", | |
| "Precautions" | |
| ] | |
| }, | |
| { | |
| "name": "get_general_precautions_by_drug_name", | |
| "description": "Retrieve general precautions information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "general_precautions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the general precautions for patients with pre-existing asthma when taking Etodolac?", | |
| "query": { | |
| "name": "get_general_precautions_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Etodolac+openfda.generic_name:Etodolac)+AND+(_exists_:general_precautions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide the general precautions for the drug Ibuprofen, limiting the results to 3 entries and skipping the first 5?", | |
| "query": { | |
| "name": "get_general_precautions_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Ibuprofen+openfda.generic_name:Ibuprofen)+AND+(_exists_:general_precautions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the safety measures to consider when prescribing Doxycycline Hyclate to patients with a history of oral candidiasis?", | |
| "query": { | |
| "name": "get_general_precautions_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Doxycycline Hyclate+openfda.generic_name:Doxycycline Hyclate)+AND+(_exists_:general_precautions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "GeneralPrecautions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_geriatric_use", | |
| "description": "Retrieve drug names that have specific information about geriatric use.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "geriatric_use": { | |
| "type": "string", | |
| "description": "Information about any limitations on any geriatric indications, needs for specific monitoring, hazards associated with use of the drug in the geriatric population.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "geriatric_use": [ | |
| "geriatric_use" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on the geriatric use of the drug Cyclosporine, including any specific monitoring needs or hazards?", | |
| "query": { | |
| "name": "get_drug_names_by_geriatric_use", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(geriatric_use:Clinical studies of cyclosporine did not include sufficient numbers of subjects aged 65 and over to determine whether they respond differently from younger patients.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the geriatric use guidelines for the drug Dronabinol, and how should dosage be adjusted for elderly patients?", | |
| "query": { | |
| "name": "get_drug_names_by_geriatric_use", | |
| "arguments": { | |
| "limit": 1, | |
| "skip": 1, | |
| "search": "(geriatric_use:Elderly patients may be more sensitive to the neuropsychiatric and postural hypotensive effects of dronabinol capsules.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "geriatric_use", | |
| "FDA", | |
| "GeriatricUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_geriatric_use_info_by_drug_name", | |
| "description": "Retrieve information about geriatric use based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "geriatric_use" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the geriatric use of the drug Celecoxib, including any specific warnings or precautions?", | |
| "query": { | |
| "name": "get_geriatric_use_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Celecoxib+openfda.generic_name:Celecoxib)+AND+(_exists_:geriatric_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the geriatric use guidelines for the medication Celecoxib, but please limit the results to 3 records.", | |
| "query": { | |
| "name": "get_geriatric_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Celecoxib+openfda.generic_name:Celecoxib)+AND+(_exists_:geriatric_use)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the recommendations for elderly patients using Celecoxib, and can you skip the first 5 records in the results?", | |
| "query": { | |
| "name": "get_geriatric_use_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Celecoxib+openfda.generic_name:Celecoxib)+AND+(_exists_:geriatric_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "geriatric_use", | |
| "FDA", | |
| "GeriatricUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_dear_health_care_provider_letter_info_by_drug_name", | |
| "description": "Fetch information about dear health care provider letters for a specific drug. The letters are sent by drug manufacturers to provide new or updated information about the drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "health_care_provider_letter" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information about health care provider letters for the drug Lentocilin, including the first 3 records?", | |
| "query": { | |
| "name": "get_dear_health_care_provider_letter_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Lentocilin+openfda.generic_name:Lentocilin)+AND+(_exists_:health_care_provider_letter)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the details of health care provider letters for the drug Iomeprol Injection, including the first 4 records?", | |
| "query": { | |
| "name": "get_dear_health_care_provider_letter_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(openfda.brand_name:Iomeprol Injection+openfda.generic_name:Iomeprol Injection)+AND+(_exists_:health_care_provider_letter)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "health_care_provider_letter", | |
| "FDA", | |
| "InformationForPatients" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_dear_health_care_provider_letter_info", | |
| "description": "Fetch drug names based on information about dear health care provider letters. The letters are sent by drug manufacturers to provide new or updated information about the drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "letter_info": { | |
| "type": "string", | |
| "description": "Information about the specific dear health care provider letters.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "letter_info": [ | |
| "health_care_provider_letter" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "health_care_provider_letter", | |
| "FDA", | |
| "InformationForPatients" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_health_claim", | |
| "description": "Retrieve drug names based on specific health claims.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "health_claim": { | |
| "type": "string", | |
| "description": "The health claim associated with the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "health_claim": [ | |
| "health_claim" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "HealthClaim", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_health_claims_by_drug_name", | |
| "description": "Retrieve health claims associated with a specific drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "health_claim" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide health claims for the drug BP Vit 3, limiting the results to 2 records and skipping the first one?", | |
| "query": { | |
| "name": "get_health_claims_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:BP Vit 3+openfda.generic_name:BP Vit 3)+AND+(_exists_:health_claim)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the health claims associated with the drug St. Paul Brands GlucoTrojan?", | |
| "query": { | |
| "name": "get_health_claims_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:St. Paul Brands GlucoTrojan+openfda.generic_name:St. Paul Brands GlucoTrojan)+AND+(_exists_:health_claim)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the health claims for the drug BP Vit 3, but skip the first 3 records and limit the results to 2.", | |
| "query": { | |
| "name": "get_health_claims_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:BP Vit 3+openfda.generic_name:BP Vit 3)+AND+(_exists_:health_claim)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "HealthClaim", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_document_id", | |
| "description": "Retrieve the drug name based on the document ID.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "document_id": { | |
| "type": "string", | |
| "description": "The document ID, a globally unique identifier (GUID) for the particular revision of a labeling document.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "document_id": [ | |
| "id" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What is the drug name for the document ID '9117f8fa-f838-4f23-8da6-ff8bf32a9326' with a limit of 2 records?", | |
| "query": { | |
| "name": "get_drug_name_by_document_id", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(id:9117f8fa-f838-4f23-8da6-ff8bf32a9326)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the drug name for the document ID '12da355e-ceac-7ce3-e063-6394a90a86f1' without skipping any records.", | |
| "query": { | |
| "name": "get_drug_name_by_document_id", | |
| "arguments": { | |
| "search": "(id:12da355e-ceac-7ce3-e063-6394a90a86f1)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "id", | |
| "FDA", | |
| "DrugNameRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_document_id_by_drug_name", | |
| "description": "Retrieve the document ID based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "id" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "id", | |
| "FDA", | |
| "DrugNameRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_inactive_ingredient", | |
| "description": "Retrieve the drug name based on the inactive ingredient information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "inactive_ingredient": { | |
| "type": "string", | |
| "description": "The name of the inactive ingredient.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "inactive_ingredient": [ | |
| "inactive_ingredient" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that contain 'sodium hypochlorite' as an inactive ingredient, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_inactive_ingredient", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(inactive_ingredient:sodium hypochlorite)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for medications that include 'lactose monohydrate' as an inactive ingredient. Could you skip the first 2 records and show me the next 2?", | |
| "query": { | |
| "name": "get_drug_name_by_inactive_ingredient", | |
| "arguments": { | |
| "skip": 2, | |
| "limit": 2, | |
| "search": "(inactive_ingredient:lactose monohydrate)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some drugs that have 'propylene glycol' as an inactive ingredient? Please provide the first 4 results.", | |
| "query": { | |
| "name": "get_drug_name_by_inactive_ingredient", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(inactive_ingredient:propylene glycol)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InactiveIngredient", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_inactive_ingredient_info_by_drug_name", | |
| "description": "Fetch a list of inactive ingredients in a specific drug product based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "inactive_ingredient" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of inactive ingredients for the drug 'Rescue Sleep', limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_inactive_ingredient_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Rescue Sleep+openfda.generic_name:Rescue Sleep)+AND+(_exists_:inactive_ingredient)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the inactive ingredients in the drug 'Anticavity Rinse' if we skip the first 5 records?", | |
| "query": { | |
| "name": "get_inactive_ingredient_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Anticavity Rinse+openfda.generic_name:Anticavity Rinse)+AND+(_exists_:inactive_ingredient)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the inactive ingredients found in 'Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30', but only show me the first 2 records.", | |
| "query": { | |
| "name": "get_inactive_ingredient_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30+openfda.generic_name:Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30)+AND+(_exists_:inactive_ingredient)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InactiveIngredient", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_indication", | |
| "description": "Retrieve a list of drug names based on a specific indication or usage.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "indication": { | |
| "type": "string", | |
| "description": "The indication or usage of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "indication": [ | |
| "indications_and_usage" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs used for treating major depressive disorder in adults, with a limit of 3 results and skipping the first 5?", | |
| "query": { | |
| "name": "get_drug_names_by_indication", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(indications_and_usage:Major depressive disorder in adults)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications are indicated for the treatment of pediatric patients with low-grade glioma, and can you limit the results to 4?", | |
| "query": { | |
| "name": "get_drug_names_by_indication", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(indications_and_usage:low-grade glioma in pediatric patients)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on drugs used for the treatment of chronic musculoskeletal pain in adults, skipping the first 10 results.", | |
| "query": { | |
| "name": "get_drug_names_by_indication", | |
| "arguments": { | |
| "skip": 10, | |
| "search": "(indications_and_usage:chronic musculoskeletal pain in adults)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "IndicationsAndUsage", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_indications_by_drug_name", | |
| "description": "Retrieve indications and usage information based on a specific drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "indications_and_usage" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "indications_and_usage", | |
| "FDA", | |
| "IndicationsAndUsage" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_information_for_owners_or_caregivers", | |
| "description": "Retrieve drug names based on information for owners or caregivers.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "field_info": { | |
| "type": "string", | |
| "description": "The specific information related to owners or caregivers to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "field_info": [ | |
| "information_for_owners_or_caregivers" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have specific information for caregivers related to Psodex USA Inc.?", | |
| "query": { | |
| "name": "get_drug_names_by_information_for_owners_or_caregivers", | |
| "arguments": { | |
| "search": "(information_for_owners_or_caregivers:Psodex USA Inc.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names associated with information for caregivers about managing severe hypoglycemia, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_information_for_owners_or_caregivers", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(information_for_owners_or_caregivers:severe hypoglycemia)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the names of drugs that include information for caregivers on the risks of opioid addiction, skipping the first 2 records.", | |
| "query": { | |
| "name": "get_drug_names_by_information_for_owners_or_caregivers", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(information_for_owners_or_caregivers:opioid addiction)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InformationForPatients", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_information_for_owners_or_caregivers_by_drug_name", | |
| "description": "Retrieve specific information for owners or caregivers based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "information_for_owners_or_caregivers" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed instructions for the proper use and disposal of Hydrocodone Bitartrate and Acetaminophen tablets, including any safety precautions?", | |
| "query": { | |
| "name": "get_information_for_owners_or_caregivers_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Hydrocodone Bitartrate and Acetaminophen+openfda.generic_name:Hydrocodone Bitartrate and Acetaminophen)+AND+(_exists_:information_for_owners_or_caregivers)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the specific guidelines for applying and removing the Rivastigmine transdermal system, and how should it be disposed of?", | |
| "query": { | |
| "name": "get_information_for_owners_or_caregivers_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Rivastigmine+openfda.generic_name:Rivastigmine)+AND+(_exists_:information_for_owners_or_caregivers)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the proper administration and potential side effects of Rufinamide oral suspension, with a focus on the first 3 records.", | |
| "query": { | |
| "name": "get_information_for_owners_or_caregivers_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 0, | |
| "search": "(openfda.brand_name:Rufinamide+openfda.generic_name:Rufinamide)+AND+(_exists_:information_for_owners_or_caregivers)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "information_for_owners_or_caregivers", | |
| "FDA", | |
| "Description", | |
| "DrugInteractions", | |
| "HowSupplied" | |
| ] | |
| }, | |
| { | |
| "name": "get_info_for_patients_by_drug_name", | |
| "description": "Fetch information for patients based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "information_for_patients" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide patient information for the drug Entresto, including any special instructions or precautions?", | |
| "query": { | |
| "name": "get_info_for_patients_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Entresto+openfda.generic_name:Entresto)+AND+(_exists_:information_for_patients)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need details on patient counseling information for Cyclosporine, but only show 2 records and skip the first 4.", | |
| "query": { | |
| "name": "get_info_for_patients_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(openfda.brand_name:Cyclosporine+openfda.generic_name:Cyclosporine)+AND+(_exists_:information_for_patients)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What should patients know about the use of Sertraline Hydrochloride, including any warnings or precautions?", | |
| "query": { | |
| "name": "get_info_for_patients_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Sertraline Hydrochloride+openfda.generic_name:Sertraline Hydrochloride)+AND+(_exists_:information_for_patients)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InformationForPatients", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_instructions_for_use", | |
| "description": "Retrieve drug names based on specific instructions for use.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "instructions_for_use": { | |
| "type": "string", | |
| "description": "Information about safe handling and use of the drug product.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "instructions_for_use": [ | |
| "instructions_for_use" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have specific instructions for use related to avoiding exposure to diagnostic imaging environments?", | |
| "query": { | |
| "name": "get_drug_names_by_instructions_for_use", | |
| "arguments": { | |
| "search": "(instructions_for_use:Do not expose the on-body injector to diagnostic imaging environments.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have instructions for use that include a warning about not using the product if the packaging is damaged?", | |
| "query": { | |
| "name": "get_drug_names_by_instructions_for_use", | |
| "arguments": { | |
| "search": "(instructions_for_use:Do not use if packaging is damaged.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InstructionsForUse", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_instructions_for_use_by_drug_name", | |
| "description": "Retrieve instructions for use information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "instructions_for_use" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the instructions for using the inhaler medication Flovent Diskus, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_instructions_for_use_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Flovent Diskus+openfda.generic_name:Flovent Diskus)+AND+(_exists_:instructions_for_use)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed usage instructions for the oral suspension drug Orfadin, skipping the first 1 record.", | |
| "query": { | |
| "name": "get_instructions_for_use_by_drug_name", | |
| "arguments": { | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Orfadin+openfda.generic_name:Orfadin)+AND+(_exists_:instructions_for_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the step-by-step instructions for administering Lansoprazole Delayed-Release Capsules?", | |
| "query": { | |
| "name": "get_instructions_for_use_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Lansoprazole+openfda.generic_name:Lansoprazole)+AND+(_exists_:instructions_for_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InstructionsForUse", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "retrieve_drug_name_by_device_use", | |
| "description": "Retrieve the drug name based on the intended use of the device.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "intended_use_of_the_device": { | |
| "type": "string", | |
| "description": "The intended use of the device.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "intended_use_of_the_device": [ | |
| "intended_use_of_the_device" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs used for pain relief devices, limiting the results to 10?", | |
| "query": { | |
| "name": "retrieve_drug_name_by_device_use", | |
| "arguments": { | |
| "limit": 10, | |
| "search": "(intended_use_of_the_device:pain relief)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "DeviceUse", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "retrieve_device_use_by_drug_name", | |
| "description": "Retrieve the intended use of the device based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "intended_use_of_the_device" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the intended use of the device associated with the drug Leucoflex, and limit the results to 3 records?", | |
| "query": { | |
| "name": "retrieve_device_use_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Leucoflex+openfda.generic_name:Leucoflex)+AND+(_exists_:intended_use_of_the_device)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the intended use of the device for the drug IMUFLEX WB-RP Blood Bag System, skipping the first 1 record?", | |
| "query": { | |
| "name": "retrieve_device_use_by_drug_name", | |
| "arguments": { | |
| "skip": 1, | |
| "search": "(openfda.brand_name:IMUFLEX WB-RP Blood Bag System+openfda.generic_name:IMUFLEX WB-RP Blood Bag System)+AND+(_exists_:intended_use_of_the_device)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed information on the intended use of the device for the drug ANTICOAGULANT CITRATE PHOSPHATE DEXTROSE SOLUTION WITH ADDITIVE SOLUTION AS-1, with a limit of 2 records and skipping the first 2 records.", | |
| "query": { | |
| "name": "retrieve_device_use_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:ANTICOAGULANT CITRATE PHOSPHATE DEXTROSE SOLUTION WITH ADDITIVE SOLUTION AS-1+openfda.generic_name:ANTICOAGULANT CITRATE PHOSPHATE DEXTROSE SOLUTION WITH ADDITIVE SOLUTION AS-1)+AND+(_exists_:intended_use_of_the_device)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "intended_use_of_the_device", | |
| "FDA", | |
| "DeviceDiagram" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_child_safety_info", | |
| "description": "Retrieve drug names based on whether the product should be kept out of the reach of children and instructions about what to do in the case of accidental contact or ingestion.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "child_safety_info": { | |
| "type": "string", | |
| "description": "Information pertaining to whether the product should be kept out of the reach of children.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "child_safety_info": [ | |
| "keep_out_of_reach_of_children" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that should be kept out of the reach of children, along with instructions on what to do in case of accidental ingestion?", | |
| "query": { | |
| "name": "get_drug_names_by_child_safety_info", | |
| "arguments": { | |
| "search": "(keep_out_of_reach_of_children:Keep out of reach of children. In case of overdose, get medical help or contact a Poison Control Center right away.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "keep_out_of_reach_of_children", | |
| "FDA", | |
| "SafetyInformation", | |
| "InstructionsForUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_child_safety_info_by_drug_name", | |
| "description": "Retrieve child safety information for a specific drug based on its name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "keep_out_of_reach_of_children" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide child safety information for the drug 'Acetaminophen Extra Strength PM', including the first 2 records?", | |
| "query": { | |
| "name": "get_child_safety_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Acetaminophen Extra Strength PM+openfda.generic_name:Acetaminophen Extra Strength PM)+AND+(_exists_:keep_out_of_reach_of_children)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the child safety warnings for 'Histastat Pollen', skipping the first 7 records?", | |
| "query": { | |
| "name": "get_child_safety_info_by_drug_name", | |
| "arguments": { | |
| "skip": 7, | |
| "search": "(openfda.brand_name:Histastat Pollen+openfda.generic_name:Histastat Pollen)+AND+(_exists_:keep_out_of_reach_of_children)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the child safety precautions for 'Black Girl Sunscreen Sunscreen SPF 30 broad Spectrum', with a limit of 2 results and skipping the first 6 records.", | |
| "query": { | |
| "name": "get_child_safety_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 6, | |
| "search": "(openfda.brand_name:Black Girl Sunscreen Sunscreen SPF 30 broad Spectrum+openfda.generic_name:Black Girl Sunscreen Sunscreen SPF 30 broad Spectrum)+AND+(_exists_:keep_out_of_reach_of_children)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "keep_out_of_reach_of_children", | |
| "FDA", | |
| "ChildSafetyInformation" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_labor_and_delivery_info", | |
| "description": "Retrieve the drug name based on information about the drug\u2019s use during labor or delivery.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "labor_and_delivery_info": { | |
| "type": "string", | |
| "description": "Information about the drug\u2019s use during labor or delivery.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "labor_and_delivery_info": [ | |
| "labor_and_delivery" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on the use of Fluoxetine Hydrochloride during labor and delivery, including any potential risks?", | |
| "query": { | |
| "name": "get_drug_name_by_labor_and_delivery_info", | |
| "arguments": { | |
| "search": "(labor_and_delivery:The effect of fluoxetine on labor and delivery in humans is unknown. However, because fluoxetine crosses the placenta and because of the possibility that fluoxetine may have adverse effects on the newborn, fluoxetine should be used during labor and delivery only if the potential benefit justifies the potential risk to the fetus.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the guidelines for using local anesthetics like those in Dyural 40 Kit during labor and delivery?", | |
| "query": { | |
| "name": "get_drug_name_by_labor_and_delivery_info", | |
| "arguments": { | |
| "search": "(labor_and_delivery:Local anesthetics rapidly cross the placenta and when used for epidural, paracervical, pudendal or caudal block anesthesia, can cause varying degrees of maternal, fetal and neonatal toxicity.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the recommendations for breastfeeding while taking Efavirenz, Emtricitabine, and Tenofovir Disoproxil Fumarate?", | |
| "query": { | |
| "name": "get_drug_name_by_labor_and_delivery_info", | |
| "arguments": { | |
| "search": "(labor_and_delivery:The Centers for Disease Control and Prevention recommend that HIV-1 infected mothers not breastfeed their infants to avoid risking postnatal transmission of HIV-1. Based on limited published data, EFV, FTC, and tenofovir have been shown to be present in human breast milk.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "labor_and_delivery", | |
| "FDA", | |
| "LaborAndDelivery" | |
| ] | |
| }, | |
| { | |
| "name": "get_labor_and_delivery_info_by_drug_name", | |
| "description": "Retrieve information about the drug\u2019s use during labor or delivery based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "labor_and_delivery" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide details on the use of Verapamil Hydrochloride during labor and delivery, including any potential adverse effects?", | |
| "query": { | |
| "name": "get_labor_and_delivery_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Verapamil Hydrochloride+openfda.generic_name:Verapamil Hydrochloride)+AND+(_exists_:labor_and_delivery)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What information is available regarding the administration of Ampicillin and Sulbactam during labor, and how might it affect the duration of labor?", | |
| "query": { | |
| "name": "get_labor_and_delivery_info_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Ampicillin and Sulbactam+openfda.generic_name:Ampicillin and Sulbactam)+AND+(_exists_:labor_and_delivery)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the implications of using Tramadol Hydrochloride during labor and delivery, especially concerning its safety for the newborn. Can you provide this information?", | |
| "query": { | |
| "name": "get_labor_and_delivery_info_by_drug_name", | |
| "arguments": { | |
| "skip": 1, | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:labor_and_delivery)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "labor_and_delivery", | |
| "FDA", | |
| "LaborAndDelivery" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_lab_tests", | |
| "description": "Retrieve drug names based on laboratory tests information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "lab_test_info": { | |
| "type": "string", | |
| "description": "Information related to laboratory tests.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "lab_test_info": [ | |
| "laboratory_tests" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that require fasting blood glucose testing and lipid profile monitoring, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_lab_tests", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(laboratory_tests:fasting blood glucose testing and lipid profile)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications necessitate periodic laboratory evaluation of organ systems, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_lab_tests", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(laboratory_tests:periodic laboratory evaluation of organ systems)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that require frequent serum cholesterol level checks during the initial months of therapy. Please provide up to 4 results, skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_names_by_lab_tests", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(laboratory_tests:frequent serum cholesterol level checks)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "LaboratoryTests", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_lab_tests_by_drug_name", | |
| "description": "Retrieve laboratory tests information based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "laboratory_tests" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide laboratory test information for the drug Tretinoin, limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_lab_tests_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Tretinoin+openfda.generic_name:Tretinoin)+AND+(_exists_:laboratory_tests)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What laboratory tests should be monitored for patients taking Lorazepam, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_lab_tests_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Lorazepam+openfda.generic_name:Lorazepam)+AND+(_exists_:laboratory_tests)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed lab test information for the drug Ibuprofen, with a limit of 4 results and skipping the first 2 records.", | |
| "query": { | |
| "name": "get_lab_tests_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Ibuprofen+openfda.generic_name:Ibuprofen)+AND+(_exists_:laboratory_tests)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "LaboratoryTests", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_mechanism_of_action_by_drug_name", | |
| "description": "Retrieve the mechanism of action information for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "mechanism_of_action" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the mechanism of action for the drug Olanzapine, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_mechanism_of_action_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Olanzapine+openfda.generic_name:Olanzapine)+AND+(_exists_:mechanism_of_action)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the mechanism of action for the medication Nitisinone, and skip the first 5 records?", | |
| "query": { | |
| "name": "get_mechanism_of_action_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Nitisinone+openfda.generic_name:Nitisinone)+AND+(_exists_:mechanism_of_action)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed information on how the drug Posaconazole works. Please provide the mechanism of action and limit the results to 2 records, skipping the first 4.", | |
| "query": { | |
| "name": "get_mechanism_of_action_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(openfda.brand_name:Posaconazole+openfda.generic_name:Posaconazole)+AND+(_exists_:mechanism_of_action)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "mechanism_of_action", | |
| "FDA", | |
| "MechanismOfAction" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_mechanism_of_action", | |
| "description": "Retrieve drug names based on the specified mechanism of action information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "mechanism_info": { | |
| "type": "string", | |
| "description": "Information related to the desired mechanism of action.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "mechanism_info": [ | |
| "mechanism_of_action" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "mechanism_of_action", | |
| "FDA", | |
| "MechanismOfAction" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_microbiology", | |
| "description": "Retrieve the drug name based on microbiology field information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "microbiology_info": { | |
| "type": "string", | |
| "description": "Information related to the microbiology field.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "microbiology_info": [ | |
| "microbiology" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug names associated with microbiology information on fluconazole resistance mechanisms, limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_drug_name_by_microbiology", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(microbiology:fluconazole resistance mechanisms)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are linked to the microbiology field information on Candida species susceptibility, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_name_by_microbiology", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(microbiology:Candida species susceptibility)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Retrieve the drug names based on microbiology details about fungal cytochrome P450 inhibition, without any record limits or skips.", | |
| "query": { | |
| "name": "get_drug_name_by_microbiology", | |
| "arguments": { | |
| "search": "(microbiology:fungal cytochrome P450 inhibition)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "microbiology", | |
| "FDA", | |
| "Microbiology" | |
| ] | |
| }, | |
| { | |
| "name": "get_microbiology_info_by_drug_name", | |
| "description": "Retrieve microbiology information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "microbiology" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed microbiology information for the drug Biktarvy, including resistance data, with a limit of 3 records?", | |
| "query": { | |
| "name": "get_microbiology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Biktarvy+openfda.generic_name:Biktarvy)+AND+(_exists_:microbiology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need comprehensive microbiology details for the drug Fluconazole, including any cross-resistance information, with a limit of 4 records and skipping the first 2.", | |
| "query": { | |
| "name": "get_microbiology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Fluconazole+openfda.generic_name:Fluconazole)+AND+(_exists_:microbiology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Microbiology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_nonclinical_toxicology_info", | |
| "description": "Retrieve drug names based on nonclinical toxicology information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "toxicology_info": { | |
| "type": "string", | |
| "description": "Information about toxicology in non-human subjects.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "toxicology_info": [ | |
| "nonclinical_toxicology" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have been studied for carcinogenicity in non-human subjects, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_nonclinical_toxicology_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(nonclinical_toxicology:carcinogenicity)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have been tested for mutagenic effects in animal studies, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_nonclinical_toxicology_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(nonclinical_toxicology:mutagenesis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have undergone fertility impairment studies in non-human subjects, with a limit of 2 results and skipping the first 3 records.", | |
| "query": { | |
| "name": "get_drug_names_by_nonclinical_toxicology_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(nonclinical_toxicology:impairment of fertility)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "NonclinicalToxicology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_nonclinical_toxicology_info_by_drug_name", | |
| "description": "Retrieve nonclinical toxicology information based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "nonclinical_toxicology" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the nonclinical toxicology details for the drug Tramadol Hydrochloride, including the first 3 records?", | |
| "query": { | |
| "name": "get_nonclinical_toxicology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:nonclinical_toxicology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the findings from nonclinical toxicology studies for the medication Ranolazine, excluding the first 2 records?", | |
| "query": { | |
| "name": "get_nonclinical_toxicology_info_by_drug_name", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Ranolazine+openfda.generic_name:Ranolazine)+AND+(_exists_:nonclinical_toxicology)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed nonclinical toxicology information for the drug Fluticasone Propionate, but only the second and third records.", | |
| "query": { | |
| "name": "get_nonclinical_toxicology_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Fluticasone Propionate+openfda.generic_name:Fluticasone Propionate)+AND+(_exists_:nonclinical_toxicology)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "NonclinicalToxicology", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_nonteratogenic_effects", | |
| "description": "Retrieve drug names based on the presence of nonteratogenic effects information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "nonteratogenic_effects": { | |
| "type": "string", | |
| "description": "Information about the drug\u2019s nonteratogenic effects.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "nonteratogenic_effects": [ | |
| "nonteratogenic_effects" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on drugs that have nonteratogenic effects related to fetal jaundice and thrombocytopenia, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_nonteratogenic_effects", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(nonteratogenic_effects:fetal jaundice and thrombocytopenia)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications have nonteratogenic effects that include neonatal jaundice and pancreatitis, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_nonteratogenic_effects", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(nonteratogenic_effects:neonatal jaundice and pancreatitis)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs with nonteratogenic effects that involve withdrawal seizures in infants, limited to 4 results and skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_names_by_nonteratogenic_effects", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(nonteratogenic_effects:withdrawal seizures in infants)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "NonteratogenicEffects", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_nonteratogenic_effects_by_drug_name", | |
| "description": "Retrieve information about nonteratogenic effects based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "nonteratogenic_effects" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the nonteratogenic effects of the drug Paroxetine, including any potential risks for newborns?", | |
| "query": { | |
| "name": "get_nonteratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Paroxetine+openfda.generic_name:Paroxetine)+AND+(_exists_:nonteratogenic_effects)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the nonteratogenic effects associated with Tetracycline Hydrochloride, and can you limit the results to 3 records?", | |
| "query": { | |
| "name": "get_nonteratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Tetracycline Hydrochloride+openfda.generic_name:Tetracycline Hydrochloride)+AND+(_exists_:nonteratogenic_effects)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the nonteratogenic effects of Chlorpromazine Hydrochloride, but please skip the first 5 records and limit the results to 2.", | |
| "query": { | |
| "name": "get_nonteratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Chlorpromazine Hydrochloride+openfda.generic_name:Chlorpromazine Hydrochloride)+AND+(_exists_:nonteratogenic_effects)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "nonteratogenic_effects", | |
| "FDA", | |
| "NonteratogenicEffects" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_info_for_nursing_mothers", | |
| "description": "Retrieve drug names based on information related to nursing mothers.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "nursing_mothers_info": { | |
| "type": "string", | |
| "description": "Information about excretion of the drug in human milk and effects on the nursing infant.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "nursing_mothers_info": [ | |
| "nursing_mothers" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on drugs that may affect nursing infants due to their excretion in human milk, with a limit of 3 results and skipping the first 5?", | |
| "query": { | |
| "name": "get_drug_names_by_info_for_nursing_mothers", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(nursing_mothers:excretion in human milk)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications should be used with caution by nursing mothers due to potential adverse reactions in infants?", | |
| "query": { | |
| "name": "get_drug_names_by_info_for_nursing_mothers", | |
| "arguments": { | |
| "search": "(nursing_mothers:potential adverse reactions in infants)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are known to be excreted in human milk and may require monitoring of maternal serum levels?", | |
| "query": { | |
| "name": "get_drug_names_by_info_for_nursing_mothers", | |
| "arguments": { | |
| "search": "(nursing_mothers:excreted in human milk and may require monitoring of maternal serum levels)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "NursingMothers", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_info_for_nursing_mothers_by_drug_name", | |
| "description": "Retrieve information about nursing mothers for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "nursing_mothers" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on the risks associated with breastfeeding while taking the drug Ezetimibe and Simvastatin?", | |
| "query": { | |
| "name": "get_info_for_nursing_mothers_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Ezetimibe and Simvastatin+openfda.generic_name:Ezetimibe and Simvastatin)+AND+(_exists_:nursing_mothers)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the potential effects on breastfeeding infants when the mother is taking Pramipexole dihydrochloride, with a limit of 3 records and skipping the first 1?", | |
| "query": { | |
| "name": "get_info_for_nursing_mothers_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Pramipexole dihydrochloride+openfda.generic_name:Pramipexole dihydrochloride)+AND+(_exists_:nursing_mothers)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed lactation risk information for the drug Oseltamivir Phosphate, including any known effects on milk production.", | |
| "query": { | |
| "name": "get_info_for_nursing_mothers_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Oseltamivir Phosphate+openfda.generic_name:Oseltamivir Phosphate)+AND+(_exists_:nursing_mothers)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "NursingMothers", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_other_safety_info", | |
| "description": "Retrieve the drug name based on the provided safety information. This tool looks through safety information that may not be specified in other fields.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "safety_info": { | |
| "type": "string", | |
| "description": "Information about safe use and handling of the product.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "safety_info": [ | |
| "other_safety_information" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that should be stored at room temperature, with a limit of 2 results and skipping the first 3?", | |
| "query": { | |
| "name": "get_drug_name_by_other_safety_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(other_safety_information:store at room temperature)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the names of drugs that should not be used if the seal is broken, with a limit of 2 results and skipping the first 9?", | |
| "query": { | |
| "name": "get_drug_name_by_other_safety_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 9, | |
| "search": "(other_safety_information:Do not use if seal is missing or broken)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "other_safety_information", | |
| "FDA", | |
| "SafeHandlingWarning" | |
| ] | |
| }, | |
| { | |
| "name": "get_other_safety_info_by_drug_name", | |
| "description": "Retrieve safety information that may not be specified in other fields based on the provided drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "other_safety_information" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide safety information for the drug Lidocaine Patch, including the first 2 records after skipping the initial 2?", | |
| "query": { | |
| "name": "get_other_safety_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Lidocaine Patch+openfda.generic_name:Lidocaine Patch)+AND+(_exists_:other_safety_information)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the storage instructions and other safety details for the medication Daytime Cold and Flu, with a limit of 3 records?", | |
| "query": { | |
| "name": "get_other_safety_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Daytime Cold and Flu+openfda.generic_name:Daytime Cold and Flu)+AND+(_exists_:other_safety_information)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the safety information for the drug Miconazole Nitrate 2%, but skip the first 1 record and show the next 2 records.", | |
| "query": { | |
| "name": "get_other_safety_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Miconazole Nitrate 2%+openfda.generic_name:Miconazole Nitrate 2%)+AND+(_exists_:other_safety_information)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "other_safety_information", | |
| "FDA", | |
| "SafetyInformation" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_overdosage_info", | |
| "description": "Retrieve drug names based on information about signs, symptoms, and laboratory findings of acute overdosage.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "overdosage_info": { | |
| "type": "string", | |
| "description": "Information about signs, symptoms, and laboratory findings of acute overdosage.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "overdosage_info": [ | |
| "overdosage" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that show symptoms like somnolence, vomiting, and tachycardia in case of an overdose, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_overdosage_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(overdosage:somnolence, vomiting, tachycardia)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are associated with signs of overdose such as respiratory depression and seizures, skipping the first 4 records?", | |
| "query": { | |
| "name": "get_drug_names_by_overdosage_info", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(overdosage:respiratory depression, seizures)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that cause symptoms like euphoria and altered time perception in case of an overdose, with a limit of 2 results and skipping the first 1 record.", | |
| "query": { | |
| "name": "get_drug_names_by_overdosage_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(overdosage:euphoria, altered time perception)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Overdosage", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_overdosage_info_by_drug_name", | |
| "description": "Retrieve information about signs, symptoms, and laboratory findings of acute overdosage based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "overdosage" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the signs and symptoms of an overdose of the drug Dronabinol, and can you provide detailed information on the first 5 records?", | |
| "query": { | |
| "name": "get_overdosage_info_by_drug_name", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(openfda.brand_name:Dronabinol+openfda.generic_name:Dronabinol)+AND+(_exists_:overdosage)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide information on the laboratory findings and symptoms of acute overdosage for the drug Fludrocortisone Acetate, skipping the first 3 records?", | |
| "query": { | |
| "name": "get_overdosage_info_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Fludrocortisone Acetate+openfda.generic_name:Fludrocortisone Acetate)+AND+(_exists_:overdosage)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed information on the overdose symptoms and signs for the drug Naproxen, with a limit of 4 records and skipping the first 2.", | |
| "query": { | |
| "name": "get_overdosage_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Naproxen+openfda.generic_name:Naproxen)+AND+(_exists_:overdosage)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Overdosage", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_principal_display_panel", | |
| "description": "Retrieve the drug name based on the content of the principal display panel of the product package.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "display_panel_content": { | |
| "type": "string", | |
| "description": "The content of the principal display panel of the product package.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "display_panel_content": [ | |
| "package_label_principal_display_panel" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug name for a product with the display panel content mentioning 'Glimepiride Tablets, USP 1 mg 30 Tablets' and limit the results to 3?", | |
| "query": { | |
| "name": "get_drug_name_by_principal_display_panel", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(package_label_principal_display_panel:Glimepiride Tablets, USP 1 mg 30 Tablets)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the drug name for a product whose principal display panel includes '750 mg Label 63187-130-40', skipping the first 2 records?", | |
| "query": { | |
| "name": "get_drug_name_by_principal_display_panel", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(package_label_principal_display_panel:750 mg Label 63187-130-40)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "package_label_principal_display_panel", | |
| "FDA", | |
| "HowSupplied" | |
| ] | |
| }, | |
| { | |
| "name": "get_principal_display_panel_by_drug_name", | |
| "description": "Retrieve the content of the principal display panel of the product package based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "package_label_principal_display_panel" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the principal display panel information for the drug Glimepiride, skipping the first 3 records and limiting the results to 2?", | |
| "query": { | |
| "name": "get_principal_display_panel_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Glimepiride+openfda.generic_name:Glimepiride)+AND+(_exists_:package_label_principal_display_panel)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What does the principal display panel of the product package for the drug Kali Cyanatum look like? Please return only 1 record.", | |
| "query": { | |
| "name": "get_principal_display_panel_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Kali Cyanatum+openfda.generic_name:Kali Cyanatum)+AND+(_exists_:package_label_principal_display_panel)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the principal display panel details for the drug OASIS Tears Lubricant Eye, but skip the first 8 records and limit the results to 2.", | |
| "query": { | |
| "name": "get_principal_display_panel_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 8, | |
| "search": "(openfda.brand_name:OASIS Tears Lubricant Eye+openfda.generic_name:OASIS Tears Lubricant Eye)+AND+(_exists_:package_label_principal_display_panel)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "package_label_principal_display_panel", | |
| "FDA", | |
| "PrincipalDisplayPanel" | |
| ] | |
| }, | |
| { | |
| "name": "retrieve_drug_names_by_patient_medication_info", | |
| "description": "Retrieve drug names based on patient medication information, which is about safe use of the drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "patient_info": { | |
| "type": "string", | |
| "description": "Information or instructions to patients about safe use of the drug product.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "patient_info": [ | |
| "patient_medication_information" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have patient information related to the safe use of medications for managing asthma, with a limit of 3 results?", | |
| "query": { | |
| "name": "retrieve_drug_names_by_patient_medication_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(patient_medication_information:managing asthma)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names associated with patient instructions for treating severe migraines, skipping the first 4 records?", | |
| "query": { | |
| "name": "retrieve_drug_names_by_patient_medication_info", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(patient_medication_information:treating severe migraines)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that include patient information on the safe use of medications for high blood pressure. Please provide up to 5 results, skipping the first 2.", | |
| "query": { | |
| "name": "retrieve_drug_names_by_patient_medication_info", | |
| "arguments": { | |
| "limit": 5, | |
| "skip": 2, | |
| "search": "(patient_medication_information:high blood pressure)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "PatientMedicationInformation", | |
| "FDA", | |
| "DrugNames" | |
| ] | |
| }, | |
| { | |
| "name": "retrieve_patient_medication_info_by_drug_name", | |
| "description": "Retrieve patient medication information (which is about safe use of the drug) based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "patient_medication_information" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "I need to know the patient information for those taking Metformin, but skip the first 5 records.", | |
| "query": { | |
| "name": "retrieve_patient_medication_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Metformin+openfda.generic_name:Metformin)+AND+(_exists_:patient_medication_information)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the medication details for patients using the drug Ibuprofen?", | |
| "query": { | |
| "name": "retrieve_patient_medication_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Ibuprofen+openfda.generic_name:Ibuprofen)+AND+(_exists_:patient_medication_information)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "PatientMedicationInformation", | |
| "FDA", | |
| "PatientMedicationInformationByDrugName" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_pediatric_use", | |
| "description": "Retrieve drug names based on pediatric use information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pediatric_use_info": { | |
| "type": "string", | |
| "description": "Information related to the safe and effective pediatric use of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pediatric_use_info": [ | |
| "pediatric_use" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have specific guidelines for pediatric use, and limit the results to 3?", | |
| "query": { | |
| "name": "get_drug_names_by_pediatric_use", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(pediatric_use:specific guidelines for pediatric use)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications have been noted to be safe for children as young as 6 months, and skip the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_pediatric_use", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(pediatric_use:safe for children as young as 6 months)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs have not established safety and effectiveness in pediatric patients below the age of 18, and return only 2 results?", | |
| "query": { | |
| "name": "get_drug_names_by_pediatric_use", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(pediatric_use:not established safety and effectiveness in pediatric patients below the age of 18)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "PediatricUse", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_pediatric_use_info_by_drug_name", | |
| "description": "Retrieve pediatric use information based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pediatric_use" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide pediatric use information for the drug Betamethasone Dipropionate, skipping the first 6 records and limiting the results to 2?", | |
| "query": { | |
| "name": "get_pediatric_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 6, | |
| "search": "(openfda.brand_name:Betamethasone Dipropionate+openfda.generic_name:Betamethasone Dipropionate)+AND+(_exists_:pediatric_use)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the safety and effectiveness details for pediatric use of the drug Naproxen?", | |
| "query": { | |
| "name": "get_pediatric_use_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Naproxen+openfda.generic_name:Naproxen)+AND+(_exists_:pediatric_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need pediatric use information for the drug Famotidine, but only the first 2 records.", | |
| "query": { | |
| "name": "get_pediatric_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Famotidine+openfda.generic_name:Famotidine)+AND+(_exists_:pediatric_use)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pediatric_use", | |
| "FDA", | |
| "PediatricUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_pharmacodynamics", | |
| "description": "Retrieve the drug name based on pharmacodynamics information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pharmacodynamics": { | |
| "type": "string", | |
| "description": "Information about the biochemical or physiologic pharmacologic effects of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pharmacodynamics": [ | |
| "pharmacodynamics" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that reduce total cholesterol and LDL-C in patients with hyperlipidemia, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacodynamics", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(pharmacodynamics:reduces total cholesterol and LDL-C in patients with hyperlipidemia)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drugs that cause respiratory depression by acting on brain stem respiratory centers, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacodynamics", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(pharmacodynamics:produces respiratory depression by direct action on brain stem respiratory centers)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs lead to distinct shortening of relaxation times even in low concentrations?", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacodynamics", | |
| "arguments": { | |
| "search": "(pharmacodynamics:leads to distinct shortening of the relaxation times even in low concentrations)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Pharmacodynamics", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_pharmacodynamics_by_drug_name", | |
| "description": "Retrieve pharmacodynamics information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pharmacodynamics" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed pharmacodynamics information for the drug Dronabinol, including the first 3 records?", | |
| "query": { | |
| "name": "get_pharmacodynamics_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Dronabinol+openfda.generic_name:Dronabinol)+AND+(_exists_:pharmacodynamics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the pharmacodynamic effects of the drug ENTRESTO, and can you skip the first 2 records?", | |
| "query": { | |
| "name": "get_pharmacodynamics_by_drug_name", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(openfda.brand_name:ENTRESTO+openfda.generic_name:ENTRESTO)+AND+(_exists_:pharmacodynamics)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the pharmacodynamics of Fluticasone Propionate, but only show me the second and third records.", | |
| "query": { | |
| "name": "get_pharmacodynamics_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Fluticasone Propionate+openfda.generic_name:Fluticasone Propionate)+AND+(_exists_:pharmacodynamics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pharmacodynamics", | |
| "FDA", | |
| "Pharmacodynamics" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_pharmacogenomics", | |
| "description": "Retrieve the drug name based on pharmacogenomics field information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pharmacogenomics": { | |
| "type": "string", | |
| "description": "Pharmacogenomics information to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pharmacogenomics": [ | |
| "pharmacogenomics" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug names associated with the pharmacogenomics information related to the HLA-B*5801 allele, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacogenomics", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(pharmacogenomics:HLA-B*5801 allele)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are linked to the pharmacogenomics of CYP2C19 poor metabolizers, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacogenomics", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(pharmacogenomics:CYP2C19 poor metabolizers)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on drugs related to the pharmacogenomics of RYR1 and CACNA1S polymorphic genes, with a limit of 4 results and skipping the first 2.", | |
| "query": { | |
| "name": "get_drug_name_by_pharmacogenomics", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(pharmacogenomics:RYR1 and CACNA1S polymorphic genes)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pharmacogenomics", | |
| "FDA", | |
| "Pharmacogenomics" | |
| ] | |
| }, | |
| { | |
| "name": "get_pharmacogenomics_info_by_drug_name", | |
| "description": "Retrieve pharmacogenomics information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pharmacogenomics" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide pharmacogenomics information for the drug Omeprazole, including details on how genetic variations affect its metabolism?", | |
| "query": { | |
| "name": "get_pharmacogenomics_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Omeprazole+openfda.generic_name:Omeprazole)+AND+(_exists_:pharmacogenomics)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need pharmacogenomics data for Rosuvastatin calcium, but only the first 3 records. Can you help?", | |
| "query": { | |
| "name": "get_pharmacogenomics_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Rosuvastatin calcium+openfda.generic_name:Rosuvastatin calcium)+AND+(_exists_:pharmacogenomics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the pharmacogenomics details for Phenytoin, and can you skip the first 5 records and show the next 2?", | |
| "query": { | |
| "name": "get_pharmacogenomics_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Phenytoin+openfda.generic_name:Phenytoin)+AND+(_exists_:pharmacogenomics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pharmacogenomics", | |
| "FDA", | |
| "Pharmacogenomics" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_pharmacokinetics", | |
| "description": "Retrieve drug names based on specific pharmacokinetics information, such as absorption, distribution, elimination, metabolism, drug interactions, and specific patient populations.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pharmacokinetics_info": { | |
| "type": "string", | |
| "description": "Information about the clinically significant pharmacokinetics of a drug or active metabolites.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pharmacokinetics_info": [ | |
| "pharmacokinetics" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "pharmacokinetics", | |
| "FDA", | |
| "Pharmacokinetics" | |
| ] | |
| }, | |
| { | |
| "name": "get_pharmacokinetics_by_drug_name", | |
| "description": "Retrieve pharmacokinetics information (e.g. absorption, distribution, elimination, metabolism, drug interactions, and specific patient populations) for a specific drug based on its name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pharmacokinetics" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed pharmacokinetics information for the drug Lorbrena, including the first 5 records?", | |
| "query": { | |
| "name": "get_pharmacokinetics_by_drug_name", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(openfda.brand_name:Lorbrena+openfda.generic_name:Lorbrena)+AND+(_exists_:pharmacokinetics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the pharmacokinetics information for the drug Nitrofurantoin, but only show 2 records starting from the 5th record.", | |
| "query": { | |
| "name": "get_pharmacokinetics_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(openfda.brand_name:Nitrofurantoin+openfda.generic_name:Nitrofurantoin)+AND+(_exists_:pharmacokinetics)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pharmacokinetics", | |
| "FDA", | |
| "Pharmacokinetics" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_precautions", | |
| "description": "Retrieve the drug name based on the precautions field information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "precautions": { | |
| "type": "string", | |
| "description": "Information about any special care to be exercised for safe and effective use of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "precautions": [ | |
| "precautions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What drug should be used with caution in patients with severe coronary artery disease due to its vasodilatory effect?", | |
| "query": { | |
| "name": "get_drug_name_by_precautions", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(precautions:vasodilatory effect in patients with severe coronary artery disease)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medication requires careful monitoring of blood pressure and serum electrolyte levels due to potential adverse reactions?", | |
| "query": { | |
| "name": "get_drug_name_by_precautions", | |
| "arguments": { | |
| "skip": 2, | |
| "limit": 1, | |
| "search": "(precautions:monitoring of blood pressure and serum electrolyte levels)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide the name of a drug that should be used cautiously in patients with a history of myocardial infarction or unstable heart disease?", | |
| "query": { | |
| "name": "get_drug_name_by_precautions", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(precautions:cautiously in patients with a history of myocardial infarction or unstable heart disease)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "precautions", | |
| "FDA", | |
| "GeneralPrecautions" | |
| ] | |
| }, | |
| { | |
| "name": "get_precautions_by_drug_name", | |
| "description": "Retrieve precautions information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "precautions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the precautions for the drug Acetazolamide, skipping the first 7 records and limiting the results to 2?", | |
| "query": { | |
| "name": "get_precautions_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 7, | |
| "search": "(openfda.brand_name:Acetazolamide+openfda.generic_name:Acetazolamide)+AND+(_exists_:precautions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What precautions should be taken when using the medication Acetazolamide?", | |
| "query": { | |
| "name": "get_precautions_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Acetazolamide+openfda.generic_name:Acetazolamide)+AND+(_exists_:precautions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed precautions for the drug Acetazolamide, but only the first 5 records.", | |
| "query": { | |
| "name": "get_precautions_by_drug_name", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(openfda.brand_name:Acetazolamide+openfda.generic_name:Acetazolamide)+AND+(_exists_:precautions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "Precautions", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_pregnancy_effects_info", | |
| "description": "Retrieve drug names based on information about effects the drug may have on pregnant women or on a fetus.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pregnancy_info": { | |
| "type": "string", | |
| "description": "Information about the effects on pregnancy to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pregnancy_info": [ | |
| "pregnancy" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide information on drugs that may cause fetal harm when administered to pregnant women, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_pregnancy_effects_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(pregnancy:fetal harm)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications should be avoided during pregnancy due to the risk of congenital malformations, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_pregnancy_effects_info", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(pregnancy:congenital malformations)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are known to affect fetal development and should be monitored closely during pregnancy?", | |
| "query": { | |
| "name": "get_drug_names_by_pregnancy_effects_info", | |
| "arguments": { | |
| "search": "(pregnancy:affect fetal development)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pregnancy", | |
| "FDA", | |
| "UseInSpecificPopulations" | |
| ] | |
| }, | |
| { | |
| "name": "get_pregnancy_effects_info_by_drug_name", | |
| "description": "Retrieve information about the effects on pregnancy for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pregnancy" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the effects of Cyclosporine during pregnancy, including any relevant studies or data?", | |
| "query": { | |
| "name": "get_pregnanc_effects_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Cyclosporine+openfda.generic_name:Cyclosporine)+AND+(_exists_:pregnancy)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the potential risks and adverse outcomes associated with the use of Dronabinol during pregnancy?", | |
| "query": { | |
| "name": "get_pregnanc_effects_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Dronabinol+openfda.generic_name:Dronabinol)+AND+(_exists_:pregnancy)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the impact of Etodolac on fetal development and any associated risks during pregnancy. Can you provide this?", | |
| "query": { | |
| "name": "get_pregnanc_effects_info_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Etodolac+openfda.generic_name:Etodolac)+AND+(_exists_:pregnancy)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "pregnancy", | |
| "FDA", | |
| "Pregnancy" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_pregnancy_or_breastfeeding_info", | |
| "description": "Retrieve the drug names based on pregnancy or breastfeeding information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "pregnancy_info": { | |
| "type": "string", | |
| "description": "Information related to pregnancy or breastfeeding.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "pregnancy_info": [ | |
| "pregnancy_or_breast_feeding" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that should be avoided during pregnancy or breastfeeding, with a limit of 3 results and skipping the first 2?", | |
| "query": { | |
| "name": "get_drug_name_by_pregnancy_or_breastfeeding_info", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 2, | |
| "search": "(pregnancy_or_breast_feeding:should be avoided during pregnancy or breastfeeding)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications are recommended to consult a health professional before use if pregnant or breastfeeding, and show me the first 5 results?", | |
| "query": { | |
| "name": "get_drug_name_by_pregnancy_or_breastfeeding_info", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(pregnancy_or_breast_feeding:ask a health professional before use)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that may cause complications during the last trimester of pregnancy, skipping the first 4 results.", | |
| "query": { | |
| "name": "get_drug_name_by_pregnancy_or_breastfeeding_info", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(pregnancy_or_breast_feeding:cause complications during the last trimester of pregnancy)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "IndicationsAndUsage", | |
| "Pregnancy", | |
| "NursingMothers", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_pregnancy_or_breastfeeding_info_by_drug_name", | |
| "description": "Retrieve the pregnancy or breastfeeding information based on the specified drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "pregnancy_or_breast_feeding", | |
| "pregnancy" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "IndicationsAndUsage", | |
| "Pregnancy", | |
| "NursingMothers", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_contact_for_questions_info_by_drug_name", | |
| "description": "Retrieve information on who to contact with questions about the drug based on the provided drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "questions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the contact information for inquiries about the drug Hydrocortisone, with a limit of 3 records?", | |
| "query": { | |
| "name": "get_contact_for_questions_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Hydrocortisone+openfda.generic_name:Hydrocortisone)+AND+(_exists_:questions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the customer service details for the drug Acetaminophen, skipping the first 5 records.", | |
| "query": { | |
| "name": "get_contact_for_questions_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Acetaminophen+openfda.generic_name:Acetaminophen)+AND+(_exists_:questions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the questions or comments contact numbers for the drug Sodium Fluoride, with a limit of 2 and skipping the first 1 record?", | |
| "query": { | |
| "name": "get_contact_for_questions_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Sodium Fluoride+openfda.generic_name:Sodium Fluoride)+AND+(_exists_:questions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "questions", | |
| "FDA", | |
| "InformationRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_recent_changes_by_drug_name", | |
| "description": "Retrieve recent major changes in labeling for a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "recent_major_changes" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the latest major labeling changes for the drug Adalimumab, limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_recent_changes_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Adalimumab+openfda.generic_name:Adalimumab)+AND+(_exists_:recent_major_changes)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the recent major changes in the labeling for the drug Tramadol Hydrochloride, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_recent_changes_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:recent_major_changes)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the recent major changes in the labeling for the drug Fenofibrate, with a limit of 2 records and skipping the first 3.", | |
| "query": { | |
| "name": "get_recent_changes_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 3, | |
| "search": "(openfda.brand_name:Fenofibrate+openfda.generic_name:Fenofibrate)+AND+(_exists_:recent_major_changes)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "RecentChanges", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_reference", | |
| "description": "Retrieve the drug name based on the reference information provided in the drug labeling.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "reference": { | |
| "type": "string", | |
| "description": "The reference information to search for in the drug labeling.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "reference": [ | |
| "references" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug names associated with the reference 'CLSI Document M07-A10' and limit the results to 2?", | |
| "query": { | |
| "name": "get_drug_name_by_reference", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(references:CLSI Document M07-A10)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names linked to the reference 'NIOSH Alert: Preventing occupational exposures to antineoplastic and other hazardous drugs in healthcare settings' while skipping the first 3 records?", | |
| "query": { | |
| "name": "get_drug_name_by_reference", | |
| "arguments": { | |
| "skip": 3, | |
| "search": "(references:NIOSH Alert: Preventing occupational exposures to antineoplastic and other hazardous drugs in healthcare settings)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the names of drugs that have references related to 'Infections associated with corticosteroids and immunosuppressive therapy' without any limit or skip.", | |
| "query": { | |
| "name": "get_drug_name_by_reference", | |
| "arguments": { | |
| "search": "(references:Infections associated with corticosteroids and immunosuppressive therapy)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "references", | |
| "FDA", | |
| "DrugNameRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_reference_info_by_drug_name", | |
| "description": "Retrieve reference information based on the drug name provided.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "references" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide reference information for the drug Amitriptyline Hydrochloride, limiting the results to 3 and skipping the first 2?", | |
| "query": { | |
| "name": "get_reference_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Amitriptyline Hydrochloride+openfda.generic_name:Amitriptyline Hydrochloride)+AND+(_exists_:references)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the references available for the drug Metronidazole?", | |
| "query": { | |
| "name": "get_reference_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Metronidazole+openfda.generic_name:Metronidazole)+AND+(_exists_:references)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the first 5 reference records for the drug Omeprazole. Can you help?", | |
| "query": { | |
| "name": "get_reference_info_by_drug_name", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(openfda.brand_name:Omeprazole+openfda.generic_name:Omeprazole)+AND+(_exists_:references)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "references", | |
| "FDA", | |
| "InformationRetrieval" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_residue_warning", | |
| "description": "Retrieve drug names based on the presence of residue warnings.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "residue_warning": { | |
| "type": "string", | |
| "description": "The residue warning information to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "residue_warning": [ | |
| "residue_warning" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "ResidueWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_residue_warning_by_drug_name", | |
| "description": "Retrieve the residue warning based on drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "residue_warning" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "ResidueWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_risk", | |
| "description": "Retrieve drug names based on specific risk information, especially regarding pregnancy or breastfeeding.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "risk_info": { | |
| "type": "string", | |
| "description": "Specific risk information to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "risk_info": [ | |
| "risks" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that pose risks to pregnant women, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_risk", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(risks:pregnancy)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What drugs are associated with risks of congenital malformations, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_drug_names_by_risk", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(risks:congenital malformations)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications have documented risks related to breastfeeding, and can you show me the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_risk", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(risks:breastfeeding)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "risks", | |
| "FDA", | |
| "DrugInteractions" | |
| ] | |
| }, | |
| { | |
| "name": "get_risk_info_by_drug_name", | |
| "description": "Retrieve risk information (especially regarding pregnancy or breastfeeding) based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "risks" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the risk information for the drug Methotrexate, including any potential risks during pregnancy and breastfeeding?", | |
| "query": { | |
| "name": "get_risk_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Methotrexate+openfda.generic_name:Methotrexate)+AND+(_exists_:risks)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed risk information for the drug Citalopram, especially concerning its effects during pregnancy and breastfeeding. Please provide the first 4 records.", | |
| "query": { | |
| "name": "get_risk_info_by_drug_name", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(openfda.brand_name:Citalopram+openfda.generic_name:Citalopram)+AND+(_exists_:risks)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "risks", | |
| "FDA", | |
| "Risks" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_route", | |
| "description": "Retrieve the drug names based on the route of administration.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "route": { | |
| "type": "string", | |
| "description": "The route of administration of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "route": [ | |
| "route", | |
| "openfda.route" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "List the first 10 drugs that can be administered topically.", | |
| "query": { | |
| "name": "get_drug_names_by_route", | |
| "arguments": { | |
| "limit": 10, | |
| "search": "(route:topical+openfda.route:topical)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "route", | |
| "FDA", | |
| "DrugNames" | |
| ] | |
| }, | |
| { | |
| "name": "get_route_info_by_drug_name", | |
| "description": "Retrieve the route of administration information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "route", | |
| "openfda.route" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the route of administration details for the drug named 'Broad Spectrum SPF 30 Sun Stick'?", | |
| "query": { | |
| "name": "get_route_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Broad Spectrum SPF 30 Sun Stick+openfda.generic_name:Broad Spectrum SPF 30 Sun Stick)+AND+(_exists_:route+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the administration route information for 'Calcarea Caustica', but only the first 2 records.", | |
| "query": { | |
| "name": "get_route_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Calcarea Caustica+openfda.generic_name:Calcarea Caustica)+AND+(_exists_:route+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the administration instructions for 'BROAD SPECTRUM SPF 30 SUN STICK', skipping the first 2 records and limiting to 2 results?", | |
| "query": { | |
| "name": "get_route_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:BROAD SPECTRUM SPF 30 SUN STICK+openfda.generic_name:BROAD SPECTRUM SPF 30 SUN STICK)+AND+(_exists_:route+_exists_:openfda.route)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "route", | |
| "FDA", | |
| "DosageAndAdministration" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_safe_handling_warning", | |
| "description": "Retrieve drug names that have specific safe handling warnings.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "safe_handling_warning": { | |
| "type": "string", | |
| "description": "The specific safe handling warning to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "safe_handling_warning": [ | |
| "safe_handling_warning" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the drug names that come with a warning about not using if the seal on the tube is punctured or missing, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_safe_handling_warning", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(safe_handling_warning:TAMPER EVIDENT DO NOT USE IF SEAL ON TUBE IS PUNCTURED OR MISSING)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have a safe handling warning about storing at room temperature away from heat, skipping the first 4 results.", | |
| "query": { | |
| "name": "get_drug_names_by_safe_handling_warning", | |
| "arguments": { | |
| "skip": 4, | |
| "search": "(safe_handling_warning:store at room temperature away heat)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "SafeHandlingWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_safe_handling_warnings_by_drug_name", | |
| "description": "Retrieve safe handling warnings for a specific drug based on its name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "safe_handling_warning" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide safe handling warnings for the drug Clonidine Hydrochloride, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_safe_handling_warnings_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Clonidine Hydrochloride+openfda.generic_name:Clonidine Hydrochloride)+AND+(_exists_:safe_handling_warning)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the safe handling warnings for the sunscreen product Coppertone Pure and Simple Sunscreen SPF 50, skipping the first 5 records?", | |
| "query": { | |
| "name": "get_safe_handling_warnings_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Coppertone Pure and Simple Sunscreen SPF 50+openfda.generic_name:Coppertone Pure and Simple Sunscreen SPF 50)+AND+(_exists_:safe_handling_warning)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know the safe handling warnings for Sodium Fluoride Chewable tablets, but only show me the first 2 records after skipping the initial 4.", | |
| "query": { | |
| "name": "get_safe_handling_warnings_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 4, | |
| "search": "(openfda.brand_name:Sodium Fluoride Chewable+openfda.generic_name:Sodium Fluoride Chewable)+AND+(_exists_:safe_handling_warning)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "SafeHandlingWarning", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_set_id", | |
| "description": "Retrieve the drug name based on the Set ID of the labeling.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "set_id": { | |
| "type": "string", | |
| "description": "The Set ID, a globally unique identifier for the labeling.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "set_id": [ | |
| "set_id" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the drug name for the labeling with Set ID '03c05028-5a5f-4690-a836-cc1b1044ab39'?", | |
| "query": { | |
| "name": "get_drug_name_by_set_id", | |
| "arguments": { | |
| "search": "(set_id:03c05028-5a5f-4690-a836-cc1b1044ab39)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What is the drug name associated with the Set ID '0019cd99-b245-2ffc-e063-6294a90a9f27', and can you limit the results to 1?", | |
| "query": { | |
| "name": "get_drug_name_by_set_id", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(set_id:0019cd99-b245-2ffc-e063-6294a90a9f27)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "get_drug_name_by_set_id", | |
| "DrugNameRetrieval", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_spl_indexing_data_elements", | |
| "description": "Retrieve drug names based on Structured Product Labeling (SPL) indexing data elements.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "spl_indexing_data_elements": { | |
| "type": "string", | |
| "description": "The SPL indexing data elements to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "spl_indexing_data_elements": [ | |
| "spl_indexing_data_elements" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "I am looking for drugs related to the SPL indexing data element 'pain reliever' but skip the first 5 records.", | |
| "query": { | |
| "name": "get_drug_names_by_spl_indexing_data_elements", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(spl_indexing_data_elements:pain reliever)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "SplIndexing", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_spl_indexing_data_elements_by_drug_name", | |
| "description": "Retrieve Structured Product Labeling (SPL) indexing data elements based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "spl_indexing_data_elements" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the SPL indexing data elements for the drug Ondansetron, limiting the results to 3 records?", | |
| "query": { | |
| "name": "get_spl_indexing_data_elements_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Ondansetron+openfda.generic_name:Ondansetron)+AND+(_exists_:spl_indexing_data_elements)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed SPL indexing information for Atropine Sulfate, but skip the first 2 records.", | |
| "query": { | |
| "name": "get_spl_indexing_data_elements_by_drug_name", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Atropine Sulfate+openfda.generic_name:Atropine Sulfate)+AND+(_exists_:spl_indexing_data_elements)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the SPL indexing data elements for Nitroglycerin, and can you return only 5 records?", | |
| "query": { | |
| "name": "get_spl_indexing_data_elements_by_drug_name", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(openfda.brand_name:Nitroglycerin+openfda.generic_name:Nitroglycerin)+AND+(_exists_:spl_indexing_data_elements)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "spl_indexing_data_elements", | |
| "FDA", | |
| "SplIndexing" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_medication_guide", | |
| "description": "Retrieve drug names based on the presence of specific information in the medication guide.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "medguide_info": { | |
| "type": "string", | |
| "description": "Information contained in the medication guide.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "medguide_info": [ | |
| "spl_medguide" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings about serious skin reactions in their medication guides, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_medication_guide", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(spl_medguide:serious skin reactions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications mention the risk of suicidal thoughts or actions in their guides, skipping the first 5 entries?", | |
| "query": { | |
| "name": "get_drug_names_by_medication_guide", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(spl_medguide:suicidal thoughts or actions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that include warnings about liver problems in their medication guides, but skip the first 10 results and limit the output to 5 entries.", | |
| "query": { | |
| "name": "get_drug_names_by_medication_guide", | |
| "arguments": { | |
| "limit": 5, | |
| "skip": 10, | |
| "search": "(spl_medguide:liver problems)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "splMedguide", | |
| "FDA", | |
| "MedicationGuide", | |
| "DrugInformation" | |
| ] | |
| }, | |
| { | |
| "name": "get_medication_guide_info_by_drug_name", | |
| "description": "Retrieve medication guide information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "spl_medguide" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the medication guide information for the drug Tramadol Hydrochloride, including the first 3 records?", | |
| "query": { | |
| "name": "get_medication_guide_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Tramadol Hydrochloride+openfda.generic_name:Tramadol Hydrochloride)+AND+(_exists_:spl_medguide)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the key warnings and precautions for using Sertraline Hydrochloride, and can you skip the first 5 records?", | |
| "query": { | |
| "name": "get_medication_guide_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Sertraline Hydrochloride+openfda.generic_name:Sertraline Hydrochloride)+AND+(_exists_:spl_medguide)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed medication guide information for Diclofenac Sodium Topical Sol, but only the first 2 records.", | |
| "query": { | |
| "name": "get_medication_guide_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Diclofenac Sodium Topical Sol+openfda.generic_name:Diclofenac Sodium Topical Sol)+AND+(_exists_:spl_medguide)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "spl_medguide", | |
| "FDA", | |
| "MedicationGuide", | |
| "DrugInformation" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_from_patient_package_insert", | |
| "description": "Retrieve the drug name based on the information provided in the patient package insert.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "patient_package_insert": { | |
| "type": "string", | |
| "description": "Information necessary for patients to use the drug safely and effectively.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "patient_package_insert": [ | |
| "spl_patient_package_insert" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What is the name of the drug used to treat flu symptoms in people 2 weeks of age and older, as mentioned in the patient package insert?", | |
| "query": { | |
| "name": "get_drug_name_from_patient_package_insert", | |
| "arguments": { | |
| "skip": 0, | |
| "limit": 1, | |
| "search": "(spl_patient_package_insert:Oseltamivir phosphate for oral suspension is a prescription medicine used to: treat the flu (influenza) in people 2 weeks of age and older who have had flu symptoms for no more than two days.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Identify the drug from the patient package insert that is used to treat high blood pressure and angina, and provide the first 3 records.", | |
| "query": { | |
| "name": "get_drug_name_from_patient_package_insert", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(spl_patient_package_insert:Amlodipine besylate tablet is a type of medicine known as a calcium channel blocker (CCB). It is used to treat high blood pressure (hypertension) and a type of chest pain called angina.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "spl_patient_package_insert", | |
| "FDA", | |
| "Description", | |
| "PatientMedicationInformation", | |
| "HowSupplied" | |
| ] | |
| }, | |
| { | |
| "name": "get_patient_package_insert_from_drug_name", | |
| "description": "Retrieve the patient package insert information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "spl_patient_package_insert" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the patient package insert information for the drug Hailey 1.5/30, skipping the first 1 record and limiting the results to 2?", | |
| "query": { | |
| "name": "get_patient_package_insert_from_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Hailey 1.5/30+openfda.generic_name:Hailey 1.5/30)+AND+(_exists_:spl_patient_package_insert)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the detailed patient instructions for using Medroxyprogesterone Acetate, and can you limit the results to 3 records?", | |
| "query": { | |
| "name": "get_patient_package_insert_from_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Medroxyprogesterone Acetate+openfda.generic_name:Medroxyprogesterone Acetate)+AND+(_exists_:spl_patient_package_insert)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the patient package insert information for the drug Propafenone Hydrochloride, skipping the first 2 records.", | |
| "query": { | |
| "name": "get_patient_package_insert_from_drug_name", | |
| "arguments": { | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Propafenone Hydrochloride+openfda.generic_name:Propafenone Hydrochloride)+AND+(_exists_:spl_patient_package_insert)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "spl_patient_package_insert", | |
| "FDA", | |
| "PatientMedicationInformation" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_ingredient", | |
| "description": "Retrieve drug names based on a specific ingredient present in the drug product.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "ingredient_name": { | |
| "type": "string", | |
| "description": "The name of the ingredient to search for in drug products.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "ingredient_name": [ | |
| "spl_product_data_elements" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that contain the ingredient 'melatonin', with a limit of 3 results and skipping the first 2?", | |
| "query": { | |
| "name": "get_drug_names_by_ingredient", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 2, | |
| "search": "(spl_product_data_elements:melatonin)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are some drug products that include 'sodium chloride' as an ingredient, and can you show me the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_ingredient", | |
| "arguments": { | |
| "limit": 5, | |
| "search": "(spl_product_data_elements:sodium chloride)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I am looking for medications that have 'oxytocin' as an active ingredient. Could you list the names of these drugs, skipping the first 1 result and limiting the output to 4?", | |
| "query": { | |
| "name": "get_drug_names_by_ingredient", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 1, | |
| "search": "(spl_product_data_elements:oxytocin)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "InactiveIngredient", | |
| "ActiveIngredient", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_ingredients_by_drug_name", | |
| "description": "Retrieve a list of drug ingredients based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "spl_product_data_elements" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "InactiveIngredient", | |
| "ActiveIngredient", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_spl_unclassified_section_by_drug_name", | |
| "description": "Retrieve the SPL unclassified section information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "spl_unclassified_section" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the SPL unclassified section details for the drug Methocarbamol, skipping the first 3 records and limiting the results to 2?", | |
| "query": { | |
| "name": "get_spl_unclassified_section_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Methocarbamol+openfda.generic_name:Methocarbamol)+AND+(_exists_:spl_unclassified_section)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What information is available in the SPL unclassified section for the drug Duloxetine Delayed-Release, with a limit of 1 result?", | |
| "query": { | |
| "name": "get_spl_unclassified_section_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(openfda.brand_name:Duloxetine Delayed-Release+openfda.generic_name:Duloxetine Delayed-Release)+AND+(_exists_:spl_unclassified_section)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need the SPL unclassified section information for the drug Glimepiride, skipping the first 5 records.", | |
| "query": { | |
| "name": "get_spl_unclassified_section_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Glimepiride+openfda.generic_name:Glimepiride)+AND+(_exists_:spl_unclassified_section)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "spl_unclassified_section", | |
| "FDA", | |
| "UnclassifiedSection" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_stop_use_info", | |
| "description": "Retrieve the drug name based on the stop use information provided.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "stop_use_info": { | |
| "type": "string", | |
| "description": "Information about when use of the drug product should be discontinued immediately and a doctor consulted.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "stop_use_info": [ | |
| "stop_use" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Under what circumstances should the use of the drug 'Compound W Liquid - First Aid' be stopped immediately and a doctor consulted?", | |
| "query": { | |
| "name": "get_drug_name_by_stop_use_info", | |
| "arguments": { | |
| "limit": 1, | |
| "search": "(stop_use:Stop use and ask a doctor if discomfort persists Extremely flammable. Keep away from fire and flame. Cap bottle tightly and store at room temperature away from heat.)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide the name of a drug that should be discontinued if no improvement is seen within 4 weeks?", | |
| "query": { | |
| "name": "get_drug_name_by_stop_use_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 0, | |
| "search": "(stop_use:Stop use and ask a doctor if irritation occurs or gets worse no improvement within 4 weeks)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medication should be stopped if nervousness, dizziness, or sleeplessness occur, and what is the generic name of this drug?", | |
| "query": { | |
| "name": "get_drug_name_by_stop_use_info", | |
| "arguments": { | |
| "limit": 1, | |
| "skip": 4, | |
| "search": "(stop_use:Stop use and ask a doctor if nervousness, dizziness, or sleeplessness occur cough or nasal congestion persists for more than 1 week, tends to recur, or is accompanied by a fever, rash, or persistent headache. A persistent cough may be a sign of a serious condition. new symptoms occur)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "stop_use", | |
| "FDA", | |
| "DiscontinuationGuidelines" | |
| ] | |
| }, | |
| { | |
| "name": "get_stop_use_info_by_drug_name", | |
| "description": "Retrieve stop use information based on the drug name provided.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "stop_use" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the stop use information for the drug Silicea, and limit the results to 3 records?", | |
| "query": { | |
| "name": "get_stop_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Silicea+openfda.generic_name:Silicea)+AND+(_exists_:stop_use)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the conditions under which a patient should stop using the drug Benzalkonium Chloride, and skip the first 5 records?", | |
| "query": { | |
| "name": "get_stop_use_info_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Benzalkonium Chloride+openfda.generic_name:Benzalkonium Chloride)+AND+(_exists_:stop_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed stop use instructions for the drug Nicotine Polacrilex. Please provide this information.", | |
| "query": { | |
| "name": "get_stop_use_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Nicotine Polacrilex+openfda.generic_name:Nicotine Polacrilex)+AND+(_exists_:stop_use)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "StopUse", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_storage_and_handling_info", | |
| "description": "Retrieve the drug name based on storage and handling information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "storage_info": { | |
| "type": "string", | |
| "description": "Information about the storage and handling of the drug product.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "storage_info": [ | |
| "storage_and_handling" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that need to be stored at room temperature, skipping the first 2 records and limiting the results to 2?", | |
| "query": { | |
| "name": "get_drug_name_by_storage_and_handling_info", | |
| "arguments": { | |
| "limit": 2, | |
| "skip": 2, | |
| "search": "(storage_and_handling:store at room temperature)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs should be stored in a tight container protected from light and moisture, and return only the first 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_storage_and_handling_info", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(storage_and_handling:stored in a tight container protected from light and moisture)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "storage_and_handling", | |
| "FDA", | |
| "StorageAndHandling" | |
| ] | |
| }, | |
| { | |
| "name": "get_storage_and_handling_info_by_drug_name", | |
| "description": "Retrieve storage and handling information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "storage_and_handling" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the storage and handling information for the drug Betamethasone Dipropionate, and limit the results to 2 records?", | |
| "query": { | |
| "name": "get_storage_and_handling_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Betamethasone Dipropionate+openfda.generic_name:Betamethasone Dipropionate)+AND+(_exists_:storage_and_handling)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need to know how to store the medication Entresto. Please skip the first 3 records and show me the next 2.", | |
| "query": { | |
| "name": "get_storage_and_handling_info_by_drug_name", | |
| "arguments": { | |
| "skip": 3, | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Entresto+openfda.generic_name:Entresto)+AND+(_exists_:storage_and_handling)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the storage instructions for the drug Methocarbamol?", | |
| "query": { | |
| "name": "get_storage_and_handling_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Methocarbamol+openfda.generic_name:Methocarbamol)+AND+(_exists_:storage_and_handling)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "StorageAndHandling", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_safety_summary", | |
| "description": "Retrieve drug names based on the summary of safety and effectiveness information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "summary_text": { | |
| "type": "string", | |
| "description": "Text to search within the summary of safety and effectiveness field.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "summary_text": [ | |
| "summary_of_safety_and_effectiveness" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "SummaryOfSafety", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_safety_summary_by_drug_name", | |
| "description": "Retrieve a summary of safety and effectiveness information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug (either brand name or generic name).", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "summary_of_safety_and_effectiveness" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "SummaryOfSafety", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_teratogenic_effects", | |
| "description": "Retrieve drug names based on specific teratogenic effects categories.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "teratogenic_effects": { | |
| "type": "string", | |
| "description": "The teratogenic effects category to search for (e.g., Pregnancy category A, B, C, D, or X).", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "teratogenic_effects": [ | |
| "teratogenic_effects" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs that fall under Pregnancy Category D, with a limit of 5 results and skipping the first 3?", | |
| "query": { | |
| "name": "get_drug_names_by_teratogenic_effects", | |
| "arguments": { | |
| "limit": 5, | |
| "skip": 3, | |
| "search": "(teratogenic_effects:Pregnancy Category D)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications are classified under Pregnancy Category B, and can you show me the first 10 results?", | |
| "query": { | |
| "name": "get_drug_names_by_teratogenic_effects", | |
| "arguments": { | |
| "limit": 10, | |
| "search": "(teratogenic_effects:Pregnancy Category B)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on drugs that are categorized under Pregnancy Category X. Please provide the first 7 results.", | |
| "query": { | |
| "name": "get_drug_names_by_teratogenic_effects", | |
| "arguments": { | |
| "limit": 7, | |
| "search": "(teratogenic_effects:Pregnancy Category X)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "TeratogenicEffects", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_teratogenic_effects_by_drug_name", | |
| "description": "Retrieve teratogenic effects information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug (either brand name or generic name).", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "teratogenic_effects" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed teratogenic effects of the drug Betaloan SUIK, including any potential risks to the fetus?", | |
| "query": { | |
| "name": "get_teratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Betaloan SUIK+openfda.generic_name:Betaloan SUIK)+AND+(_exists_:teratogenic_effects)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the teratogenic effects of Glimepiride, and can you limit the results to 3 records while skipping the first 2?", | |
| "query": { | |
| "name": "get_teratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 2, | |
| "search": "(openfda.brand_name:Glimepiride+openfda.generic_name:Glimepiride)+AND+(_exists_:teratogenic_effects)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the teratogenic effects of Risperidone, but please skip the first 5 records.", | |
| "query": { | |
| "name": "get_teratogenic_effects_by_drug_name", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Risperidone+openfda.generic_name:Risperidone)+AND+(_exists_:teratogenic_effects)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "teratogenic_effects", | |
| "FDA", | |
| "TeratogenicEffects" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_population_use", | |
| "description": "Retrieve drug names based on their use in specific populations, such as pregnant women, nursing mothers, pediatric patients, and geriatric patients.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "population_use": { | |
| "type": "string", | |
| "description": "The specific population use to search for (e.g., pregnant women, nursing mothers).", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "population_use": [ | |
| "use_in_specific_populations" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide a list of drugs commonly used by nursing mothers, limited to 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_population_use", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(use_in_specific_populations:nursing mothers)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What medications are recommended for pediatric patients, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_population_use", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(use_in_specific_populations:pediatric patients)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which drugs are suitable for geriatric patients, and can you provide the first 4 results?", | |
| "query": { | |
| "name": "get_drug_names_by_population_use", | |
| "arguments": { | |
| "limit": 4, | |
| "search": "(use_in_specific_populations:geriatric patients)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "use_in_specific_populations", | |
| "FDA", | |
| "PediatricUse", | |
| "NursingMothers", | |
| "GeriatricUse" | |
| ] | |
| }, | |
| { | |
| "name": "get_population_use_info_by_drug_name", | |
| "description": "Retrieve information about the use of a drug in specific populations based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "use_in_specific_populations" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide detailed information on the use of the drug Olanzapine in specific populations, including any risks during pregnancy and lactation?", | |
| "query": { | |
| "name": "get_population_use_info_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Olanzapine+openfda.generic_name:Olanzapine)+AND+(_exists_:use_in_specific_populations)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the guidelines for prescribing Hydroxyurea to elderly patients, and are there any specific considerations for those with renal impairment?", | |
| "query": { | |
| "name": "get_population_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Hydroxyurea+openfda.generic_name:Hydroxyurea)+AND+(_exists_:use_in_specific_populations)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need information on the safety and effectiveness of Pyridostigmine Bromide in pediatric patients, with a focus on any potential risks.", | |
| "query": { | |
| "name": "get_population_use_info_by_drug_name", | |
| "arguments": { | |
| "limit": 2, | |
| "search": "(openfda.brand_name:Pyridostigmine Bromide+openfda.generic_name:Pyridostigmine Bromide)+AND+(_exists_:use_in_specific_populations)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "use_in_specific_populations", | |
| "FDA", | |
| "IndicationsAndUsage" | |
| ] | |
| }, | |
| { | |
| "name": "get_user_safety_warning_by_drug_names", | |
| "description": "Retrieve specific user safety warnings based on drug names.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The specific drug name.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "user_safety_warnings" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings about the risk of skin cancer due to sun exposure, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(user_safety_warnings:risk of skin cancer due to sun exposure)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names that include a safety warning about contacting a Poison Control Center if swallowed, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(user_safety_warnings:contact a Poison Control Center if swallowed)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "List the drugs that have safety warnings about reapplying every 80 minutes, especially after swimming or towel drying.", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "search": "(user_safety_warnings:reapply every 80 minutes, especially after swimming or towel drying)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "user_safety_warnings", | |
| "FDA", | |
| "UserSafetyWarnings" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "description": "Retrieve drug names that have specific user safety warnings.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "safety_warning": { | |
| "type": "string", | |
| "description": "The specific safety warning to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "safety_warning": [ | |
| "user_safety_warnings" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings about the risk of skin cancer due to sun exposure, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(user_safety_warnings:risk of skin cancer due to sun exposure)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the drug names that include a safety warning about contacting a Poison Control Center if swallowed, skipping the first 5 results?", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(user_safety_warnings:contact a Poison Control Center if swallowed)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "List the drugs that have safety warnings about reapplying every 80 minutes, especially after swimming or towel drying.", | |
| "query": { | |
| "name": "get_drug_names_by_user_safety_warning", | |
| "arguments": { | |
| "search": "(user_safety_warnings:reapply every 80 minutes, especially after swimming or towel drying)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "user_safety_warnings", | |
| "FDA", | |
| "UserSafetyWarnings" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_name_by_warnings", | |
| "description": "Retrieve the drug names based on specific warning information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "warning_text": { | |
| "type": "string", | |
| "description": "The warning text to search for in the drug labeling.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "warning_text": [ | |
| "warnings" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the names of drugs that have warnings related to liver damage, with a limit of 3 results?", | |
| "query": { | |
| "name": "get_drug_name_by_warnings", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(warnings:liver damage)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Which medications include warnings about potential allergic reactions, and skip the first 5 results?", | |
| "query": { | |
| "name": "get_drug_name_by_warnings", | |
| "arguments": { | |
| "skip": 5, | |
| "search": "(warnings:allergic reactions)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need a list of drugs that have warnings about high blood pressure, but only show me 4 results starting from the 3rd one.", | |
| "query": { | |
| "name": "get_drug_name_by_warnings", | |
| "arguments": { | |
| "limit": 4, | |
| "skip": 2, | |
| "search": "(warnings:high blood pressure)+AND+(_exists_:openfda.brand_name+_exists_:openfda.generic_name)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "warnings", | |
| "FDA", | |
| "DrugInteractions", | |
| "Warnings", | |
| "WarningsAndCautions" | |
| ] | |
| }, | |
| { | |
| "name": "get_warnings_by_drug_name", | |
| "description": "Retrieve warning information based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "warnings", | |
| "boxed_warning" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "Can you provide the warning information for the drug Naproxen Sodium 220mg, including any potential risks and precautions?", | |
| "query": { | |
| "name": "get_warnings_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Naproxen Sodium 220mg+openfda.generic_name:Naproxen Sodium 220mg)+AND+(_exists_:warnings)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the warnings associated with the use of Equate Honey Lemon Cough Drops, and can you limit the results to 1 and skip the first 1?", | |
| "query": { | |
| "name": "get_warnings_by_drug_name", | |
| "arguments": { | |
| "limit": 1, | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Equate Honey Lemon Cough Drops+openfda.generic_name:Equate Honey Lemon Cough Drops)+AND+(_exists_:warnings)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need detailed warning information for the generic drug Menthol, including any severe side effects. Please provide up to 3 records.", | |
| "query": { | |
| "name": "get_warnings_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:MENTHOL+openfda.generic_name:MENTHOL)+AND+(_exists_:warnings)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "warnings", | |
| "FDA", | |
| "Warnings", | |
| "DrugInteractions", | |
| "DrugAbuseAndDependence" | |
| ] | |
| }, | |
| { | |
| "name": "get_warnings_and_cautions_by_drug_name", | |
| "description": "Retrieve warnings and cautions information for a specific drug based on its name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "warnings_and_cautions" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the warnings and precautions for the drug Flovent Diskus, and can you limit the results to 3?", | |
| "query": { | |
| "name": "get_warnings_and_cautions_by_drug_name", | |
| "arguments": { | |
| "limit": 3, | |
| "search": "(openfda.brand_name:Flovent Diskus+openfda.generic_name:Flovent Diskus)+AND+(_exists_:warnings_and_cautions)+AND+_exists_:openfda", | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide detailed warnings and precautions for the drug Diclofenac Sodium Topical Sol, skipping the first 1 result?", | |
| "query": { | |
| "name": "get_warnings_and_cautions_by_drug_name", | |
| "arguments": { | |
| "skip": 1, | |
| "search": "(openfda.brand_name:Diclofenac Sodium Topical Sol+openfda.generic_name:Diclofenac Sodium Topical Sol)+AND+(_exists_:warnings_and_cautions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "What are the potential risks and necessary precautions for using the medication Mekinist?", | |
| "query": { | |
| "name": "get_warnings_and_cautions_by_drug_name", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Mekinist+openfda.generic_name:Mekinist)+AND+(_exists_:warnings_and_cautions)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "warnings_and_cautions", | |
| "FDA", | |
| "WarningsAndCautions" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_names_by_warnings_and_cautions", | |
| "description": "Retrieve drug names based on specific warnings and cautions information.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "warnings_and_cautions_info": { | |
| "type": "string", | |
| "description": "The warnings and cautions text to search for.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "warnings_and_cautions_info": [ | |
| "warnings_and_cautions" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "warnings_and_cautions", | |
| "FDA", | |
| "WarningsAndCautions" | |
| ] | |
| }, | |
| { | |
| "name": "get_when_using_info", | |
| "description": "Retrieve information about side effects and substances or activities to avoid while using a specific drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "when_using" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "examples": [ | |
| { | |
| "question": "What are the side effects and substances to avoid when using the sunscreen brand 'Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30'?", | |
| "query": { | |
| "name": "get_when_using_info", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30+openfda.generic_name:Neutrogena Mineral Invisible Daily Defense Face Sunscreen Broad Spectrum SPF 30)+AND+(_exists_:when_using)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "Can you provide information on what to avoid and potential side effects when using 'Dragon Pain Relieving Balm', with a limit of 3 records and skipping the first 5?", | |
| "query": { | |
| "name": "get_when_using_info", | |
| "arguments": { | |
| "limit": 3, | |
| "skip": 5, | |
| "search": "(openfda.brand_name:Dragon Pain Relieving Balm+openfda.generic_name:Dragon Pain Relieving Balm)+AND+(_exists_:when_using)+AND+_exists_:openfda", | |
| "sort": null, | |
| "count": null | |
| } | |
| } | |
| }, | |
| { | |
| "question": "I need details on the precautions and side effects for the drug 'Daytime Cold and Flu'.", | |
| "query": { | |
| "name": "get_when_using_info", | |
| "arguments": { | |
| "search": "(openfda.brand_name:Daytime Cold and Flu+openfda.generic_name:Daytime Cold and Flu)+AND+(_exists_:when_using)+AND+_exists_:openfda", | |
| "limit": 1, | |
| "sort": null, | |
| "skip": null, | |
| "count": null | |
| } | |
| } | |
| } | |
| ], | |
| "label": [ | |
| "FDADrugLabel", | |
| "WhenUsing", | |
| "SideEffects", | |
| "SubstanceAvoidance", | |
| "ActivityAvoidance", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_brand_name_generic_name", | |
| "description": "Retrieve the brand name and generic name from generic name or brand name of a drug.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The generic name or the brand name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "BrandName", | |
| "GenericName", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_do_not_use_info_by_drug_name", | |
| "description": "Retrieve information about all contraindications for use based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "do_not_use" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "do_not_use", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_purpose_info_by_drug_name", | |
| "description": "Retrieve about the drug product’s indications for use based on the drug name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The name of the drug.", | |
| "required": true | |
| }, | |
| "limit": { | |
| "type": "integer", | |
| "description": "The number of records to return.", | |
| "required": false | |
| }, | |
| "skip": { | |
| "type": "integer", | |
| "description": "The number of records to skip.", | |
| "required": false | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "purpose" | |
| ] | |
| }, | |
| "type": "FDADrugLabel", | |
| "label": [ | |
| "FDADrugLabel", | |
| "purpose", | |
| "FDA" | |
| ] | |
| }, | |
| { | |
| "name": "get_drug_generic_name", | |
| "description": "Get the drug’s generic name based on the drug's generic or brand name.", | |
| "parameter": { | |
| "type": "object", | |
| "properties": { | |
| "drug_name": { | |
| "type": "string", | |
| "description": "The generic or brand name of the drug.", | |
| "required": true | |
| } | |
| } | |
| }, | |
| "fields": { | |
| "search_fields": { | |
| "drug_name": [ | |
| "openfda.brand_name", | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "return_fields": [ | |
| "openfda.generic_name" | |
| ] | |
| }, | |
| "type": "FDADrugLabelGetDrugGenericNameTool", | |
| "label": [ | |
| "FDADrugLabel", | |
| "purpose", | |
| "FDA" | |
| ] | |
| } | |
| ] |