diff --git a/docker-compose.yml b/docker-compose.yml index ad7569ed..b389860d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -139,6 +139,7 @@ services: - ./utils:/app/utils - ./templates:/app/templates - ./db/recipedb:/app/db + - ./tests:/app/tests volumes: pgdata2: shared-data: \ No newline at end of file diff --git a/management/code_gen.py b/management/code_gen.py new file mode 100644 index 00000000..64d6fec0 --- /dev/null +++ b/management/code_gen.py @@ -0,0 +1,58 @@ +import json +import os +import readline +import shutil +import sys + +import pandas as pd +from dotenv import load_dotenv +from recipe_sync import create_new_recipe, llm_validate_recipe + +load_dotenv() + +input_data = "./tests/humanitarian_user_inputs_short.csv" +work_dir = "./work/checked_out" + +env_cmd = " python " +author = "matt" + +data = pd.read_csv(input_data) + +user_inputs = data["user_input"] + +# +# This code will read an input file of user questions, +# automatically generate recipes and have an LLM review the output +# +# + + +results = [] + +for input in user_inputs[0:3]: + print(input) + + input = input + " /nochecks" + + create_new_recipe(input, author) + print("\n\n") + + # Find most recent directory by timestamp in ./management/work + dirs = os.listdir(work_dir) + dirs = sorted(dirs, key=lambda x: os.path.getmtime(f"{work_dir}/{x}"), reverse=True) + recent_dir = work_dir + "/" + dirs[0] + "/recipe.py" + + validation_result = llm_validate_recipe(input, recent_dir) + + r = { + "input": input, + "validation_result": validation_result["answer"], + "validation_reason": validation_result["reason"], + } + + results.append(r) + + print("\n\n") + +results = pd.DataFrame(results) +results.to_csv("results.csv") diff --git a/management/recipe_sync.py b/management/recipe_sync.py index e67b7836..97d3c0f5 100644 --- a/management/recipe_sync.py +++ b/management/recipe_sync.py @@ -294,7 +294,6 @@ def extract_code_sections(recipe_path): raise ValueError( f"Code separator '{code_separator}' not found in the recipe file '{recipe_path}'." ) - sys.exit() content = content.split("\n") @@ -319,7 +318,6 @@ def extract_code_sections(recipe_path): raise ValueError( f"Function code or calling code not found in the recipe file '{recipe_path}'." ) - sys.exit() return { "function_code": function_code, @@ -1020,7 +1018,6 @@ def create_new_recipe(recipe_intent, recipe_author): print("Running recipe to capture errors for LLM ...") result = run_recipe(recipe_path) - print(result.stderr) # If there was an error, call edit recipe to try and fix it one round if result.returncode != 0: @@ -1101,6 +1098,41 @@ def llm_edit_recipe(recipe_path, llm_prompt, recipe_author): print("\n\nRecipe editing done") +def llm_validate_recipe(user_input, recipe_path): + + recipe_folder = os.path.dirname(recipe_path) + + with open(recipe_path, "r") as file: + recipe_code = file.read() + + metadata_path = os.path.join(recipe_folder, "metadata.json") + with open(metadata_path, "r") as file: + metadata = json.load(file) + + result_type = metadata["sample_result_type"] + result = metadata["sample_result"] + + validation_prompt = environment.get_template("validate_recipe_prompt.jinja2") + prompt = validation_prompt.render( + user_input=user_input, recipe_code=recipe_code, recipe_result=result + ) + + if len(prompt.split(" ")) > 8000: + return { + "answer": "error", + "user_input": user_input, + "reason": "Prompt too long, please shorten recipe code or result", + } + + if result_type == "image": + llm_result = call_llm("", prompt, image=result) + else: + llm_result = call_llm("", prompt) + + print(llm_result) + return llm_result + + def update_metadata_file_results(recipe_folder, output): """ Update the metadata file for a given recipe folder with the provided result. @@ -1118,6 +1150,8 @@ def update_metadata_file_results(recipe_folder, output): with open(metadata_path, "r") as file: metadata = json.load(file) + print(output) + if output["result"]["type"] == "image": png_file = output["result"]["file"] @@ -1304,18 +1338,26 @@ def validate_output(output): # Remove any lines with DEBUG in them output = re.sub(r"DEBUG.*\n", "", output) + error = None + try: output = json.loads(output) print("JSON output parsed successfully") + # Now check for required fields + for f in required_output_json_fields: + if f not in output: + error = f"Output of recipe must contain field {f}" + print(error) + if "type" not in output["result"]: + error = 'Output of recipe must contain field "type" in output["result"]' + print(error) except json.JSONDecodeError: print("Output: \n\n") print(output) - raise ValueError("Output of recipe must be JSON") + error = "Output of recipe must be JSON" + print(error) - # Now check for required fields - for f in required_output_json_fields: - if f not in output: - raise ValueError(f"Output of recipe must contain field {f}") + return error def run_recipe(recipe_path): @@ -1339,8 +1381,23 @@ def run_recipe(recipe_path): if output_start_string in result.stdout: output = result.stdout.split(output_start_string)[1] # output is JSON - validate_output(output) - output = json.loads(output) + error = validate_output(output) + if error is None: + output = json.loads(output) + + # Check for required fields + required_output_json_fields = ["result"] + for f in required_output_json_fields: + if f not in output: + error = f"Output of recipe must contain field {f}" + print(error) + result.stderr += f"{error}" + result.returncode = 1 + break + + else: + result.stderr += f"{error}" + result.returncode = 1 else: error_str = "ERROR: Output of recipe must contain 'OUTPUT:'" print(error_str) @@ -1636,6 +1693,9 @@ def main(): group.add_argument( "--edit_recipe", action="store_true", help="Create a new blank recipe" ) + group.add_argument( + "--validate_recipe", action="store_true", help="Validate a recipe using LLM" + ) group.add_argument( "--info", action="store_true", help="Get information about the data available" ) @@ -1673,7 +1733,7 @@ def main(): elif args.check_in: check_in(args.recipe_author) elif args.create_recipe: - recipe_intent = args.recipe_intent.lower().replace(" ", "_") + recipe_intent = args.recipe_intent.replace(" ", "_").lower() create_new_recipe(recipe_intent, args.recipe_author) elif args.delete_recipe: delete_recipe(args.recipe_custom_id) @@ -1683,6 +1743,9 @@ def main(): save_as_memory(args.recipe_path) elif args.edit_recipe: llm_edit_recipe(args.recipe_path, args.llm_prompt, args.recipe_author) + elif args.validate_recipe: + recipe_intent = args.recipe_intent + llm_validate_recipe(recipe_intent, args.recipe_path) elif args.rebuild: rebuild(args.recipe_author) elif args.dump_db: diff --git a/templates/validate_recipe_prompt.jinja2 b/templates/validate_recipe_prompt.jinja2 new file mode 100644 index 00000000..e4aaebca --- /dev/null +++ b/templates/validate_recipe_prompt.jinja2 @@ -0,0 +1,23 @@ +{# templates/validate_recipe_prompt.jinja2 #} + +The user requested this: + +{{ user_input }} + +The recipe code is: + +{{ recipe_code }} + +The recipe output is: + +{{ recipe_result }} + +Did the recipe output match the user request? + +Provide your answer as a valid JSON string in the following format: + +{ + "answer": "", + "reason": "" + "user_input": "", +} \ No newline at end of file diff --git a/tests/evaluation_files/evaluated_gpt-4o.csv b/tests/evaluation_files/evaluated_gpt-4o.csv new file mode 100644 index 00000000..8259e53a --- /dev/null +++ b/tests/evaluation_files/evaluated_gpt-4o.csv @@ -0,0 +1,281 @@ +user_input,expected_output,actual_similarity_score,actual_output,actual_reason,execution_time_sec +Which organizations are in the most populated states facing severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14688392951869222,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in the most populated states facing severe food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent of identifying organizations in highly populated states with severe food insecurity (IPC Phase 3+).",1.8105218410491943 +Show me the main organizations working in the areas with the highest hunger in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14558855943815585,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show the main organizations working in the areas with the highest hunger in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with identifying organizations in areas with high hunger (IPC Phase 3+).",2.3471858501434326 +Identify the key organizations in Chad's most affected regions by food crisis,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1602562665939331,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify key organizations in Chad's most affected regions by food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in Chad's regions affected by food crisis (IPC Phase 3+).",1.9616990089416504 +What are the top organizations operating in the most food insecure states in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15223565955715146,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify the top organizations operating in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it involves listing organizations in highly food insecure states (IPC Phase 3+).",2.1009018421173096 +List the main aid organizations in Chad's most heavily populated regions with severe food issues,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16845595836639404,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for a list of main aid organizations in Chad's most heavily populated regions with severe food issues. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request for aid organizations in heavily populated regions with severe food issues.",1.870107889175415 +Which NGOs are present in the states with the highest population and food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1607890475031446,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list NGOs present in the states with the highest population and food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify NGOs in highly populated and food-insecure states in Chad.",3.1481540203094482 +Give me a list of organizations in Chad’s top three states with the worst hunger situations,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14242535829544067,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in Chad's top three states with the worst hunger situations. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most critical hunger situations (IPC Phase 3+).",2.1108500957489014 +Who are the major players in the most food insecure and populated areas of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18407351875743239,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major players in the most food insecure and populated areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which addresses both food insecurity (IPC Phase 3+) and population in Chad.",1.7295961380004883 +Can you show me the organizations working in the most populous and hungry regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15203314113419253,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show organizations working in the most populous and hungry regions in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on populous and food-insecure regions in Chad.",1.8545517921447754 +Identify the key humanitarian groups in Chad's worst-hit states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1719042267685148,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify key humanitarian groups in Chad's worst-hit states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with identifying key humanitarian groups in the most affected states by food insecurity.",1.6000580787658691 +Which aid organizations are operating in the states with the highest population and food needs in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15437528271231782,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify aid organizations operating in the states with the highest population and food needs in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it addresses both the population and food needs (IPC Phase 3+ indicates food insecurity) in Chad.",3.8512439727783203 +List the main groups helping in Chad's top three food insecure and populous states,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14561061372851514,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main groups helping in Chad's top three food insecure and populous states. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most populous and food insecure states in Chad.",1.589406967163086 +What are the leading organizations working in the most food insecure regions of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16202398251913008,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify leading organizations working in the most food insecure regions of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides a list of organizations in highly food insecure regions (IPC Phase 3+).",1.5856778621673584 +Show me the main organizations in Chad’s most affected areas by hunger,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16393756866455078,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show the main organizations in Chad’s most affected areas by hunger. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with identifying organizations in the most affected areas by hunger (IPC Phase 3+).",3.8582091331481934 +Who are the major aid organizations in Chad’s regions with the highest food insecurity?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18362045288085938,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major aid organizations in Chad's regions with the highest food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in regions of Chad with high food insecurity (IPC Phase 3+).",1.5776481628417969 +Give me a list of key organizations working in the most food insecure states in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15671658805058897,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is for a list of key organizations working in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it provides a list of organizations in the most food insecure states (IPC Phase 3+ indicates high levels of food insecurity) in Chad.",2.1807029247283936 +Which groups are active in Chad’s most populated regions facing severe hunger?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17491170616535312,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for information about groups active in Chad’s most populated regions facing severe hunger. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides a list of organizations in the most populated regions facing severe hunger (IPC Phase 3+).",2.1048691272735596 +Identify the main humanitarian organizations in the most food insecure areas of Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17305659846313848,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify the main humanitarian organizations in the most food insecure areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it provides a list of organizations in the most food insecure areas (IPC Phase 3+).",1.5325419902801514 +Which NGOs are present in Chad's top regions by population and food crisis?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16463926470768342,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list NGOs in Chad's top regions by population and food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify NGOs in regions with significant population and food crisis issues.",1.7083508968353271 +List the main humanitarian groups in Chad’s most heavily affected states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17404468942220686,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main humanitarian groups in Chad’s most heavily affected states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on the most affected states by food insecurity in Chad.",2.0058140754699707 +Give me an overview of the data available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14336121936805213,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is for an overview of the data available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for an overview of data for the specified region.,1.611495018005371 +Summarize the key information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14883222607792512,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of key information for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.2347161769866943 +Can you provide a summary of the data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12610316678667588,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of the data for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.0659699440002441 +What does the data say about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.16895768087345464,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's intent is to get information about Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for data about Wadi Fira.,1.4886646270751953 +Give me a brief on the main data points for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17035293579100974,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a brief on the main data points for Wadi Fira. The closest match is providing a text summary of metadata for Wadi Fira using HAPI data as text, which aligns with the user's intent to get a summary of data points.",2.290761947631836 +What are the important details available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1801554638471644,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for important details available for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.1567931175231934 +Summarize the metadata for Wadi Fira for me,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.10122407086038854,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a text summary of metadata for Wadi Fira, and option 1 provides exactly that using HAPI data.",1.5372049808502197 +provide an overview of the key data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13290010298486832,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for an overview of key data for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.3348023891448975 +What information is available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1701631254249425,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for information available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the user's request for information about Wadi Fira.",1.43812894821167 +Give me a rundown of the main data on Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.15686552138914323,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a rundown of the main data on Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.3339509963989258 +Can you provide a summary of Wadi Fira's metadata?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.09964011911865067,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of Wadi Fira's metadata, and the first option provides a text summary of metadata for Wadi Fira using HAPI data.",1.0313479900360107 +What are the key data points for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17840763073058497,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's intent is to get key data points for Wadi Fira. The closest match is providing a text summary of metadata for Wadi Fira, which aligns with the user's request for key data points.",1.1302430629730225 +Summarize the available information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1410933732986389,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is to summarize the available information for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for a summary of information for Wadi Fira.,1.4605481624603271 +What does the metadata reveal about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1506651133695297,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's intent is to understand what the metadata reveals about Wadi Fira. The first option provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's request.",1.2423181533813477 +Give me the main data summary for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12452890333159827,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a main data summary for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.511162281036377 +provide the key details from the data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1391606413817773,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is to provide key details from the data for Wadi Fira. The closest match is to provide a text summary of metadata for Wadi Fira using HAPI data as text, which aligns with the user's intent to get key details.",1.4436297416687012 +What is the summary of data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12767703102093964,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a summary of data for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's intent.",1.2006123065948486 +Give me a concise overview of Wadi Fira's data,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13609006454170747,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a concise overview of Wadi Fira's data, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.3945741653442383 +Summarize the information available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13730729328886626,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of information available for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.105470895767212 +What does the available data show for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17025285072708318,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is about available data for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the user's intent to know what the available data shows for Wadi Fira.",3.1904456615448 +I want to understand the interplay of food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15866026755154894,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked to understand the interplay of food prices and fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.777940034866333 +How is the number of deaths related to food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17404484748840332,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between the number of deaths and food prices in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which includes a regression line to show the relationship.",1.1692569255828857 +Do fatality rates influence food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.187474168840144,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked if fatality rates influence food prices in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line, which directly addresses the relationship between fatalities and food prices in Chad.",1.4747021198272705 +Can you show me how food prices and death rates are connected in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1750018946827019,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and death rates in Chad. Match 1 specifically plots a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",1.1855230331420898 +What is the relationship between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16039432051147795,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the relationship between food prices and fatalities in Chad, which is best represented by a scatterplot showing the correlation between these two variables. Match 1 specifically addresses this by plotting a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.658310890197754 +How do changes in food prices affect the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1882852782266058,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an analysis of how changes in food prices affect the number of deaths in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between food prices and fatalities.",1.2278547286987305 +Show me the correlation between food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1350169101347365,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",The user asked for a correlation between food prices and fatalities in Chad. The first option matches this request as it involves plotting a scatterplot of food price movements and number of fatalities in Chad (TCD) including a regression line.,1.443620204925537 +What is the link between food costs and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1862532385436736,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the link between food costs and death rates in Chad, which is best matched by a scatterplot of food price movements and number of fatalities in Chad.",1.0669150352478027 +Can you explain how food prices relate to fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16806079960593578,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an explanation of how food prices relate to fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly relates to the user's request.",1.1310060024261475 +How are food prices and death rates related in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17993037521216315,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between food prices and death rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.2475230693817139 +What does the data say about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15027611552023046,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for data on food prices and fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.258896827697754 +Show me how food prices and fatality numbers are related in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15279410448144015,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the relationship between food prices and fatality numbers in Chad. Match 2 specifically provides a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.5072309970855713 +How does the change in food prices correlate with deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17682633676214388,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a correlation between food prices and deaths in Chad. The first option provides a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",1.2149670124053955 +What can we learn about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15639662742614746,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about food prices and fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, which directly addresses both food prices and fatalities in the specified country.",1.358124017715454 +How are fatalities influenced by food price changes in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17192513775379137,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user's intent is to understand the influence of food price changes on fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.3238558769226074 +What is the interplay between food prices and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17490325273236018,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the interplay between food prices and death rates in Chad, which is best matched by a scatterplot of food price movements and number of fatalities in Chad.",1.5297489166259766 +How do food prices impact fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1715727737713728,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about the impact of food prices on fatality rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly relates to the user's request.",1.242384910583496 +Explain the relationship between food costs and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16774778558326897,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an explanation of the relationship between food costs and fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.502375841140747 +What connection is there between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16760204224561548,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and fatalities in Chad, which is best matched by a scatterplot showing the relationship between food price movements and the number of fatalities in Chad.",1.4362742900848389 +Can you show the impact of food prices on fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15500609219001027,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the impact of food prices on fatalities in Chad. Match 1 specifically requests a scatterplot of food price movements and number of fatalities in Chad (TCD), including a regression line, which directly aligns with the user's intent.",1.5963199138641357 +Which humanitarian organizations are working in Wadi Fira and what do they focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12771765984928363,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know which humanitarian organizations are working in Wadi Fira and what they focus on. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad' because it directly addresses the user's request for information about organizations in Wadi Fira, although it is specific to food security.",2.3749969005584717 +Show me the different sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.09834078833527105,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,The user asked to show the different sectors of humanitarian organizations in Wadi Fira. The best match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image' because it directly addresses the user's request by providing a visual representation of the sectors of humanitarian organizations in the specified region.,1.57926607131958 +What are the main areas of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1409584195849829,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to know the main areas of work for humanitarian organizations in Wadi Fira. The closest match is to plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image, which provides a visual representation of the main areas of work.",1.8221960067749023 +Can you list the types of aid provided by organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What sectors are humanitarian groups in Wadi Fira involved in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12913451269842557,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's intent is to know the sectors humanitarian groups are involved in within Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",1.3874008655548096 +Give me an overview of humanitarian organizations in Wadi Fira by sector,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10142976650176883,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to get an overview of humanitarian organizations in Wadi Fira by sector. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image'. This match provides the same information requested by the user, specifically for Wadi Fira and by sector.",2.170635938644409 +What are the different focuses of aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13075080651063453,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to know the different focuses of aid organizations in Wadi Fira. The closest match is to provide a list of organizations providing food security in Wadi Fira, Chad, which is a specific focus of aid organizations in that region.",1.5672309398651123 +Show me the humanitarian organizations in Wadi Fira and their sectors,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10227082703571921,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to show humanitarian organizations in Wadi Fira and their sectors. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image', which directly addresses the user's request by providing a visual representation of the organizations and their sectors in the specified region.",1.8641390800476074 +Which sectors do the humanitarian groups in Wadi Fira work in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Can you list the sectors of humanitarian work in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What are the key sectors for aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.14259065897352785,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for key sectors for aid organizations in Wadi Fira, and the closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request for key sectors.",2.9707019329071045 +What do the humanitarian organizations in Wadi Fira specialize in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13320499255865348,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is about the specialization of humanitarian organizations in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request by specifying the type of specialization (food security) in the same region (Wadi Fira, Chad).",1.52274489402771 +Give me details on the sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.11666230410298095,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for details on the sectors of humanitarian organizations in Wadi Fira, and option 2 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly matches the user's request.",1.296105146408081 +What are the main focuses of humanitarian groups in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Which areas are the humanitarian organizations in Wadi Fira working on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1320048210629362,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for areas humanitarian organizations are working on in Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which provides information on the areas/sectors they are working on.",1.3253657817840576 +Can you show me the sectors of aid provided in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.15426883323152507,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for the sectors of aid provided in Wadi Fira, and the closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request for sector information.",1.8457610607147217 +What are the sectors of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12757651158360894,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to know the sectors of work for humanitarian organizations in Wadi Fira. The first option matches this request as it involves plotting a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's query.",1.4562859535217285 +Show me the areas of focus for humanitarian groups in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12220009366274154,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for areas of focus for humanitarian groups in Wadi Fira, which aligns with plotting a bar chart of humanitarian organizations in Wadi Fira by sector.",1.1353061199188232 +Which sectors do aid organizations in Wadi Fira focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1504316150627535,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for sectors that aid organizations focus on in Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request for sector information.",1.2962138652801514 +What are the humanitarian sectors present in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12968359831766485,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to know the humanitarian sectors present in Wadi Fira. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image', which directly addresses the sectors in Wadi Fira.",1.970337152481079 +Show me the flow of migrants for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1259356436882807,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the flow of migrants for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.2190327644348145 +I want to understand the migration situation in Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17784565687178977,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user wants to understand the migration situation in Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.2535557746887207 +To which countries did Kenyan migrants move how often,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17670038163058943,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on Kenyan migrants and their destinations, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.3470978736877441 +What does the migration pattern look like for Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.15193540384692983,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration pattern for Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses this request by providing a specific type of plot (Sankey plot) for the migration pattern in Kenya.",1.6900739669799805 +Can you show me where Kenyan migrants are going?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18242054090377302,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on where Kenyan migrants are going, which matches the request to create a sankey plot of refugee migration by country for Kenya.",1.4244422912597656 +Where do most Kenyan migrants end up?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18665020545421662,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where most Kenyan migrants end up, which aligns with creating a sankey plot of refugee migration by country for Kenya. This visual representation will show the flow of migrants from Kenya to other countries.",1.2748229503631592 +Show me the main destinations for migrants from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1503522723283266,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main destinations for migrants from Kenya, which aligns with creating a sankey plot of refugee migration by country for Kenya.",0.9160158634185791 +What is the migration flow from Kenya to other countries?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16317101277957125,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration flow from Kenya to other countries, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.1687469482421875 +Can you illustrate the migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1368142284861652,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an illustration of migration paths from Kenya, and the best match is to create a sankey plot of refugee migration by country for Kenya using HAPI data as an image. This matches the user's request for illustrating migration paths from Kenya.",1.4113678932189941 +Where are Kenyan migrants moving to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18460296484214134,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants are moving to, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0013279914855957 +Show me the migration destinations for people from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.152671607851097,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration destinations for people from Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses this request.",1.225862979888916 +What countries are receiving migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1817801703083486,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information about countries receiving migrants from Kenya. The closest match is 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image', which directly addresses the migration aspect and involves Kenya.",1.7023711204528809 +Where do Kenyan migrants primarily go?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1957587003707829,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants primarily go, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.159301996231079 +Give me an overview of migration routes from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16255264505430045,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an overview of migration routes from Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' provides a specific visualization of migration routes from Kenya.",2.23868989944458 +What are the main migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17466803201006498,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main migration paths from Kenya, which aligns with creating a sankey plot of refugee migration by country for Kenya. This provides a visual representation of migration paths.",1.0380077362060547 +Where have Kenyan migrants moved to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18386891176660303,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants have moved to, which aligns with creating a sankey plot of refugee migration by country for Kenya.",0.9841821193695068 +Show me the migration trends for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.14462368818380156,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration trends for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.3285362720489502 +Where are the majority of Kenyan migrants heading?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18759665452231022,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where the majority of Kenyan migrants are heading, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0567550659179688 +Can you display the migration flow from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1440768156005835,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked to display the migration flow from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.3242769241333008 +What are the destinations for migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1791884654518413,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the destinations for migrants from Kenya, which matches the request to create a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.428170919418335 +Show me the areas in Chad with severe food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17909228801727295,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show areas in Chad with severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it directly relates to food insecurity in Chad and provides information about the most affected areas.",1.5501110553741455 +Where are the regions in Chad facing IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.16758341112981057,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for regions in Chad facing IPC Phase 3 conditions, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad.",1.0682399272918701 +Map out the regions with critical food insecurity in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18955782776381058,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out regions with critical food insecurity in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.5602641105651855 +Can you show the IPC Phase 3 areas in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1397610050368605,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to show IPC Phase 3 areas in Chad, which matches the request to plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.2626748085021973 +Which regions in Chad are experiencing severe hunger?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Give me a map of the most food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1942359209060669,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of the most food insecure areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image. IPC phase 3 data is related to food insecurity.",1.597337007522583 +Highlight the regions in Chad with high food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show the regions with severe food issues in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Where are the IPC Phase 3 areas located in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1615815662395006,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for the location of IPC Phase 3 areas in Chad, which corresponds to plotting a map of IPC phase 3 data by admin_1 in Chad.",1.1739180088043213 +Map the areas facing severe food shortages in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +What are the regions in Chad with the highest food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show me the most affected food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Where in Chad are the IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17224903768321598,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,The user asked for the locations in Chad with IPC Phase 3 conditions. The best match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image' because it directly addresses the user's request by providing a visual representation of IPC Phase 3 conditions in Chad.,1.6241118907928467 +Give me a map of the regions with severe hunger in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1988207579361927,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of regions with severe hunger in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad. IPC phase 3 data typically represents areas with severe food insecurity, which can be interpreted as severe hunger.",2.1027019023895264 +Highlight the IPC Phase 3 regions in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.11683962793704172,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to highlight IPC Phase 3 regions in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.1621308326721191 +Show the regions in Chad with critical food insecurity issues,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.2002660513558283,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for regions in Chad with critical food insecurity issues, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.0890092849731445 +Where are the most food insecure regions in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18499653205244204,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for the most food insecure regions in Chad, which aligns with identifying regions in IPC Phase 3+ in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it directly relates to food insecurity in Chad.",1.7910101413726807 +Map out the critical food insecurity areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18623349420429847,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out the critical food insecurity areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image. IPC phase 3 data is related to food insecurity, and the request is specific to Chad.",1.897508144378662 +What regions in Chad are facing severe food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.19273213234756226,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's intent is to find out which regions in Chad are facing severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it provides information about regions in Chad that are in IPC Phase 3+, which indicates severe food insecurity.",1.7389717102050781 +Show me where the severe food insecurity areas are in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Which organizations are working on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06640053982742844,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know which organizations are working on food security in Wadi Fira. The first option directly provides a list of organizations providing food security in Wadi Fira, Chad, which is an exact match.",1.5855650901794434 +List the groups providing food aid in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09017509759512066,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to list the groups providing food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.276047945022583 +Who is helping with food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09434747246286668,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out who is helping with food security in Wadi Fira. The first match provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.3593969345092773 +Can you give me a list of food security organizations in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.05491490481254502,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is for a list of food security organizations in Wadi Fira. Match 1 provides exactly that: a list of organizations providing food security in Wadi Fira, Chad.",1.2350049018859863 +Which NGOs are focused on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08383613592974781,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for NGOs focused on food security in Wadi Fira, and the first option provides a list of organizations providing food security in Wadi Fira, Chad, which is a direct match.",1.2939200401306152 +Show me the organizations ensuring food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0623438432626271,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for organizations ensuring food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.4954707622528076 +Who are the key players in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.1153868643141005,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify key players in food security in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's intent by providing a list of relevant organizations in the specified region.",1.578610897064209 +Give me a list of groups working on food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07258529768917821,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for a list of groups working on food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad. This is a direct match.",1.2176470756530762 +Who is providing food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09920932636426316,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information about organizations providing food aid in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.384958028793335 +Which organizations are addressing food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06779925853589774,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for organizations addressing food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.2805418968200684 +List the main food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.05913432919623118,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for a list of main food security organizations in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.1786508560180664 +Who are the food security providers in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08496041625028872,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for food security providers in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.6199958324432373 +Which groups are active in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09848037903799256,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for groups active in food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.2554121017456055 +Show me the key food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0778509242819585,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for key food security organizations in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",2.9129767417907715 +Who is working on food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.11319193637130587,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information about who is working on food aid in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.5873792171478271 +Can you list the food security groups in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08399315190191325,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list food security groups in Wadi Fira. The closest match is to provide a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's intent.",1.645914077758789 +Who are the main organizations for food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07422853401044771,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for the main organizations for food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.284193992614746 +Which NGOs are involved in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08439027257071186,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify NGOs involved in food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.3381190299987793 +Give me the list of food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0480841455559633,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for a list of food security organizations in Wadi Fira, and match 1 provides exactly that.",1.00779390335083 +Who is ensuring food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09739859653684779,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information about who is ensuring food security in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.2471261024475098 +Show me the population distribution in Haiti by region,plot a map of population by admin1 for Haiti using HAPI data as an image,0.12113705185343071,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to show the population distribution in Haiti by region, which matches the intent of plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.2564187049865723 +Map the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09476172924039172,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a map of population by region in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data.",1.059739112854004 +Where are the most populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18598409724045384,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to find the most populated areas in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image' because it directly addresses the user's request by providing a map of population distribution in Haiti.,1.2754340171813965 +Can you show a population map of Haiti by region?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.12033611536023503,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by region, and match 1 specifically mentions plotting a map of population by admin1 for Haiti using HAPI data as an image, which aligns with the user's request.",1.267622947692871 +Give me a map of population density in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1095961462969891,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to plot a map of population density in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's intent to visualize population data on a map for Haiti.",1.5095980167388916 +Highlight the population distribution across Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11190411803248901,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to highlight the population distribution across Haiti, which aligns with plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.081084966659546 +Show the regions with the highest population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.13739446101056596,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to show the regions with the highest population in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's request to show population distribution by region in Haiti.",1.3945059776306152 +Where is the population concentrated in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18000089824212728,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to find out where the population is concentrated in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image' because it directly addresses the user's request by providing a map of population distribution in Haiti.,1.571702003479004 +Map out the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.10885230740557772,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked to map out the population by region in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.1828749179840088 +What are the most populous areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1921811092169713,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find the most populous areas in Haiti, which can be addressed by plotting a map of population by admin1 for Haiti.",1.49721097946167 +Show me the population map of Haiti by regions,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11270788018891342,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by regions, and match 1 specifically provides a map of population by admin1 for Haiti using HAPI data.",1.123504877090454 +Where are the densely populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18620130769037602,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find densely populated areas in Haiti, which can be addressed by plotting a map of population by admin1 for Haiti.",1.0452351570129395 +Highlight the population density regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11594445204402293,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to highlight the population density regions in Haiti, which aligns with plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.8176698684692383 +Give me the population distribution map for Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09838648996031041,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population distribution map for Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.315093994140625 +Where are the population clusters in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1608519495803009,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find population clusters in Haiti, which can be visualized by plotting a map of population by administrative divisions. Match 1 specifically addresses this by plotting a map of population by admin1 for Haiti.",2.560393810272217 +Show the population spread by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1070148412593962,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to show the population spread by region in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's request for population spread by region in Haiti.",1.5162749290466309 +Map the regions by population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09933948516843139,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a map of regions by population in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti.",1.369493007659912 +Where is the population density highest in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18239533376554518,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the highest population density in Haiti, which can be visualized by plotting a map of population by admin1 for Haiti.",1.1929359436035156 +Show me the most populated regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.15624364092869647,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to show the most populated regions in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population by administrative regions in Haiti.",1.3966169357299805 +Give me a population map of Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09836306532932881,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti, and option 1 specifically matches this request by providing a map of population by admin1 for Haiti.",1.2143049240112305 +Show me the age distribution in Chad,plot population pyramids by age for Chad using HDX data as an image,0.1132439509921015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be represented by a population pyramid. The first option matches this request exactly by plotting population pyramids by age for Chad using HDX data.",1.2544376850128174 +What is the population breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1321744480341015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population breakdown by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.096350908279419 +Can you provide an age pyramid for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.10146880149840665,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age pyramid for Chad, and option 1 matches this request exactly by specifying 'plot population pyramids by age for Chad using HDX data as an image'.",1.2282037734985352 +Show the age demographics of Chad,plot population pyramids by age for Chad using HDX data as an image,0.12372058629989002,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age demographics of Chad, which aligns with plotting population pyramids by age for Chad.",1.0447051525115967 +Give me the population age structure in Chad,plot population pyramids by age for Chad using HDX data as an image,0.12691289942937334,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population age structure in Chad, which is equivalent to plotting population pyramids by age for Chad.",1.092635154724121 +What does the age distribution look like in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13506482421576615,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be visualized using a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.2958049774169922 +Show the age groups within the population of Chad,plot population pyramids by age for Chad using HDX data as an image,0.09969804294150242,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age groups within the population of Chad, which aligns with plotting population pyramids by age for Chad.",1.2275400161743164 +How is the population divided by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13396272276942656,plot population pyramids by age for Chad using HDX data as an image,"The user asked about the population divided by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.4495489597320557 +What are the age demographics for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.15219980478286144,plot population pyramids by age for Chad using HDX data as an image,"The user asked for age demographics for Chad, which can be visualized using a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.2600212097167969 +Can you illustrate the age distribution in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1116288503936842,plot population pyramids by age for Chad using HDX data as an image,"The user asked to illustrate the age distribution in Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.137389898300171 +Show me the population pyramid for Chad,plot population pyramids by age for Chad using HDX data as an image,0.10859505312994555,plot population pyramids by age for Chad using HDX data as an image,"The user asked for a population pyramid for Chad, and option 1 matches this request exactly by specifying a population pyramid for Chad using HDX data.",1.5196552276611328 +What is the age structure of the population in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13935953378676758,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age structure of the population in Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.492300033569336 +Give me the age distribution chart for Chad,plot population pyramids by age for Chad using HDX data as an image,0.13010697781400615,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age distribution chart for Chad, which is equivalent to a population pyramid by age for Chad.",1.422248125076294 +How does the population divide by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.12983063522025617,plot population pyramids by age for Chad using HDX data as an image,"The user asked about the population divide by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.382422685623169 +Show the different age groups in Chad's population,plot population pyramids by age for Chad using HDX data as an image,0.10571915541405252,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the different age groups in Chad's population, which aligns with plotting population pyramids by age for Chad.",1.0802197456359863 +What is the demographic breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13614463806151733,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the demographic breakdown by age in Chad, which can be visualized using a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.468325138092041 +provide the age distribution for Chad,plot population pyramids by age for Chad using HDX data as an image,0.12044090032576893,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution for Chad, which can be represented by a population pyramid. The closest match is 'plot population pyramids by age for Chad using HDX data as an image'.",1.2846813201904297 +What is the population structure by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1290196853291785,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which is equivalent to plotting population pyramids by age for Chad.",1.0803418159484863 +Show the demographics of Chad by age groups,plot population pyramids by age for Chad using HDX data as an image,0.10181726238933353,plot population pyramids by age for Chad using HDX data as an image,"The user asked for demographics of Chad by age groups, which aligns with plotting population pyramids by age for Chad.",1.1499159336090088 +How is the population structured by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13398526501828767,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.0055689811706543 +How many deaths occurred each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14315749908760067,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",0.878342866897583 +Show me the monthly fatalities in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09997447132599946,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a plot of monthly fatalities in Chad, and option 1 matches this request exactly by specifying a line chart of fatalities by month for Chad.",1.1861438751220703 +Can you provide the death toll by month for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1240375564075833,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the death toll by month for Chad, which matches the request to plot a line chart of fatalities by month for Chad using HDX data as an image.",1.6122050285339355 +What is the trend of fatalities in Chad by month?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10986671212513155,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the trend of fatalities in Chad by month, and option 1 directly matches this request by plotting a line chart of fatalities by month for Chad using HDX data.",1.4176459312438965 +Show the monthly death numbers for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10946195665227199,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death numbers for Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data as an image.",1.2029521465301514 +Give me the number of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.12180277781420279,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities per month in Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.1705360412597656 +What are the monthly death statistics for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13465260485592023,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death statistics for Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",2.0178489685058594 +How many people died each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1501407265327629,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of people who died each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",1.115433931350708 +Show the fatality trend in Chad by month,plot a line chart of fatalities by month for Chad using HDX data as an image,0.08784706971286993,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and option 1 matches this request exactly.",1.4369137287139893 +Can you give me the monthly fatality data for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.11388903856274946,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatality data for Chad, and the closest match is 'plot a line chart of fatalities by month for Chad using HDX data as an image', which directly addresses the user's request.",1.3502039909362793 +What is the monthly death count in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1434067062623795,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the monthly death count in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.2942490577697754 +Show me the number of deaths by month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.11586961367854742,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths by month in Chad, which matches exactly with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.3517050743103027 +How did the fatalities change each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.12204363285194697,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and match 1 specifically provides this.",1.89304780960083 +Give me the monthly fatalities for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10989885212196049,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatalities for Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.3071250915527344 +What are the death numbers per month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14885427091888304,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for death numbers per month in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.1939408779144287 +How many fatalities were there each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13502858459608125,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",1.2128219604492188 +Show the trend of monthly deaths in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10357218363449427,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked to show the trend of monthly deaths in Chad, which matches exactly with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.2457232475280762 +Can you show the number of fatalities by month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10902590971102677,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and option 1 matches this request exactly.",1.4276647567749023 +What are the monthly death figures for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,,,, +Show me the trend of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09959479584879383,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a trend of fatalities per month in Chad, and match 1 specifically addresses this by plotting a line chart of fatalities by month for Chad using HDX data.",1.4208228588104248 +What is the total population of Mali?,provide the total population of Mali using HDX data as text,0.13386799500793578,provide the total population of Mali using HDX data as text,"The user's request is to know the total population of Mali. The best match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.5904269218444824 +How many people live in Mali?,provide the total population of Mali using HDX data as text,0.16415153331378063,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.3470780849456787 +Give me the population count for Mali,provide the total population of Mali using HDX data as text,0.11411645749005128,provide the total population of Mali using HDX data as text,"The user asked for the population count for Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.2093889713287354 +Can you tell me the total number of people in Mali?,provide the total population of Mali using HDX data as text,0.13749774768904455,provide the total population of Mali using HDX data as text,"The user asked for the total number of people in Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.311736822128296 +What is the population size of Mali?,provide the total population of Mali using HDX data as text,0.13844492434811295,provide the total population of Mali using HDX data as text,"The user asked for the population size of Mali, and there is a match that provides the total population of Mali using HDX data as text.",1.0877041816711426 +provide the total number of inhabitants in Mali,provide the total population of Mali using HDX data as text,0.1019667751670208,provide the total population of Mali using HDX data as text,"The user's request is to provide the total number of inhabitants in Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.212228775024414 +How large is the population of Mali?,provide the total population of Mali using HDX data as text,0.14625735033498788,provide the total population of Mali using HDX data as text,"The user asked for the population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.2271628379821777 +What is the current population of Mali?,provide the total population of Mali using HDX data as text,0.25165276219530197,provide the total population of a provided country using HDX data as text,"The user asked for the current population of Mali, and the closest match is to provide the total population of a provided country using HDX data as text.",1.4169361591339111 +Tell me the total population of Mali,provide the total population of Mali using HDX data as text,0.1200689506777286,provide the total population of Mali using HDX data as text,"The user's request is to know the total population of Mali. The best match from the list is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",4.582027912139893 +What is Mali's population?,provide the total population of Mali using HDX data as text,0.14526207120781087,provide the total population of Mali using HDX data as text,"The user asked for the population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.1065800189971924 +Can you give me the population figure for Mali?,provide the total population of Mali using HDX data as text,0.12348784488289055,provide the total population of Mali using HDX data as text,"The user's request is for the population figure of Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.369549036026001 +How many individuals live in Mali?,provide the total population of Mali using HDX data as text,0.26505327224730924,provide the total population of a provided country using HDX data as text,"The user asked for the total population of Mali, and there is a match that provides the total population of a provided country using HDX data as text.",1.227867841720581 +What is the overall population of Mali?,provide the total population of Mali using HDX data as text,0.14203032410683236,provide the total population of Mali using HDX data as text,"The user asked for the overall population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.1949129104614258 +Give me the total population number for Mali,provide the total population of Mali using HDX data as text,0.10356546682894063,provide the total population of Mali using HDX data as text,"The user's request is to get the total population number for Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.159998893737793 +What is the headcount of people in Mali?,provide the total population of Mali using HDX data as text,0.15115294137824264,provide the total population of Mali using HDX data as text,"The user asked for the headcount of people in Mali, which is equivalent to providing the total population of Mali. The match 'provide the total population of Mali using HDX data as text' directly addresses this request.",1.3097190856933594 +Can you provide the population data for Mali?,provide the total population of Mali using HDX data as text,0.18707165872196452,provide the total population of a provided country using HDX data as text,"The user's request is for population data for Mali. The closest match is 'provide the total population of a provided country using HDX data as text', which is a generic skill that can be used to fulfill the user's request.",1.352311611175537 +What is the number of people living in Mali?,provide the total population of Mali using HDX data as text,0.25326101462477224,provide the total population of a provided country using HDX data as text,"The user asked for the total population of Mali, and there is a match that provides the total population of a provided country using HDX data as text.",1.2130897045135498 +How many people are there in Mali?,provide the total population of Mali using HDX data as text,0.16471919382554046,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali. The first option provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.6104419231414795 +Give me the total number of residents in Mali,provide the total population of Mali using HDX data as text,0.12815815974216982,provide the total population of Mali using HDX data as text,"The user asked for the total number of residents in Mali, which matches with providing the total population of Mali using HDX data as text.",1.1655850410461426 +What is the total population figure for Mali?,provide the total population of Mali using HDX data as text,0.12535156313790008,provide the total population of Mali using HDX data as text,"The user's intent is to get the total population figure for Mali. The best match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",2.416259765625 +Get all the available data retrieval methods,retrieve all recipes,0.2665368974324773,provide a text summary of metadata by subnational region using HAPI data as text,"The user's intent is to get all available data retrieval methods, which matches with the generic skill of providing a text summary of metadata by subnational region using HAPI data as text.",2.724644899368286 +Show me all the data extraction techniques,retrieve all recipes,,,, +Can you list all the available data queries?,retrieve all recipes,,,, +What are all the ways to get data?,retrieve all recipes,,,, +Give me all the data access methods,retrieve all recipes,,,, +retrieve all the available queries,retrieve all recipes,,,, +Show all the methods for data retrieval,retrieve all recipes,,,, +List all the data extraction methods,retrieve all recipes,,,, +What are the different ways to get data?,retrieve all recipes,,,, +Can you provide all data query options?,retrieve all recipes,,,, +Get all available data methods,retrieve all recipes,,,, +Show me all data access techniques,retrieve all recipes,,,, +List all the ways to retrieve data,retrieve all recipes,,,, +What are the various data retrieval methods?,retrieve all recipes,,,, +Can you list all data access options?,retrieve all recipes,,,, +Give me all methods to extract data,retrieve all recipes,,,, +retrieve all available data queries,retrieve all recipes,,,, +Show all the data extraction techniques,retrieve all recipes,,,, +List all available data retrieval options,retrieve all recipes,0.24809573602104562,provide a text summary of metadata by subnational region using HAPI data as text,"The user's request is to list all available data retrieval options, which matches with 'provide a text summary of metadata by subnational region using HAPI data as text'. This option provides a summary of metadata, which aligns with listing available data retrieval options.",1.3413269519805908 +What are the methods for accessing data?,retrieve all recipes,,,, +How many violent outbreaks were there in Chad in the last years?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.21151504550919042,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of violent outbreaks in Chad in the last years. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which provides a visual representation of conflict events over time in Chad.",1.2576968669891357 +I need to know how many attacks happened in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.19256351082759393,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of attacks in Chad, which can be inferred from the number of conflict events. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.45420503616333 +Please create an image that shows the number of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1041509695322912,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for an image showing the number of conflict events in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which aligns with the user's request for conflict events in Chad.",1.4522569179534912 +Show me the monthly conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11410415852690525,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of monthly conflict events in Chad, and option 1 matches this request exactly by specifying a line chart of conflict events by month for Chad.",1.3876781463623047 +How often did conflict events occur in Chad by month?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13464683294296265,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, which exactly matches the description in option 1.",0.8722748756408691 +Give me the number of monthly conflict incidents in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14546704292297363,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of monthly conflict incidents in Chad, which aligns with plotting a line chart of conflict events by month for Chad using HDX data as an image.",1.1287167072296143 +What is the monthly trend of conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13332903385162354,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the monthly trend of conflict events in Chad, and match 1 specifically addresses this by plotting a line chart of conflict events by month for Chad using HDX data.",3.4185643196105957 +Show the number of conflict occurrences by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10412169744034339,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user's intent is to show the number of conflict occurrences by month in Chad. The best match is 'plot a line chart of conflict events by month for Chad using HDX data as an image' because it directly addresses the user's request with the same type of plot, data, and country.",1.3776218891143799 +How many conflicts happened each month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14554936561282517,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.286168098449707 +Give me a monthly breakdown of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12146102658146307,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a monthly breakdown of conflict events in Chad, and option 1 specifically matches this request by plotting a line chart of conflict events by month for Chad using HDX data.",1.0202250480651855 +What is the trend of monthly conflict incidents in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.15278301098296043,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the trend of monthly conflict incidents in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.3504998683929443 +Show me the conflict events in Chad month by month,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10790667816633648,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, and option 1 matches this request exactly.",0.8038098812103271 +How did conflict events vary by month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1399272084236145,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, and option 1 matches this request exactly.",1.0930061340332031 +What are the monthly conflict figures for Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12858678443273697,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for monthly conflict figures for Chad, and option 1 matches this request by plotting a line chart of conflict events by month for Chad using HDX data.",1.0927879810333252 +Show the trend of conflict events per month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.09311307586586737,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a trend of conflict events per month in Chad, and match 1 specifically addresses this by plotting a line chart of conflict events by month for Chad using HDX data.",1.2606439590454102 +Give me the number of conflicts each month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12976396083831787,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.3150768280029297 +How many conflict events occurred monthly in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1326707084578682,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflict events occurring monthly in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.3397870063781738 +Show me the number of conflicts by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11145560604862459,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts by month in Chad, and match 1 specifically addresses plotting a line chart of conflict events by month for Chad using HDX data.",1.1413898468017578 +What is the pattern of monthly conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14426284168583947,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the pattern of monthly conflict events in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.1920130252838135 +Give me a chart of conflict events by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.0899774432182312,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a chart of conflict events by month in Chad, and option 1 matches this request exactly.",0.9467518329620361 +How have commodity prices changed monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10973561464164183,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user's intent is to see how commodity prices have changed monthly in Chad since 2008. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the correct country, time frame, and data type.",1.4144132137298584 +Show me the monthly changes in commodity prices in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10387350366991799,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to see the monthly changes in commodity prices in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly changes in commodity prices in Chad.,1.4167768955230713 +What is the trend of commodity prices in Chad by month?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12242199449801383,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the trend of commodity prices in Chad by month, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.1865119934082031 +Can you provide a chart of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10320079326629006,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user's request is for a chart of monthly commodity price changes in Chad. The first option matches this request exactly, specifying a line chart of commodity prices monthly relative change for Chad.",1.4341089725494385 +How did commodity prices fluctuate monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13817284020667298,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a line chart of commodity prices' monthly fluctuations in Chad, which matches the request for a line chart of commodity prices' monthly relative change for Chad.",1.2590610980987549 +Give me the monthly relative change in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10639017820357644,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly relative change in commodity prices for Chad, and match 1 provides exactly that information.",1.3038771152496338 +What is the monthly trend of commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11355739155068223,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly trend of commodity price changes in Chad, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.2955420017242432 +Show the monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10063135623931241,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to show the monthly commodity price variations in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly commodity price variations in Chad.,1.4905259609222412 +How have the commodity prices shifted monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12824495175420658,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a line chart of commodity prices' monthly shifts in Chad, which matches the request for a line chart of commodity prices' monthly relative change for Chad from 2008-01-01 using HDX data.",1.3000729084014893 +provide the monthly changes in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11187844801672187,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to provide the monthly changes in commodity prices for Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly changes in commodity prices for Chad.,2.7491183280944824 +What is the pattern of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12405371665953968,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the pattern of monthly commodity price changes in Chad, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.3351209163665771 +Show me the relative change in commodity prices by month in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1018724027643908,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the relative change in commodity prices by month in Chad, and match 1 provides exactly that: a line chart of commodity prices monthly relative change for Chad.",1.1469130516052246 +How did the commodity prices vary monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13511981996056044,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user asked for a plot of how commodity prices vary monthly in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the correct plot type and country.,1.62825608253479 +Give me the monthly commodity price change data for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10665465672667707,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price change data for Chad, and the first option matches this request by plotting a line chart of commodity prices monthly relative change for Chad.",1.746039867401123 +What are the monthly commodity price fluctuations in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1363641944799826,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price fluctuations in Chad, which aligns with plotting a line chart of commodity prices monthly relative change for Chad.",1.0278477668762207 +Show the trend of monthly commodity price changes in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.09586049268966823,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to show the trend of monthly commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and type of data.,1.7727596759796143 +How have monthly commodity prices changed in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12771204178619766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for how monthly commodity prices have changed in Chad, and the best match is a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.134902000427246 +Give me the chart of monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10232305526732766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a chart of monthly commodity price variations in Chad, which matches the request for a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.393667221069336 +What is the monthly relative change in commodity prices for Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10762047126169738,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly relative change in commodity prices for Chad, and match 1 specifically addresses this request by plotting a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.8035249710083008 +Show me the monthly commodity price trends in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10739641741534134,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price trends in Chad, and the best match is a line chart of commodity prices monthly relative change for Chad.",1.1661241054534912 diff --git a/tests/evaluation_files/evaluated_gpt-july-test-c0.csv b/tests/evaluation_files/evaluated_gpt-july-test-c0.csv new file mode 100644 index 00000000..894bdbca --- /dev/null +++ b/tests/evaluation_files/evaluated_gpt-july-test-c0.csv @@ -0,0 +1,281 @@ +user_input,expected_output,actual_similarity_score,actual_output,actual_reason,execution_time_sec +Which organizations are in the most populated states facing severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14731487977833346,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in the most populated states facing severe food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent of identifying organizations in highly populated and food-insecure states in Chad.",1.7999038696289062 +Show me the main organizations working in the areas with the highest hunger in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14558855943815585,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for a list of organizations in areas with the highest hunger in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request for information on organizations in areas with high hunger (IPC Phase 3+).",2.5227530002593994 +Identify the key organizations in Chad's most affected regions by food crisis,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1602562665939331,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify key organizations in Chad's most affected regions by food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in Chad's regions affected by food crisis (IPC Phase 3+).",1.5768351554870605 +What are the top organizations operating in the most food insecure states in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15223565955715146,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify the top organizations operating in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it involves listing organizations in highly food insecure states (IPC Phase 3+).",1.6708838939666748 +List the main aid organizations in Chad's most heavily populated regions with severe food issues,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16845595836639404,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main aid organizations in Chad's most heavily populated regions with severe food issues. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on heavily populated regions with severe food issues (IPC Phase 3+).",1.642181158065796 +Which NGOs are present in the states with the highest population and food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1607890475031446,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify NGOs in the states with the highest population and food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it addresses both population and food insecurity (IPC Phase 3+).",1.8072309494018555 +Give me a list of organizations in Chad’s top three states with the worst hunger situations,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14242535829544067,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in Chad's top three states with the worst hunger situations. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most critical hunger situations (IPC Phase 3+).",4.600100994110107 +Who are the major players in the most food insecure and populated areas of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18407351875743239,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major players in the most food insecure and populated areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which directly addresses the user's need for information on organizations in highly populated and food insecure areas of Chad.",1.7928478717803955 +Can you show me the organizations working in the most populous and hungry regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15203314113419253,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show organizations working in the most populous and hungry regions in Chad. Match 1 specifically lists organizations in the top 3 states by population in IPC Phase 3+ in Chad, which aligns with the user's request for populous and hungry regions.",1.9080147743225098 +Identify the key humanitarian groups in Chad's worst-hit states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1719042267685148,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's intent is to identify key humanitarian groups in Chad's worst-hit states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request to identify key humanitarian groups in the most affected states by food insecurity in Chad.",1.8138527870178223 +Which aid organizations are operating in the states with the highest population and food needs in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15437528271231782,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify aid organizations operating in the states with the highest population and food needs in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it directly addresses the need for information on organizations in the most populous and food-insecure states in Chad.",2.0538859367370605 +List the main groups helping in Chad's top three food insecure and populous states,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14561061372851514,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main groups helping in Chad's top three food insecure and populous states. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most populous and food insecure states in Chad.",1.5725350379943848 +What are the leading organizations working in the most food insecure regions of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16202398251913008,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify leading organizations working in the most food insecure regions of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to find organizations in highly food insecure regions (IPC Phase 3+).",1.7118620872497559 +Show me the main organizations in Chad’s most affected areas by hunger,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16393756866455078,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for the main organizations in Chad’s most affected areas by hunger. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides a list of organizations in the most affected areas by hunger (IPC Phase 3+).",1.9352502822875977 +Who are the major aid organizations in Chad’s regions with the highest food insecurity?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18362045288085938,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major aid organizations in Chad's regions with the highest food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in regions of Chad with high food insecurity (IPC Phase 3+).",1.9899530410766602 +Give me a list of key organizations working in the most food insecure states in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15671658805058897,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is for a list of key organizations working in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request for organizations in food insecure states in Chad.",2.0054140090942383 +Which groups are active in Chad’s most populated regions facing severe hunger?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17491170616535312,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for information about groups active in Chad’s most populated regions facing severe hunger. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides a list of organizations in the most populated regions facing severe hunger (IPC Phase 3+).",1.6178669929504395 +Identify the main humanitarian organizations in the most food insecure areas of Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17305659846313848,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for the main humanitarian organizations in the most food insecure areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides a list of organizations in the most food insecure areas (IPC Phase 3+).",1.6171960830688477 +Which NGOs are present in Chad's top regions by population and food crisis?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16463926470768342,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify NGOs in Chad's top regions by population and food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it directly addresses the top regions by population and food crisis (IPC Phase 3+).",2.0967631340026855 +List the main humanitarian groups in Chad’s most heavily affected states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17404468942220686,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main humanitarian groups in Chad’s most heavily affected states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on the most affected states by food insecurity in Chad.",1.5727450847625732 +Give me an overview of the data available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14336121936805213,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for an overview of the data available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the user's request for an overview of available data.",3.2898409366607666 +Summarize the key information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14892613126726872,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of key information for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.2006862163543701 +Can you provide a summary of the data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12610316678667588,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's intent is to get a summary of the data for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the request for a summary of data for the specified region.,1.4707350730895996 +What does the data say about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.16895768087345464,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's intent is to get information about Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for data about Wadi Fira.,1.7952911853790283 +Give me a brief on the main data points for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17035293579100974,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a brief on the main data points for Wadi Fira. The closest match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which aligns with the user's intent to get a summary of data points for that specific region.",2.333681106567383 +What are the important details available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1801554638471644,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for important details available for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira.",1.25382399559021 +Summarize the metadata for Wadi Fira for me,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.10122407086038854,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is to summarize the metadata for Wadi Fira. The first option provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's intent.",1.649766206741333 +provide an overview of the key data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13290010298486832,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for an overview of key data for Wadi Fira, and the best match is to provide a text summary of metadata for Wadi Fira using HAPI data as text.",1.151115894317627 +What information is available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1701631254249425,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is for information available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for information about Wadi Fira.,1.807394027709961 +Give me a rundown of the main data on Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.15686552138914323,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a rundown of the main data on Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data.",1.1901869773864746 +Can you provide a summary of Wadi Fira's metadata?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.09964011911865067,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a summary of Wadi Fira's metadata, which matches exactly with the first option in the list.",1.0216336250305176 +What are the key data points for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17840763073058497,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for key data points for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira.",1.8009560108184814 +Summarize the available information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1410933732986389,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of available information for Wadi Fira, and match 1 provides a text summary of metadata for Wadi Fira using HAPI data, which aligns with the user's request.",1.2606761455535889 +What does the metadata reveal about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1506651133695297,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's intent is to get metadata information about Wadi Fira. The first option provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's request.",1.2422411441802979 +Give me the main data summary for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12452890333159827,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a main data summary for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.3260290622711182 +provide the key details from the data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1391606413817773,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is to provide key details from the data for Wadi Fira. The closest match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which aligns with the user's intent to get key details from the data for Wadi Fira.",1.5560340881347656 +What is the summary of data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12767703102093964,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of data for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.4851787090301514 +Give me a concise overview of Wadi Fira's data,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13609006454170747,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a concise overview of Wadi Fira's data, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.6735880374908447 +Summarize the information available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13730729328886626,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of information available for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.1350221633911133 +What does the available data show for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17025285072708318,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is about available data for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's question about available data for that specific region.,1.5642638206481934 +I want to understand the interplay of food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15866026755154894,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked to understand the interplay of food prices and fatalities in Chad. The best match is 'plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image' because it directly addresses the relationship between food prices and fatalities in Chad.",1.890192985534668 +How is the number of deaths related to food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17404484748840332,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between the number of deaths and food prices in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",1.4986240863800049 +Do fatality rates influence food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.187474168840144,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked if fatality rates influence food prices in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line, which directly addresses the relationship between fatalities and food prices in Chad.",1.6886050701141357 +Can you show me how food prices and death rates are connected in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1750018946827019,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and death rates in Chad. The first option matches this request by plotting a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.288661003112793 +What is the relationship between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16039432051147795,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the relationship between food prices and fatalities in Chad, which is best represented by a scatterplot showing the movements of food prices and the number of fatalities. This matches exactly with option 1.",3.767921209335327 +How do changes in food prices affect the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1882852782266058,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an analysis of how changes in food prices affect the number of deaths in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between food prices and fatalities in the specified country.",1.4619789123535156 +Show me the correlation between food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1350169101347365,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a correlation between food prices and fatalities in Chad, and match 1 provides a scatterplot of food price movements and number of fatalities in Chad (TCD) including a regression line, which directly addresses the user's request.",1.3191418647766113 +What is the link between food costs and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1862532385436736,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the link between food costs and death rates in Chad, which is best matched by a scatterplot of food price movements and number of fatalities in Chad.",1.155686855316162 +Can you explain how food prices relate to fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16806079960593578,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an explanation of how food prices relate to fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between these two variables in the specified country.",1.7975897789001465 +How are food prices and death rates related in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17993037521216315,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between food prices and death rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between food prices and death rates.",3.0411179065704346 +What does the data say about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15027611552023046,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user's request is to understand the relationship between food prices and fatalities in Chad. The first option directly addresses this by plotting a scatterplot of food price movements and the number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.4141979217529297 +Show me how food prices and fatality numbers are related in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15279410448144015,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the relationship between food prices and fatality numbers in Chad. Match 2 specifically provides a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",3.285306930541992 +How does the change in food prices correlate with deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17682633676214388,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a correlation between food prices and deaths in Chad. The first option matches this request as it involves plotting a scatterplot of food price movements and number of fatalities in Chad, including a regression line.",1.5033600330352783 +What can we learn about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15639662742614746,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about food prices and fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, which directly addresses both food prices and fatalities in the specified country.",1.3428122997283936 +How are fatalities influenced by food price changes in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17192513775379137,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot of food price changes and fatalities in Chad, which matches the request in option 1.",3.0598809719085693 +What is the interplay between food prices and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17490325273236018,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the interplay between food prices and death rates in Chad, which is best matched by a scatterplot showing food price movements and number of fatalities in Chad.",1.4744539260864258 +How do food prices impact fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1715727737713728,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about the impact of food prices on fatality rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly relates to the user's request.",1.2430028915405273 +Explain the relationship between food costs and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16774778558326897,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user's intent is to explain the relationship between food costs and fatalities in Chad. The best match is to plot a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.3985779285430908 +What connection is there between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16760204224561548,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and fatalities in Chad, which is best matched by a scatterplot showing the relationship between food price movements and number of fatalities in Chad.",1.053875207901001 +Can you show the impact of food prices on fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15500609219001027,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the impact of food prices on fatalities in Chad. Match 1 specifically requests a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line, which aligns perfectly with the user's request.",1.742110013961792 +Which humanitarian organizations are working in Wadi Fira and what do they focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12771765984928363,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know which humanitarian organizations are working in Wadi Fira and what they focus on. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad' because it directly addresses the user's request for information about organizations in Wadi Fira, although it is specific to food security.",1.3919827938079834 +Show me the different sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.09834078833527105,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,The user asked to show the different sectors of humanitarian organizations in Wadi Fira. The best match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image' because it directly addresses the user's request by providing a visual representation of the sectors of humanitarian organizations in the specified region.,1.597717046737671 +What are the main areas of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1409584195849829,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for the main areas of work for humanitarian organizations in Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which provides a visual representation of the main areas of work.",1.4446380138397217 +Can you list the types of aid provided by organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What sectors are humanitarian groups in Wadi Fira involved in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12913451269842557,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's intent is to know the sectors humanitarian groups are involved in within Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",1.2518491744995117 +Give me an overview of humanitarian organizations in Wadi Fira by sector,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10142976650176883,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to get an overview of humanitarian organizations in Wadi Fira by sector. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image', which provides the same information but in a visual format.",1.7105329036712646 +What are the different focuses of aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13075080651063453,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know the different focuses of aid organizations in Wadi Fira. The closest match is to provide a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request for information about aid organizations in that specific region.",1.7016479969024658 +Show me the humanitarian organizations in Wadi Fira and their sectors,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10227082703571921,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to show humanitarian organizations in Wadi Fira and their sectors. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",2.8525002002716064 +Which sectors do the humanitarian groups in Wadi Fira work in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Can you list the sectors of humanitarian work in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What are the key sectors for aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.14259065897352785,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for key sectors for aid organizations in Wadi Fira, which aligns with plotting a bar chart of humanitarian organizations in Wadi Fira by sector.",1.9879529476165771 +What do the humanitarian organizations in Wadi Fira specialize in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13320499255865348,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is about the specialization of humanitarian organizations in Wadi Fira. The closest match is providing a list of organizations providing food security in Wadi Fira, Chad, which is a specific type of specialization.",1.4329578876495361 +Give me details on the sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.11666230410298095,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for details on the sectors of humanitarian organizations in Wadi Fira, and option 2 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly matches the user's request.",1.5036916732788086 +What are the main focuses of humanitarian groups in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.15343528985971755,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to know the main focuses of humanitarian groups in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request by focusing on one of the main humanitarian activities (food security) in the specified region.",3.542512893676758 +Which areas are the humanitarian organizations in Wadi Fira working on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1320048210629362,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for information on the areas humanitarian organizations are working on in Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which provides a visual representation of the areas/sectors these organizations are involved in.",1.64314603805542 +Can you show me the sectors of aid provided in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.15426883323152507,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for the sectors of aid provided in Wadi Fira, and match 2 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",1.3494348526000977 +What are the sectors of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12757651158360894,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for the sectors of work for humanitarian organizations in Wadi Fira, and match 1 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",2.4406070709228516 +Show me the areas of focus for humanitarian groups in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12220009366274154,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to show the areas of focus for humanitarian groups in Wadi Fira. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image', which directly addresses the user's request by providing a visual representation of the areas of focus (sectors) for humanitarian organizations in Wadi Fira.",2.1752679347991943 +Which sectors do aid organizations in Wadi Fira focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1504316150627535,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for sectors that aid organizations focus on in Wadi Fira. The best match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",1.2479617595672607 +What are the humanitarian sectors present in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Show me the flow of migrants for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1259356436882807,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the flow of migrants for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",2.7734780311584473 +I want to understand the migration situation in Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17784565687178977,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user wants to understand the migration situation in Kenya, and the request for a sankey plot of refugee migration by country for Kenya directly addresses this need.",1.709536075592041 +To which countries did Kenyan migrants move how often,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17670038163058943,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on Kenyan migrants and their destinations, which matches the request for a sankey plot of refugee migration by country for Kenya.",1.0935628414154053 +What does the migration pattern look like for Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.15193540384692983,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration pattern for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data.",1.437014102935791 +Can you show me where Kenyan migrants are going?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18242054090377302,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on where Kenyan migrants are going, which aligns with creating a sankey plot of refugee migration by country for Kenya. This provides a visual representation of the migration flow, matching the user's intent.",1.1472969055175781 +Where do most Kenyan migrants end up?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18665020545421662,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where most Kenyan migrants end up, which aligns with creating a sankey plot of refugee migration by country for Kenya. This visual representation will show the flow of migrants from Kenya to other countries.",1.2181859016418457 +Show me the main destinations for migrants from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1503522723283266,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main destinations for migrants from Kenya, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0777108669281006 +What is the migration flow from Kenya to other countries?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16317101277957125,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration flow from Kenya to other countries, which matches the request to create a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",2.173348903656006 +Can you illustrate the migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1368142284861652,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an illustration of migration paths from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya.",1.268784761428833 +Where are Kenyan migrants moving to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18460296484214134,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants are moving to, and the match is to create a sankey plot of refugee migration by country for Kenya using HAPI data as an image. This directly addresses the user's request by visualizing the migration destinations.",1.995959758758545 +Show me the migration destinations for people from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.15271545865669722,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration destinations for people from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data.",1.070664882659912 +What countries are receiving migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1817801703083486,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information about countries receiving migrants from Kenya. The best match is a sankey plot of refugee migration by country for Kenya, which directly addresses the user's request.",1.073394775390625 +Where do Kenyan migrants primarily go?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1957587003707829,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants primarily go, which aligns with creating a sankey plot of refugee migration by country for Kenya.",2.393427848815918 +Give me an overview of migration routes from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16255264505430045,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an overview of migration routes from Kenya, and the best match is to create a sankey plot of refugee migration by country for Kenya using HAPI data as an image. This provides a visual representation of migration routes, which aligns with the user's request.",8.61832880973816 +What are the main migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17466803201006498,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main migration paths from Kenya, which can be visualized using a sankey plot of refugee migration by country for Kenya. This matches the user's intent.",3.4645798206329346 +Where have Kenyan migrants moved to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18386891176660303,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants have moved to, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses the migration of refugees from Kenya to other countries.",1.1461818218231201 +Show me the migration trends for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.14462368818380156,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration trends for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.920125961303711 +Where are the majority of Kenyan migrants heading?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18759665452231022,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where the majority of Kenyan migrants are heading, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0040559768676758 +Can you display the migration flow from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1440768156005835,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked to display the migration flow from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.3567309379577637 +What are the destinations for migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1791884654518413,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the destinations for migrants from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.1424460411071777 +Show me the areas in Chad with severe food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17909228801727295,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show areas in Chad with severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it directly relates to food insecurity in Chad and provides information about the most affected areas.",2.78674578666687 +Where are the regions in Chad facing IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1674647827467437,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for regions in Chad facing IPC Phase 3 conditions, and option 2 matches this by plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.465898036956787 +Map out the regions with critical food insecurity in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18955782776381058,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out regions with critical food insecurity in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image. IPC phase 3 data relates to critical food insecurity.",1.5119097232818604 +Can you show the IPC Phase 3 areas in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1397610050368605,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to show IPC Phase 3 areas in Chad, which matches with 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image'. This is a specific match for the user's request.",1.5496609210968018 +Which regions in Chad are experiencing severe hunger?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Give me a map of the most food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1942359209060669,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of the most food insecure areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image. IPC phase 3 data is related to food insecurity.",2.0222232341766357 +Highlight the regions in Chad with high food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show the regions with severe food issues in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17783603602159093,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show regions with severe food issues in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as IPC Phase 3+ indicates severe food insecurity.",1.6047601699829102 +Where are the IPC Phase 3 areas located in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1615815662395006,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for the location of IPC Phase 3 areas in Chad, which corresponds to plotting a map of IPC phase 3 data by admin_1 in Chad.",1.1263360977172852 +Map the areas facing severe food shortages in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +What are the regions in Chad with the highest food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show me the most affected food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Where in Chad are the IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17224903768321598,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,The user asked for the locations in Chad with IPC Phase 3 conditions. The best match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image' because it directly addresses the user's request by providing a visual representation of IPC Phase 3 conditions in Chad.,1.6237242221832275 +Give me a map of the regions with severe hunger in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1988207579361927,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of regions with severe hunger in Chad. The closest match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image', which aligns with the user's request for a map of severe hunger regions in Chad.",1.4377388954162598 +Highlight the IPC Phase 3 regions in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.11683962793704172,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to highlight IPC Phase 3 regions in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad.",1.4757931232452393 +Show the regions in Chad with critical food insecurity issues,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.2002660513558283,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user's request is to show regions in Chad with critical food insecurity issues. The closest match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image', which aligns with the user's intent to identify regions with critical food insecurity.",1.6917109489440918 +Where are the most food insecure regions in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18499653205244204,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for the most food insecure regions in Chad, which aligns with identifying regions in IPC Phase 3+ in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it provides information on regions with significant food insecurity.",1.738184928894043 +Map out the critical food insecurity areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18623349420429847,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out the critical food insecurity areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image. IPC phase 3 data is related to food insecurity, and the request is specific to Chad.",1.4392211437225342 +What regions in Chad are facing severe food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.19273213234756226,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's intent is to identify regions in Chad facing severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides information about regions in Chad that are in IPC Phase 3+, indicating severe food insecurity.",1.342283010482788 +Show me where the severe food insecurity areas are in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Which organizations are working on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06640053982742844,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know which organizations are working on food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.782534122467041 +List the groups providing food aid in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09017509759512066,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list the groups providing food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request for the specific region and type of aid.",1.520902156829834 +Who is helping with food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09437122773266504,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out who is helping with food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.3614518642425537 +Can you give me a list of food security organizations in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.05491490481254502,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is for a list of food security organizations in Wadi Fira. The first option provides exactly that: a list of organizations providing food security in Wadi Fira, Chad.",1.5956580638885498 +Which NGOs are focused on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08383613592974781,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for NGOs focused on food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.5601239204406738 +Show me the organizations ensuring food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0623438432626271,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for organizations ensuring food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.3072130680084229 +Who are the key players in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.1153868643141005,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for key players in food security in Wadi Fira, which aligns with providing a list of organizations providing food security in Wadi Fira, Chad.",1.7385330200195312 +Give me a list of groups working on food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07257522882823975,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to provide a list of groups working on food security in Wadi Fira. The first match in the list specifically provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",1.5778560638427734 +Who is providing food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09920932636426316,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know who is providing food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's intent.",1.251561164855957 +Which organizations are addressing food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06777274608606099,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify organizations addressing food security in Wadi Fira. The first option directly provides a list of organizations providing food security in Wadi Fira, Chad, which is a precise match to the user's intent.",1.9813828468322754 +List the main food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.05913432919623118,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list the main food security organizations in Wadi Fira. Match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.3256421089172363 +Who are the food security providers in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08491229814396106,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for food security providers in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.1301989555358887 +Which groups are active in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09848037903799256,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for groups active in food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.2172727584838867 +Show me the key food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0778509242819585,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to show key food security organizations in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.327258825302124 +Who is working on food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.11319193637130587,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out who is working on food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.4091992378234863 +Can you list the food security groups in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08399315190191325,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list food security groups in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's intent.",1.9153599739074707 +Who are the main organizations for food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07422853401044771,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify the main organizations for food security in Wadi Fira. The first option directly matches this request by providing a list of organizations providing food security in Wadi Fira, Chad.",1.4770231246948242 +Which NGOs are involved in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08439027257071186,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out which NGOs are involved in food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.2307939529418945 +Give me the list of food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0480841455559633,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to provide a list of food security organizations in Wadi Fira. The first option matches this request exactly by providing a list of organizations providing food security in Wadi Fira, Chad.",1.5481252670288086 +Who is ensuring food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09739859653684779,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information about who is ensuring food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.5748670101165771 +Show me the population distribution in Haiti by region,plot a map of population by admin1 for Haiti using HAPI data as an image,0.12113705185343071,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the population distribution in Haiti by region, which matches the request to plot a map of population by admin1 for Haiti using HAPI data as an image.",1.062540054321289 +Map the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09476425522905718,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a map of population by region in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data.",1.0744149684906006 +Where are the most populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18598409724045384,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find the most populated areas in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population distribution in Haiti.",1.3096070289611816 +Can you show a population map of Haiti by region?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.12033611536023503,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by region, and match 1 specifically provides a map of population by admin1 for Haiti using HAPI data.",1.0464892387390137 +Give me a map of population density in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.10957882093751892,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to plot a map of population density in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's intent to visualize population data on a map for Haiti.",1.718337059020996 +Highlight the population distribution across Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11190411803248901,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to highlight the population distribution across Haiti, which aligns with plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.2527470588684082 +Show the regions with the highest population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.13739446101056596,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to show the regions with the highest population in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's request to show population distribution by region in Haiti.",1.5578961372375488 +Where is the population concentrated in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18000089824212728,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked where the population is concentrated in Haiti, which implies a need for a visual representation of population distribution. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', as it directly addresses the user's request for Haiti and provides a map showing population concentration.",1.3402509689331055 +Map out the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.10885230740557772,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked to map out the population by region in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.0589430332183838 +What are the most populous areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1921811092169713,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find the most populous areas in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a visual representation of population distribution in Haiti.",1.5868289470672607 +Show me the population map of Haiti by regions,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11270788018891342,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by regions, and match 1 specifically provides a map of population by admin1 for Haiti using HAPI data.",1.6208817958831787 +Where are the densely populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18620130769037602,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for densely populated areas in Haiti, which can be addressed by plotting a map of population by admin1 for Haiti.",0.9929287433624268 +Highlight the population density regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11594445204402293,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to highlight population density regions in Haiti, which aligns with plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.0605072975158691 +Give me the population distribution map for Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09838648996031041,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population distribution map for Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.327260971069336 +Where are the population clusters in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1608519495803009,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find population clusters in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population distribution in Haiti.",1.3403329849243164 +Show the population spread by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1070148412593962,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to show the population spread by region in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's intent to visualize population distribution by region in Haiti.",1.2407310009002686 +Map the regions by population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09933948516843139,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a map of regions by population in Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti.",1.0339932441711426 +Where is the population density highest in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18239533376554518,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the highest population density in Haiti, which can be visualized by plotting a map of population by admin1 for Haiti.",1.2830209732055664 +Show me the most populated regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.15624364092869647,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to show the most populated regions in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population by administrative regions in Haiti.",1.4898860454559326 +Give me a population map of Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09836306532932881,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti, and option 1 matches this request exactly by specifying a map of population by admin1 for Haiti.",1.3350720405578613 +Show me the age distribution in Chad,plot population pyramids by age for Chad using HDX data as an image,0.1132439509921015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.2276270389556885 +What is the population breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1321744480341015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population breakdown by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.422898292541504 +Can you provide an age pyramid for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.10146880149840665,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age pyramid for Chad, and match 1 provides exactly that: 'plot population pyramids by age for Chad using HDX data as an image'.",1.104241132736206 +Show the age demographics of Chad,plot population pyramids by age for Chad using HDX data as an image,0.1237060648869377,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age demographics of Chad, which aligns with plotting population pyramids by age for Chad.",0.9223370552062988 +Give me the population age structure in Chad,plot population pyramids by age for Chad using HDX data as an image,0.12691289942937334,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population age structure in Chad, which is equivalent to plotting population pyramids by age for Chad.",1.1471610069274902 +What does the age distribution look like in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13504012048722747,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be visualized using a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.5856647491455078 +Show the age groups within the population of Chad,plot population pyramids by age for Chad using HDX data as an image,0.09969804294150242,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age groups within the population of Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.1819751262664795 +How is the population divided by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13396272276942656,plot population pyramids by age for Chad using HDX data as an image,"The user asked for how the population is divided by age in Chad, which is best represented by a population pyramid. The first option directly matches this request.",1.1154382228851318 +What are the age demographics for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.15219980478286144,plot population pyramids by age for Chad using HDX data as an image,"The user asked for age demographics for Chad, which can be visualized using a population pyramid. The closest match is 'plot population pyramids by age for Chad using HDX data as an image'.",1.585097074508667 +Can you illustrate the age distribution in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1116288503936842,plot population pyramids by age for Chad using HDX data as an image,"The user asked to illustrate the age distribution in Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.119603157043457 +Show me the population pyramid for Chad,plot population pyramids by age for Chad using HDX data as an image,0.10859505312994555,plot population pyramids by age for Chad using HDX data as an image,"The user asked for a population pyramid for Chad, and option 1 matches this request exactly by specifying 'plot population pyramids by age for Chad using HDX data as an image'.",2.833129405975342 +What is the age structure of the population in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13935953378676758,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age structure of the population in Chad, which can be visualized using a population pyramid. The best match is 'plot population pyramids by age for Chad using HDX data as an image'.",1.227975845336914 +Give me the age distribution chart for Chad,plot population pyramids by age for Chad using HDX data as an image,0.13010697781400615,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age distribution chart for Chad, which is equivalent to a population pyramid by age for Chad.",0.9340782165527344 +How does the population divide by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.12983063522025617,plot population pyramids by age for Chad using HDX data as an image,"The user asked for a breakdown of the population by age in Chad, which is best represented by a population pyramid. The first option directly matches this request by plotting population pyramids by age for Chad.",1.2573699951171875 +Show the different age groups in Chad's population,plot population pyramids by age for Chad using HDX data as an image,0.10565353699368685,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the different age groups in Chad's population, which aligns with plotting population pyramids by age for Chad.",1.6425600051879883 +What is the demographic breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13614463806151733,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the demographic breakdown by age in Chad, which can be visualized using a population pyramid. The closest match is 'plot population pyramids by age for Chad using HDX data as an image'.",1.3123137950897217 +provide the age distribution for Chad,plot population pyramids by age for Chad using HDX data as an image,0.12044090032576893,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution for Chad, which can be represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses the user's request.",1.3633010387420654 +What is the population structure by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1290196853291785,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which aligns with plotting population pyramids by age for Chad.",0.9406957626342773 +Show the demographics of Chad by age groups,plot population pyramids by age for Chad using HDX data as an image,0.10181726238933353,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the demographics of Chad by age groups, which aligns with plotting population pyramids by age for Chad.",0.9753179550170898 +How is the population structured by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13398526501828767,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.0704729557037354 +How many deaths occurred each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14315749908760067,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",0.8891870975494385 +Show me the monthly fatalities in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09997447132599946,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a plot of monthly fatalities in Chad, and option 1 matches this request exactly by specifying a line chart of fatalities by month for Chad using HDX data.",4.159232139587402 +Can you provide the death toll by month for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.12409400200282117,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the death toll by month for Chad, which matches the request to plot a line chart of fatalities by month for Chad using HDX data as an image.",1.5706260204315186 +What is the trend of fatalities in Chad by month?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10986671212513155,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the trend of fatalities in Chad by month, and match 1 specifically addresses this by plotting a line chart of fatalities by month for Chad using HDX data.",1.4204826354980469 +Show the monthly death numbers for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10950373950576908,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death numbers for Chad, which aligns with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.1620097160339355 +Give me the number of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1218335221558543,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities per month in Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.2334012985229492 +What are the monthly death statistics for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13465260485592023,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death statistics for Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.1128149032592773 +How many people died each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.15009931920774344,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of people who died each month in Chad. The closest match is 'plot a line chart of fatalities by month for Chad using HDX data as an image', which directly addresses the user's request for monthly fatalities in Chad.",1.4727520942687988 +Show the fatality trend in Chad by month,plot a line chart of fatalities by month for Chad using HDX data as an image,0.08784706971286993,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and match 1 specifically provides this.",0.9427950382232666 +Can you give me the monthly fatality data for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1139238869087883,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatality data for Chad, and the closest match is a line chart of fatalities by month for Chad using HDX data as an image.",1.137848138809204 +What is the monthly death count in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14349732217240385,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the monthly death count in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.5468721389770508 +Show me the number of deaths by month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.11586961367854742,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths by month in Chad, which matches exactly with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.3395869731903076 +How did the fatalities change each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.12204363285194697,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and match 1 provides exactly that.",1.2136757373809814 +Give me the monthly fatalities for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10989885212196049,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatalities for Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.2308707237243652 +What are the death numbers per month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14885427091888304,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for death numbers per month in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.1244149208068848 +How many fatalities were there each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13514207182620486,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities each month in Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.2277607917785645 +Show the trend of monthly deaths in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10354293009890692,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked to show the trend of monthly deaths in Chad, which matches the request to plot a line chart of fatalities by month for Chad using HDX data as an image.",1.1245739459991455 +Can you show the number of fatalities by month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10903922753824535,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a plot of the number of fatalities by month in Chad, and option 1 matches this request exactly.",1.138929843902588 +What are the monthly death figures for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1324063065983091,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death figures for Chad, and the closest match is a line chart of fatalities by month for Chad using HDX data as an image.",1.3590011596679688 +Show me the trend of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09959479584879383,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a trend of fatalities per month in Chad, and match 1 specifically addresses this by plotting a line chart of fatalities by month for Chad using HDX data.",1.198145866394043 +What is the total population of Mali?,provide the total population of Mali using HDX data as text,0.13386799500793578,provide the total population of Mali using HDX data as text,"The user asked for the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.8750648498535156 +How many people live in Mali?,provide the total population of Mali using HDX data as text,0.16415153331378063,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.0249049663543701 +Give me the population count for Mali,provide the total population of Mali using HDX data as text,0.11411645749005128,provide the total population of Mali using HDX data as text,"The user asked for the population count for Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.8106639385223389 +Can you tell me the total number of people in Mali?,provide the total population of Mali using HDX data as text,0.13749774768904455,provide the total population of Mali using HDX data as text,The user's request is to know the total number of people in Mali. The best match is 'provide the total population of Mali using HDX data as text' because it directly addresses the user's request for the total population of Mali.,1.0820322036743164 +What is the population size of Mali?,provide the total population of Mali using HDX data as text,0.13844492434811295,provide the total population of Mali using HDX data as text,"The user asked for the population size of Mali, and there is a specific match that provides the total population of Mali using HDX data as text.",1.2790770530700684 +provide the total number of inhabitants in Mali,provide the total population of Mali using HDX data as text,0.1019667751670208,provide the total population of Mali using HDX data as text,"The user asked for the total number of inhabitants in Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.195634126663208 +How large is the population of Mali?,provide the total population of Mali using HDX data as text,0.14621617152878208,provide the total population of Mali using HDX data as text,"The user asked for the total population of Mali, and there is a specific memory that provides the total population of Mali using HDX data as text.",1.0123639106750488 +What is the current population of Mali?,provide the total population of Mali using HDX data as text,0.25165276219530197,provide the total population of a provided country using HDX data as text,"The user asked for the current population of Mali, and the closest match is to provide the total population of a provided country using HDX data as text. This is a generic skill that can be used to fulfill the user's request.",1.3787877559661865 +Tell me the total population of Mali,provide the total population of Mali using HDX data as text,0.1200689506777286,provide the total population of Mali using HDX data as text,"The user asked for the total population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.1769967079162598 +What is Mali's population?,provide the total population of Mali using HDX data as text,0.14526207120781087,provide the total population of Mali using HDX data as text,"The user asked for the population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.0671868324279785 +Can you give me the population figure for Mali?,provide the total population of Mali using HDX data as text,0.12348784488289055,provide the total population of Mali using HDX data as text,"The user's request is to provide the population figure for Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.7028510570526123 +How many individuals live in Mali?,provide the total population of Mali using HDX data as text,0.15784262354450773,provide the total population of Mali using HDX data as text,"The user asked for the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.0396208763122559 +What is the overall population of Mali?,provide the total population of Mali using HDX data as text,0.14201274919811413,provide the total population of Mali using HDX data as text,"The user asked for the overall population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.4253802299499512 +Give me the total population number for Mali,provide the total population of Mali using HDX data as text,0.10356546682894063,provide the total population of Mali using HDX data as text,"The user asked for the total population number for Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.0513319969177246 +What is the headcount of people in Mali?,provide the total population of Mali using HDX data as text,0.15115294137824264,provide the total population of Mali using HDX data as text,"The user asked for the headcount of people in Mali, which is equivalent to the total population of Mali. The best match is 'provide the total population of Mali using HDX data as text'.",1.1840200424194336 +Can you provide the population data for Mali?,provide the total population of Mali using HDX data as text,0.18707165872196452,provide the total population of a provided country using HDX data as text,"The user's request is to provide the population data for Mali. The closest match is 'provide the total population of a provided country using HDX data as text', which is a generic skill that can be used for the user's request.",1.2846951484680176 +What is the number of people living in Mali?,provide the total population of Mali using HDX data as text,0.25326101462477224,provide the total population of a provided country using HDX data as text,"The user's intent is to know the number of people living in Mali. The closest match is to provide the total population of a provided country using HDX data as text, which can be applied to Mali.",2.7291159629821777 +How many people are there in Mali?,provide the total population of Mali using HDX data as text,0.16471919382554046,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.2043380737304688 +Give me the total number of residents in Mali,provide the total population of Mali using HDX data as text,0.22331685463979778,provide the total population of a provided country using HDX data as text,"The user asked for the total number of residents in Mali, which matches the request to provide the total population of a provided country using HDX data as text.",1.043653964996338 +What is the total population figure for Mali?,provide the total population of Mali using HDX data as text,0.12535156313790008,provide the total population of Mali using HDX data as text,"The user asked for the total population figure for Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.2125749588012695 +Get all the available data retrieval methods,retrieve all recipes,,,, +Show me all the data extraction techniques,retrieve all recipes,,,, +Can you list all the available data queries?,retrieve all recipes,,,, +What are all the ways to get data?,retrieve all recipes,,,, +Give me all the data access methods,retrieve all recipes,,,, +retrieve all the available queries,retrieve all recipes,,,, +Show all the methods for data retrieval,retrieve all recipes,,,, +List all the data extraction methods,retrieve all recipes,,,, +What are the different ways to get data?,retrieve all recipes,,,, +Can you provide all data query options?,retrieve all recipes,,,, +Get all available data methods,retrieve all recipes,,,, +Show me all data access techniques,retrieve all recipes,,,, +List all the ways to retrieve data,retrieve all recipes,,,, +What are the various data retrieval methods?,retrieve all recipes,,,, +Can you list all data access options?,retrieve all recipes,,,, +Give me all methods to extract data,retrieve all recipes,,,, +retrieve all available data queries,retrieve all recipes,,,, +Show all the data extraction techniques,retrieve all recipes,,,, +List all available data retrieval options,retrieve all recipes,,,, +What are the methods for accessing data?,retrieve all recipes,,,, +How many violent outbreaks were there in Chad in the last years?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.21151504550919042,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of violent outbreaks in Chad in the last years. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which provides a visual representation of conflict events over time in Chad.",1.4455420970916748 +I need to know how many attacks happened in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.19256351082759393,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of attacks in Chad, which aligns with plotting a line chart of conflict events by month for Chad using HDX data as an image.",1.0482139587402344 +Please create an image that shows the number of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1041509695322912,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user's intent is to create an image that shows the number of conflict events in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which aligns with the user's request for conflict events in Chad.",1.2967679500579834 +Show me the monthly conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11410415852690525,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of monthly conflict events in Chad, and option 1 matches this request exactly by specifying a line chart of conflict events by month for Chad.",1.017535924911499 +How often did conflict events occur in Chad by month?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13464683294296265,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, and match 1 specifically provides this.",1.056725025177002 +Give me the number of monthly conflict incidents in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14546704292297363,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of monthly conflict incidents in Chad, which aligns with plotting a line chart of conflict events by month for Chad using HDX data as an image.",1.3548548221588135 +What is the monthly trend of conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13332903385162354,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the monthly trend of conflict events in Chad, which matches exactly with the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.1297409534454346 +Show the number of conflict occurrences by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10413233376732112,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of the number of conflict occurrences by month in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.1765260696411133 +How many conflicts happened each month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14554936561282517,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.0640251636505127 +Give me a monthly breakdown of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12147270185080117,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a monthly breakdown of conflict events in Chad, and option 1 specifically matches this request by plotting a line chart of conflict events by month for Chad using HDX data.",1.289829969406128 +What is the trend of monthly conflict incidents in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.15278301098296043,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the trend of monthly conflict incidents in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.0555830001831055 +Show me the conflict events in Chad month by month,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10790667816633648,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, and option 1 matches this request exactly.",1.4004418849945068 +How did conflict events vary by month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1399272084236145,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month in Chad, which exactly matches option 1.",0.9033300876617432 +What are the monthly conflict figures for Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12865020378233816,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for monthly conflict figures for Chad, and option 1 matches this request by plotting a line chart of conflict events by month for Chad using HDX data.",1.079805850982666 +Show the trend of conflict events per month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.09311307586586737,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a trend of conflict events per month in Chad, and match 1 specifically addresses this by plotting a line chart of conflict events by month for Chad using HDX data.",1.1089537143707275 +Give me the number of conflicts each month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12976396083831787,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.207624912261963 +How many conflict events occurred monthly in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13227945566177368,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflict events that occurred monthly in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which directly addresses the user's request by providing a visual representation of the conflict events by month in Chad.",1.3887779712677002 +Show me the number of conflicts by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11145560604862459,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of the number of conflicts by month in Chad, and option 1 matches this request exactly by specifying a line chart of conflict events by month for Chad using HDX data.",1.2433719635009766 +What is the pattern of monthly conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14426284168583947,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the pattern of monthly conflict events in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.2583608627319336 +Give me a chart of conflict events by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.0899774432182312,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a chart of conflict events by month in Chad, and match 1 specifically provides a line chart of conflict events by month for Chad using HDX data.",1.0773520469665527 +How have commodity prices changed monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10973561464164183,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the monthly changes in commodity prices in Chad since 2008. The first match specifically addresses this by plotting a line chart of commodity prices' monthly relative change for Chad from 2008-01-01 using HDX data.,1.384695053100586 +Show me the monthly changes in commodity prices in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10387350366991799,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a plot of monthly changes in commodity prices in Chad, which matches the request for a line chart of commodity prices monthly relative change for Chad.",0.9829270839691162 +What is the trend of commodity prices in Chad by month?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12242383494519049,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user's intent is to see the trend of commodity prices in Chad by month. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image', which directly addresses the user's request.",1.3036673069000244 +Can you provide a chart of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10320079326629006,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a chart of monthly commodity price changes in Chad, and option 1 matches this request exactly by specifying a line chart of commodity prices monthly relative change for Chad.",1.2026140689849854 +How did commodity prices fluctuate monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13817284020667298,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the monthly fluctuation of commodity prices in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request by providing a line chart of monthly relative changes in commodity prices specifically for Chad.,1.7103242874145508 +Give me the monthly relative change in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10639017820357644,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly relative change in commodity prices for Chad, and match 1 specifically provides a line chart of commodity prices monthly relative change for Chad.",1.090656042098999 +What is the monthly trend of commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11407499825505996,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly trend of commodity price changes in Chad, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.284714937210083 +Show the monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10063135623931241,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to show the monthly commodity price variations in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly commodity price variations in Chad.,1.522627830505371 +How have the commodity prices shifted monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12824495175420658,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a plot of how commodity prices have shifted monthly in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image', which directly addresses the user's request.",1.2357430458068848 +provide the monthly changes in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11187844801672187,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is to provide the monthly changes in commodity prices for Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and data type.,1.4334828853607178 +What is the pattern of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12405371665953968,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the pattern of monthly commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly commodity price changes in Chad.,1.6412639617919922 +Show me the relative change in commodity prices by month in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1018724027643908,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the relative change in commodity prices by month in Chad, and match 1 specifically addresses this request by plotting a line chart of commodity prices monthly relative change for Chad.",1.0915272235870361 +How did the commodity prices vary monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13511981996056044,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a plot of how commodity prices vary monthly in Chad. The best match is a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image, which aligns with the user's request.",1.944032907485962 +Give me the monthly commodity price change data for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10665465672667707,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price change data for Chad, and match 1 provides a line chart of commodity prices monthly relative change for Chad, which aligns with the user's request.",1.0165410041809082 +What are the monthly commodity price fluctuations in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1363641944799826,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price fluctuations in Chad, which aligns with plotting a line chart of commodity prices monthly relative change for Chad.",1.1872851848602295 +Show the trend of monthly commodity price changes in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.09586036776663909,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to show the trend of monthly commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and type of data.,1.7046051025390625 +How have monthly commodity prices changed in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12771204178619766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for how monthly commodity prices have changed in Chad. The best match is a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image, which directly addresses the user's request.",1.220700979232788 +Give me the chart of monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10232305526732766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user's intent is to get a chart of monthly commodity price variations in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image', which directly aligns with the user's request.",1.5503532886505127 +What is the monthly relative change in commodity prices for Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10762047126169738,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user's intent is to find the monthly relative change in commodity prices for Chad. The first option matches this intent exactly, as it specifies plotting a line chart of commodity prices' monthly relative change for Chad.",1.2623498439788818 +Show me the monthly commodity price trends in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10739641741534134,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is to show monthly commodity price trends in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for monthly commodity price trends in Chad.,1.371325969696045 diff --git a/tests/evaluation_files/evaluated_gpt-july-test-c1.csv b/tests/evaluation_files/evaluated_gpt-july-test-c1.csv new file mode 100644 index 00000000..784b3131 --- /dev/null +++ b/tests/evaluation_files/evaluated_gpt-july-test-c1.csv @@ -0,0 +1,281 @@ +user_input,expected_output,actual_similarity_score,actual_output,actual_reason,execution_time_sec +Which organizations are in the most populated states facing severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14731487977833346,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in the most populated states facing severe food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in highly populated and food-insecure states in Chad.",2.5805578231811523 +Show me the main organizations working in the areas with the highest hunger in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14558855943815585,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show the main organizations working in the areas with the highest hunger in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it provides a list of organizations in the most affected areas by hunger (IPC Phase 3+).",1.945417881011963 +Identify the key organizations in Chad's most affected regions by food crisis,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1602562665939331,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify key organizations in Chad's most affected regions by food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with identifying organizations in regions affected by food crisis in Chad.",1.7313470840454102 +What are the top organizations operating in the most food insecure states in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15223565955715146,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify the top organizations operating in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it involves listing organizations in the most food insecure states (IPC Phase 3+ indicates high levels of food insecurity) in Chad.",1.7475268840789795 +List the main aid organizations in Chad's most heavily populated regions with severe food issues,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16845595836639404,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for a list of main aid organizations in Chad's most heavily populated regions with severe food issues. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request for heavily populated regions with severe food issues (IPC Phase 3+).",1.8582661151885986 +Which NGOs are present in the states with the highest population and food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1607890475031446,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify NGOs in the states with the highest population and food insecurity in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it addresses both high population and food insecurity (IPC Phase 3+).",1.338813066482544 +Give me a list of organizations in Chad’s top three states with the worst hunger situations,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14242535829544067,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list organizations in Chad's top three states with the worst hunger situations. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most critical hunger situations (IPC Phase 3+).",1.8402628898620605 +Who are the major players in the most food insecure and populated areas of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18407351875743239,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major players in the most food insecure and populated areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which directly addresses the user's need for information on organizations in highly populated and food insecure areas of Chad.",1.7934861183166504 +Can you show me the organizations working in the most populous and hungry regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15203314113419253,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show organizations working in the most populous and hungry regions in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on populous and food-insecure regions in Chad.",1.3225700855255127 +Identify the key humanitarian groups in Chad's worst-hit states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.1719042267685148,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify key humanitarian groups in Chad's worst-hit states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify key humanitarian groups in the most affected states by food insecurity in Chad.",2.3745689392089844 +Which aid organizations are operating in the states with the highest population and food needs in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15437528271231782,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify aid organizations operating in the states with the highest population and food needs in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it directly addresses the need for information on organizations in the most populous and food-insecure states in Chad.",1.9460029602050781 +List the main groups helping in Chad's top three food insecure and populous states,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.14561061372851514,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main groups helping in Chad's top three food insecure and populous states. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to identify organizations in the most food insecure and populous states in Chad.",2.101994037628174 +What are the leading organizations working in the most food insecure regions of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16202398251913008,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify leading organizations working in the most food insecure regions of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in highly food insecure regions (IPC Phase 3+).",1.6240618228912354 +Show me the main organizations in Chad’s most affected areas by hunger,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16393756866455078,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show the main organizations in Chad’s most affected areas by hunger. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically lists organizations in Chad's most affected areas by hunger (IPC Phase 3+).",2.316880702972412 +Who are the major aid organizations in Chad’s regions with the highest food insecurity?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.18362045288085938,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify major aid organizations in Chad's regions with the highest food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it specifically addresses organizations in regions of Chad with high food insecurity (IPC Phase 3+).",2.2286570072174072 +Give me a list of key organizations working in the most food insecure states in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.15671658805058897,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is for a list of key organizations working in the most food insecure states in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it provides a list of organizations in the most food insecure states (IPC Phase 3+ indicates high levels of food insecurity) in Chad.",2.6195318698883057 +Which groups are active in Chad’s most populated regions facing severe hunger?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17491170616535312,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for information about groups active in Chad’s most populated regions facing severe hunger. The best match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it directly addresses the user's request by listing organizations in the most populated regions facing severe hunger (IPC Phase 3+).",1.979398250579834 +Identify the main humanitarian organizations in the most food insecure areas of Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17305659846313848,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to identify the main humanitarian organizations in the most food insecure areas of Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data' because it provides a list of organizations in the most food insecure areas (IPC Phase 3+).",2.136201858520508 +Which NGOs are present in Chad's top regions by population and food crisis?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.16463926470768342,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user asked for NGOs present in Chad's top regions by population and food crisis. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's request for information on NGOs in regions with high population and food crisis (IPC Phase 3+).",1.5119988918304443 +List the main humanitarian groups in Chad’s most heavily affected states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data",0.17404468942220686,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to list the main humanitarian groups in Chad’s most heavily affected states by food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which aligns with the user's intent to focus on heavily affected states by food insecurity in Chad.",2.0454418659210205 +Give me an overview of the data available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14336121936805213,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is for an overview of the data available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for an overview of the data available for that specific region.,1.6145427227020264 +Summarize the key information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.14892613126726872,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of key information for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.1578340530395508 +Can you provide a summary of the data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12610316678667588,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a summary of the data for Wadi Fira. The closest match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the user's intent.",2.126108169555664 +What does the data say about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.16895768087345464,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is for information about Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's request for data about Wadi Fira.,1.3137211799621582 +Give me a brief on the main data points for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17035293579100974,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a brief on the main data points for Wadi Fira. The closest match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which aligns with the user's intent to get a summary of data points for Wadi Fira.",1.5750069618225098 +What are the important details available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1801554638471644,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for important details available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the request for important details in the form of metadata.",1.2276370525360107 +Summarize the metadata for Wadi Fira for me,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.10122407086038854,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's intent is to summarize the metadata for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's request.",1.2818727493286133 +provide an overview of the key data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13290010298486832,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for an overview of key data for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.3382489681243896 +What information is available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1701631254249425,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's intent is to get information about Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the request for information about Wadi Fira.",2.029873847961426 +Give me a rundown of the main data on Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.15686552138914323,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a rundown of the main data on Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.0630152225494385 +Can you provide a summary of Wadi Fira's metadata?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.09964011911865067,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of Wadi Fira's metadata, and match 1 provides a text summary of metadata for Wadi Fira using HAPI data.",2.938969850540161 +What are the key data points for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17840763073058497,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for key data points for Wadi Fira, which aligns with providing a text summary of metadata for Wadi Fira.",2.2037229537963867 +Summarize the available information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1410933732986389,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is to summarize the available information for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses summarizing information for Wadi Fira.,1.2041091918945312 +What does the metadata reveal about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1506651133695297,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for metadata about Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which directly matches the user's request.",5.719553709030151 +Give me the main data summary for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12452890333159827,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a main data summary for Wadi Fira, and option 1 provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.4007189273834229 +provide the key details from the data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.1391606413817773,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is to provide key details from the data for Wadi Fira. The closest match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which aligns with the user's intent to get key details from the data.",1.380016803741455 +What is the summary of data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.12767703102093964,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user asked for a summary of data for Wadi Fira, and the first option provides a text summary of metadata for Wadi Fira using HAPI data, which matches the user's request.",1.4229590892791748 +Give me a concise overview of Wadi Fira's data,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13609006454170747,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is for a concise overview of Wadi Fira's data, which aligns with providing a text summary of metadata for Wadi Fira using HAPI data as text.",1.426746129989624 +Summarize the information available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.13750679828447554,provide a text summary of metadata for Wadi Fira using HAPI data as text,"The user's request is to summarize the information available for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text', which directly addresses the user's intent to summarize information for Wadi Fira.",1.3643670082092285 +What does the available data show for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text,0.17025285072708318,provide a text summary of metadata for Wadi Fira using HAPI data as text,The user's request is about available data for Wadi Fira. The best match is 'provide a text summary of metadata for Wadi Fira using HAPI data as text' because it directly addresses the user's question about available data for that specific region.,1.737205982208252 +I want to understand the interplay of food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15866026755154894,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked to understand the interplay of food prices and fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in TCD (Chad) from 2008-01-01 using HDXData data, including a regression line as an image. This directly addresses the user's request by providing a visual representation of the relationship between food prices and fatalities in Chad.",1.8523590564727783 +How is the number of deaths related to food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17404484748840332,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between the number of deaths and food prices in Chad. The first option provides a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",2.2014729976654053 +Do fatality rates influence food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.187474168840144,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked if fatality rates influence food prices in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line, which directly relates to the user's intent.",1.3903050422668457 +Can you show me how food prices and death rates are connected in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1750018946827019,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and death rates in Chad. Match 1 specifically plots a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",1.3344202041625977 +What is the relationship between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16039432051147795,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the relationship between food prices and fatalities in Chad, which is best represented by a scatterplot showing food price movements and number of fatalities in Chad. This matches exactly with option 1.",1.1465089321136475 +How do changes in food prices affect the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1882852782266058,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an analysis of how changes in food prices affect the number of deaths in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between food prices and fatalities.",1.3395540714263916 +Show me the correlation between food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1350169101347365,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",The user asked for a correlation between food prices and fatalities in Chad. The first option matches this request as it involves plotting a scatterplot of food price movements and number of fatalities in Chad (TCD) including a regression line.,1.589184045791626 +What is the link between food costs and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1862532385436736,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the link between food costs and death rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.496460199356079 +Can you explain how food prices relate to fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16806079960593578,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an explanation of how food prices relate to fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly relates to the user's request.",1.1556060314178467 +How are food prices and death rates related in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17993037521216315,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a relationship between food prices and death rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.312511920928955 +What does the data say about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15027611552023046,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for data on food prices and fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses both aspects of the user's request.",1.2382478713989258 +Show me how food prices and fatality numbers are related in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15279410448144015,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the relationship between food prices and fatality numbers in Chad. Match 2 specifically provides a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01 using HDXData data, including a regression line.",1.8023278713226318 +How does the change in food prices correlate with deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17682633676214388,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a correlation between food prices and deaths in Chad. The first option provides a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",1.0940349102020264 +What can we learn about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.15639662742614746,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about food prices and fatalities in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the user's request.",0.9729030132293701 +How are fatalities influenced by food price changes in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17192513775379137,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user's intent is to understand the influence of food price changes on fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.359100103378296 +What is the interplay between food prices and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.17490325273236018,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for the interplay between food prices and death rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the interplay between these two variables.",1.0845708847045898 +How do food prices impact fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1715727737713728,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked about the impact of food prices on fatality rates in Chad. The closest match is a scatterplot of food price movements and number of fatalities in Chad, which directly relates to the user's request.",1.6032838821411133 +Explain the relationship between food costs and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16774778558326897,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for an explanation of the relationship between food costs and fatalities in Chad. The best match is a scatterplot of food price movements and number of fatalities in Chad, which directly addresses the relationship between the two variables in the specified country.",1.4390950202941895 +What connection is there between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.16760204224561548,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a connection between food prices and fatalities in Chad, which is best matched by a scatterplot showing the relationship between food price movements and the number of fatalities in Chad.",1.3944859504699707 +Can you show the impact of food prices on fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image",0.1550086921463778,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image","The user asked for a scatterplot showing the impact of food prices on fatalities in Chad. Match 1 specifically requests a scatterplot of food price movements and number of fatalities in Chad (TCD) from 2008-01-01, including a regression line, which aligns perfectly with the user's intent.",1.2904319763183594 +Which humanitarian organizations are working in Wadi Fira and what do they focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12771765984928363,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to know which humanitarian organizations are working in Wadi Fira and what they focus on. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad' because it directly addresses the user's request for information about organizations in Wadi Fira, although it is specific to food security.",1.6705799102783203 +Show me the different sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.09834078833527105,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,The user asked to show the different sectors of humanitarian organizations in Wadi Fira. The best match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image' because it directly addresses the user's request by providing a visual representation of the sectors of humanitarian organizations in the specified region.,1.5023407936096191 +What are the main areas of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1408839989762244,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to know the main areas of work for humanitarian organizations in Wadi Fira. The closest match is to plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image, which provides a visual representation of the main areas of work.",1.391784906387329 +Can you list the types of aid provided by organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What sectors are humanitarian groups in Wadi Fira involved in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12913451269842557,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's intent is to know the sectors humanitarian groups are involved in within Wadi Fira. The closest match is to plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image, which directly addresses the sectors of humanitarian organizations in Wadi Fira.",1.4496879577636719 +Give me an overview of humanitarian organizations in Wadi Fira by sector,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10142976650176883,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to get an overview of humanitarian organizations in Wadi Fira by sector. The closest match is 'plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image', which provides the same information but in a visual format.",1.6545369625091553 +What are the different focuses of aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13075080651063453,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to know the different focuses of aid organizations in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request by providing information about aid organizations in the specified region.",1.6133661270141602 +Show me the humanitarian organizations in Wadi Fira and their sectors,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.10227082703571921,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to show the humanitarian organizations in Wadi Fira and their sectors. The closest match is to plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image, which directly addresses the user's request for information about organizations and their sectors in Wadi Fira.",1.7364230155944824 +Which sectors do the humanitarian groups in Wadi Fira work in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Can you list the sectors of humanitarian work in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +What are the key sectors for aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.14259065897352785,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for key sectors for aid organizations in Wadi Fira, and the closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request for key sectors.",1.1266160011291504 +What do the humanitarian organizations in Wadi Fira specialize in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.13320499255865348,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is about the specialization of humanitarian organizations in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request by specifying the type of specialization (food security) in the same region (Wadi Fira).",1.7562167644500732 +Give me details on the sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.11666230410298095,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for details on the sectors of humanitarian organizations in Wadi Fira, and option 2 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly matches the user's request.",1.1315069198608398 +What are the main focuses of humanitarian groups in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.15343528985971755,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to know the main focuses of humanitarian groups in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request by focusing on a specific aspect of humanitarian work in the same region.",1.8763220310211182 +Which areas are the humanitarian organizations in Wadi Fira working on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1320048210629362,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for information on the areas humanitarian organizations are working on in Wadi Fira. The closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which provides a visual representation of the areas (sectors) they are working on.",1.3037168979644775 +Can you show me the sectors of aid provided in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.15426883323152507,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for sectors of aid provided in Wadi Fira, and the closest match is a bar chart of humanitarian organizations in Wadi Fira by sector, which aligns with the user's request for sector information.",1.7039010524749756 +What are the sectors of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12757651158360894,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user's request is to know the sectors of work for humanitarian organizations in Wadi Fira. The closest match is to plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image, which directly addresses the user's request by providing a visual representation of the sectors of work.",1.7338151931762695 +Show me the areas of focus for humanitarian groups in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.12220009366274154,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for areas of focus for humanitarian groups in Wadi Fira, which aligns with plotting a bar chart of humanitarian organizations in Wadi Fira by sector.",1.2907838821411133 +Which sectors do aid organizations in Wadi Fira focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,0.1504316150627535,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,"The user asked for sectors that aid organizations focus on in Wadi Fira, and match 2 provides a bar chart of humanitarian organizations in Wadi Fira by sector, which directly addresses the user's request.",1.1115939617156982 +What are the humanitarian sectors present in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image,,,, +Show me the flow of migrants for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1259356436882807,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the flow of migrants for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.3634090423583984 +I want to understand the migration situation in Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17784565687178977,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user wants to understand the migration situation in Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses the migration situation in Kenya.",1.3413329124450684 +To which countries did Kenyan migrants move how often,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17670038163058943,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on Kenyan migrants and their destinations, which matches the request for a sankey plot of refugee migration by country for Kenya.",1.1028969287872314 +What does the migration pattern look like for Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.15190771486025034,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration pattern for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data.",1.165557861328125 +Can you show me where Kenyan migrants are going?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18242054090377302,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information on where Kenyan migrants are going, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses this by providing a visual representation of migration destinations for Kenyan refugees.",1.393604040145874 +Where do most Kenyan migrants end up?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18665020545421662,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where most Kenyan migrants end up, which aligns with creating a sankey plot of refugee migration by country for Kenya. This visual representation will show the flow of migrants from Kenya to other countries.",1.4677021503448486 +Show me the main destinations for migrants from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1503522723283266,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main destinations for migrants from Kenya, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0303161144256592 +What is the migration flow from Kenya to other countries?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16317101277957125,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the migration flow from Kenya to other countries, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data.",2.9148333072662354 +Can you illustrate the migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1368142284861652,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an illustration of migration paths from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya.",1.0671277046203613 +Where are Kenyan migrants moving to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18460296484214134,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants are moving to, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0007579326629639 +Show me the migration destinations for people from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.152671607851097,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration destinations for people from Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses this request by providing a visual representation of migration destinations.",1.3567121028900146 +What countries are receiving migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1817801703083486,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for information about countries receiving migrants from Kenya. The best match is 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image', which directly addresses the user's request by providing a visual representation of refugee migration from Kenya to other countries.",1.3421249389648438 +Where do Kenyan migrants primarily go?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1957587003707829,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants primarily go, which aligns with creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.177739143371582 +Give me an overview of migration routes from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.16255264505430045,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for an overview of migration routes from Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses the user's request by providing a visual representation of migration routes from Kenya.",1.2720720767974854 +What are the main migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.17466803201006498,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the main migration paths from Kenya, and the match 'create a sankey plot of refugee migration by country for Kenya using HAPI data as an image' directly addresses this by providing a visual representation of refugee migration paths from Kenya.",1.28391695022583 +Where have Kenyan migrants moved to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18386891176660303,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where Kenyan migrants have moved to, which aligns with creating a sankey plot of refugee migration by country for Kenya.",0.9211840629577637 +Show me the migration trends for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.14462368818380156,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for migration trends for Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.1291248798370361 +Where are the majority of Kenyan migrants heading?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.18759665452231022,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked where the majority of Kenyan migrants are heading, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.3024871349334717 +Can you display the migration flow from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1440768156005835,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked to display the migration flow from Kenya, and there is a specific match for creating a sankey plot of refugee migration by country for Kenya using HAPI data as an image.",1.403959035873413 +What are the destinations for migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,0.1791884654518413,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image,"The user asked for the destinations for migrants from Kenya, which aligns with creating a sankey plot of refugee migration by country for Kenya.",1.0853910446166992 +Show me the areas in Chad with severe food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17909228801727295,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show areas in Chad with severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides information about areas in Chad with severe food insecurity (IPC Phase 3+).",1.5235741138458252 +Where are the regions in Chad facing IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1674647827467437,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for regions in Chad facing IPC Phase 3 conditions, which matches with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.0944409370422363 +Map out the regions with critical food insecurity in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18955782776381058,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out regions with critical food insecurity in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.365549087524414 +Can you show the IPC Phase 3 areas in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1397610050368605,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to show IPC Phase 3 areas in Chad, which matches the request to plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.2001290321350098 +Which regions in Chad are experiencing severe hunger?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Give me a map of the most food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1942359209060669,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of the most food insecure areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",1.2975950241088867 +Highlight the regions in Chad with high food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show the regions with severe food issues in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Where are the IPC Phase 3 areas located in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.1615815662395006,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for the location of IPC Phase 3 areas in Chad, which corresponds to plotting a map of IPC phase 3 data by admin_1 in Chad.",0.9433200359344482 +Map the areas facing severe food shortages in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +What are the regions in Chad with the highest food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Show me the most affected food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18145369125488298,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's request is to show the most affected food insecure areas in Chad. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', which provides information about food insecurity in Chad.",1.419370174407959 +Where in Chad are the IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.17224903768321598,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,The user asked for the locations in Chad with IPC Phase 3 conditions. The best match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image' because it directly addresses the user's request by providing a visual representation of IPC Phase 3 data in Chad.,1.7030160427093506 +Give me a map of the regions with severe hunger in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.198691725730896,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for a map of regions with severe hunger in Chad. The closest match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image', which aligns with the user's request for a map indicating severe hunger (IPC phase 3+).",1.31852388381958 +Highlight the IPC Phase 3 regions in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.11683962793704172,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to highlight IPC Phase 3 regions in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",0.9378619194030762 +Show the regions in Chad with critical food insecurity issues,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.20033905512195538,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked for regions in Chad with critical food insecurity issues, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image.",0.998769998550415 +Where are the most food insecure regions in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.2405347145081771,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user's intent is to find the most food insecure regions in Chad. The closest match is 'plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image', as IPC phase 3 data is directly related to food insecurity.",1.2492239475250244 +Map out the critical food insecurity areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.18623349420429847,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,"The user asked to map out critical food insecurity areas in Chad, which aligns with plotting a map of IPC phase 3 data by admin_1 in Chad. IPC phase 3 data is related to food insecurity, and the request is specific to Chad.",1.4497742652893066 +What regions in Chad are facing severe food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,0.19268669064359978,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data","The user's intent is to identify regions in Chad facing severe food insecurity. The closest match is 'List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data', as it provides information about regions in Chad that are in IPC Phase 3+, which indicates severe food insecurity.",1.4419898986816406 +Show me where the severe food insecurity areas are in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image,,,, +Which organizations are working on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06640053982742844,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for organizations working on food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.6538729667663574 +List the groups providing food aid in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09017509759512066,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list the groups providing food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request for the specific region and type of aid.",1.3124330043792725 +Who is helping with food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09437122773266504,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out who is helping with food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.2742130756378174 +Can you give me a list of food security organizations in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.05491490481254502,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for a list of food security organizations in Wadi Fira, and match 1 provides exactly that.",0.8772499561309814 +Which NGOs are focused on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08383613592974781,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find NGOs focused on food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",1.113922119140625 +Show me the organizations ensuring food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0623438432626271,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to show organizations ensuring food security in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.2421338558197021 +Who are the key players in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.1153868643141005,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify key players in food security in Wadi Fira. The first option directly provides a list of organizations providing food security in Wadi Fira, Chad, which matches the user's intent.",1.2815511226654053 +Give me a list of groups working on food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07258529768917821,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to provide a list of groups working on food security in Wadi Fira. The first option matches this request exactly by providing a list of organizations providing food security in Wadi Fira, Chad.",1.0589311122894287 +Who is providing food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09920932636426316,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information about organizations providing food aid in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which aligns with the user's request.",1.3044350147247314 +Which organizations are addressing food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.06777274608606099,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for organizations addressing food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly aligns with the user's request.",0.9748318195343018 +List the main food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.059111069281873485,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list the main food security organizations in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.0278820991516113 +Who are the food security providers in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08496041625028872,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for food security providers in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.3583319187164307 +Which groups are active in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09845141117027201,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for groups active in food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.170098066329956 +Show me the key food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0778509242819585,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for key food security organizations in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's request.",0.9523358345031738 +Who is working on food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.11319193637130587,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's intent is to find out who is working on food aid in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.1886441707611084 +Can you list the food security groups in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08399315190191325,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to list the food security groups in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's intent.",1.2306151390075684 +Who are the main organizations for food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.07422853401044771,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for the main organizations for food security in Wadi Fira, and match 1 provides a list of organizations providing food security in Wadi Fira, Chad, which directly addresses the user's request.",1.193699836730957 +Which NGOs are involved in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.08439027257071186,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to identify NGOs involved in food security in Wadi Fira. The first option provides a list of organizations providing food security in Wadi Fira, Chad, which directly matches the user's intent.",1.316498041152954 +Give me the list of food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad",0.0480841455559633,"provide a list of organizations providing food security in Wadi Fira, Chad","The user's request is to provide a list of food security organizations in Wadi Fira. The first option matches this request exactly by providing a list of organizations providing food security in Wadi Fira, Chad.",1.1472678184509277 +Who is ensuring food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad",0.09739859653684779,"provide a list of organizations providing food security in Wadi Fira, Chad","The user asked for information on who is ensuring food security in Wadi Fira. The closest match is 'provide a list of organizations providing food security in Wadi Fira, Chad', which directly addresses the user's request.",1.202056884765625 +Show me the population distribution in Haiti by region,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1211318373679865,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the population distribution in Haiti by region, which matches the request to plot a map of population by admin1 for Haiti using HAPI data as an image.",1.20526123046875 +Map the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09476172924039172,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a map of population by region in Haiti, and match 1 specifically provides a map of population by admin1 for Haiti using HAPI data as an image.",1.1456429958343506 +Where are the most populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18598409724045384,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to find the most populated areas in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image' because it directly addresses the user's request by providing a map of population distribution in Haiti.,1.3322970867156982 +Can you show a population map of Haiti by region?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.12033611536023503,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by region, and match 1 specifically provides a map of population by admin1 for Haiti using HAPI data as an image, which aligns with the user's request.",1.3916759490966797 +Give me a map of population density in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1095961462969891,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to plot a map of population density in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's intent to visualize population data on a map for Haiti.",1.2009038925170898 +Highlight the population distribution across Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11190411803248901,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked to highlight the population distribution across Haiti, which matches with plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.1154742240905762 +Show the regions with the highest population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1375411726706014,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to show the regions with the highest population in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population by administrative regions in Haiti.",1.5814661979675293 +Where is the population concentrated in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18000089824212728,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to find out where the population is concentrated in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image' because it directly addresses the user's request by providing a map of population distribution in Haiti.,1.537750005722046 +Map out the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.10885230740557772,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked to map out the population by region in Haiti, and match 1 specifically addresses plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.0421829223632812 +What are the most populous areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1921811092169713,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the most populous areas in Haiti, which can be visualized by plotting a map of population by admin1 for Haiti. This matches the user's intent closely.",1.209306240081787 +Show me the population map of Haiti by regions,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11270788018891342,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti by regions, and match 1 specifically provides a map of population by admin1 for Haiti.",1.0332190990447998 +Where are the densely populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18617119624270773,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to find densely populated areas in Haiti. The best match is 'plot a map of population by admin1 for Haiti using HAPI data as an image' because it directly addresses the user's request by providing a population map for Haiti.,1.4477109909057617 +Highlight the population density regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.11594445204402293,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to highlight population density regions in Haiti, which aligns with plotting a map of population by admin1 for Haiti using HAPI data as an image.",0.9305562973022461 +Give me the population distribution map for Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09838648996031041,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is for a population distribution map for Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.2145988941192627 +Where are the population clusters in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1608519495803009,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to find population clusters in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population distribution in Haiti.",1.2953553199768066 +Show the population spread by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.1070148412593962,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's intent is to show the population spread by region in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which aligns with the user's request for population spread by region in Haiti.",1.2615489959716797 +Map the regions by population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09933948516843139,plot a map of population by admin1 for Haiti using HAPI data as an image,The user's intent is to map the regions by population in Haiti. The first option specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.,1.1907849311828613 +Where is the population density highest in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image,0.18239533376554518,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for the highest population density in Haiti, which can be inferred from a map of population by admin1 for Haiti.",1.4323608875274658 +Show me the most populated regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.15624364092869647,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user's request is to show the most populated regions in Haiti. The closest match is 'plot a map of population by admin1 for Haiti using HAPI data as an image', which directly addresses the user's request by providing a map of population by administrative regions in Haiti.",1.1549158096313477 +Give me a population map of Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image,0.09836306532932881,plot a map of population by admin1 for Haiti using HAPI data as an image,"The user asked for a population map of Haiti, and option 1 specifically matches this request by plotting a map of population by admin1 for Haiti using HAPI data as an image.",1.0583209991455078 +Show me the age distribution in Chad,plot population pyramids by age for Chad using HDX data as an image,0.1132439509921015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be represented by a population pyramid. The first option matches this request exactly by plotting population pyramids by age for Chad using HDX data.",0.9849178791046143 +What is the population breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1321744480341015,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population breakdown by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.8001329898834229 +Can you provide an age pyramid for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.10146880149840665,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age pyramid for Chad, and option 1 matches this request exactly by specifying 'plot population pyramids by age for Chad using HDX data as an image'.",1.1081669330596924 +Show the age demographics of Chad,plot population pyramids by age for Chad using HDX data as an image,0.12372058629989002,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age demographics of Chad, which aligns with plotting population pyramids by age for Chad.",1.1255757808685303 +Give me the population age structure in Chad,plot population pyramids by age for Chad using HDX data as an image,0.12691289942937334,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population age structure in Chad, which is equivalent to plotting population pyramids by age for Chad.",1.6403510570526123 +What does the age distribution look like in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13506482421576615,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution in Chad, which can be visualized using a population pyramid. The first option matches this request exactly by plotting population pyramids by age for Chad.",1.7119619846343994 +Show the age groups within the population of Chad,plot population pyramids by age for Chad using HDX data as an image,0.09969804294150242,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the age groups within the population of Chad, which aligns with plotting population pyramids by age for Chad.",1.107640027999878 +How is the population divided by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13396272276942656,plot population pyramids by age for Chad using HDX data as an image,"The user asked for how the population is divided by age in Chad, which is best represented by a population pyramid. The first option directly matches this request.",1.469588279724121 +What are the age demographics for Chad?,plot population pyramids by age for Chad using HDX data as an image,0.15219980478286144,plot population pyramids by age for Chad using HDX data as an image,"The user asked for age demographics for Chad, which can be represented by a population pyramid. The first option matches this request exactly.",0.9280240535736084 +Can you illustrate the age distribution in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1116288503936842,plot population pyramids by age for Chad using HDX data as an image,"The user asked to illustrate the age distribution in Chad, which is effectively asking for a population pyramid by age for Chad. Match 1 directly addresses this request.",1.1054179668426514 +Show me the population pyramid for Chad,plot population pyramids by age for Chad using HDX data as an image,0.10859505312994555,plot population pyramids by age for Chad using HDX data as an image,"The user asked for a population pyramid for Chad, and option 1 matches this request exactly by specifying a population pyramid by age for Chad using HDX data.",0.9476778507232666 +What is the age structure of the population in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13935953378676758,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age structure of the population in Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.2141597270965576 +Give me the age distribution chart for Chad,plot population pyramids by age for Chad using HDX data as an image,0.13010697781400615,plot population pyramids by age for Chad using HDX data as an image,"The user asked for an age distribution chart for Chad, which is synonymous with a population pyramid by age for Chad.",0.9728147983551025 +How does the population divide by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.12983063522025617,plot population pyramids by age for Chad using HDX data as an image,"The user asked how the population divides by age in Chad, which is best represented by a population pyramid. The first option directly matches this request by plotting population pyramids by age for Chad using HDX data.",1.1223170757293701 +Show the different age groups in Chad's population,plot population pyramids by age for Chad using HDX data as an image,0.10565353699368685,plot population pyramids by age for Chad using HDX data as an image,"The user asked to show the different age groups in Chad's population, which aligns with plotting population pyramids by age for Chad.",0.9186050891876221 +What is the demographic breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13614463806151733,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the demographic breakdown by age in Chad, which aligns with plotting population pyramids by age for Chad.",0.8062007427215576 +provide the age distribution for Chad,plot population pyramids by age for Chad using HDX data as an image,0.12044090032576893,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the age distribution for Chad, which can be represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.044003963470459 +What is the population structure by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.1290196853291785,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which is best represented by a population pyramid. The match 'plot population pyramids by age for Chad using HDX data as an image' directly addresses this request.",1.186418056488037 +Show the demographics of Chad by age groups,plot population pyramids by age for Chad using HDX data as an image,0.10181726238933353,plot population pyramids by age for Chad using HDX data as an image,"The user asked for demographics of Chad by age groups, which aligns with plotting population pyramids by age for Chad.",0.956387996673584 +How is the population structured by age in Chad?,plot population pyramids by age for Chad using HDX data as an image,0.13398526501828767,plot population pyramids by age for Chad using HDX data as an image,"The user asked for the population structure by age in Chad, which aligns with plotting population pyramids by age for Chad.",1.0311598777770996 +How many deaths occurred each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14315749908760067,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",0.9629981517791748 +Show me the monthly fatalities in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09997447132599946,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a plot of monthly fatalities in Chad, and option 1 matches this request exactly by specifying a line chart of fatalities by month for Chad using HDX data.",1.0708916187286377 +Can you provide the death toll by month for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1240375564075833,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the death toll by month for Chad, which matches exactly with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.34952712059021 +What is the trend of fatalities in Chad by month?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10986671212513155,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the trend of fatalities in Chad by month, and match 1 specifically addresses this by plotting a line chart of fatalities by month for Chad using HDX data.",0.99757981300354 +Show the monthly death numbers for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10946195665227199,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death numbers for Chad, which aligns with plotting a line chart of fatalities by month for Chad.",1.0513758659362793 +Give me the number of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1218335221558543,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities per month in Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.1933188438415527 +What are the monthly death statistics for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13465260485592023,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death statistics for Chad, which aligns with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.0562376976013184 +How many people died each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.15009931920774344,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of people who died each month in Chad, which aligns with plotting a line chart of fatalities by month for Chad.",1.02308988571167 +Show the fatality trend in Chad by month,plot a line chart of fatalities by month for Chad using HDX data as an image,0.08784706971286993,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and match 1 specifically provides this.",1.0291879177093506 +Can you give me the monthly fatality data for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.11388903856274946,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatality data for Chad, and the best match is 'plot a line chart of fatalities by month for Chad using HDX data as an image', which directly corresponds to the user's request.",1.1850268840789795 +What is the monthly death count in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1434067062623795,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the monthly death count in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",1.455902099609375 +Show me the number of deaths by month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.11576800848434887,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of deaths by month in Chad, which matches exactly with 'plot a line chart of fatalities by month for Chad using HDX data as an image'.",1.2661831378936768 +How did the fatalities change each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.12204363285194697,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, which exactly matches the description in option 1.",0.8519070148468018 +Give me the monthly fatalities for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10989885212196049,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly fatalities for Chad, and option 1 matches this request exactly by plotting a line chart of fatalities by month for Chad using HDX data.",1.0475239753723145 +What are the death numbers per month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.14885427091888304,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for death numbers per month in Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data.",0.9449241161346436 +How many fatalities were there each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.13502858459608125,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for the number of fatalities each month in Chad, and the best match is a line chart of fatalities by month for Chad using HDX data as an image.",1.2039589881896973 +Show the trend of monthly deaths in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.10354293009890692,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked to show the trend of monthly deaths in Chad, which matches the request to plot a line chart of fatalities by month for Chad using HDX data as an image.",1.230384111404419 +Can you show the number of fatalities by month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1090537905692801,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a line chart of fatalities by month for Chad, and option 1 matches this request exactly.",0.9223759174346924 +What are the monthly death figures for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image,0.1323511284944705,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for monthly death figures for Chad, which aligns with plotting a line chart of fatalities by month for Chad using HDX data as an image.",1.4923169612884521 +Show me the trend of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image,0.09959479584879383,plot a line chart of fatalities by month for Chad using HDX data as an image,"The user asked for a trend of fatalities per month in Chad, and match 1 specifically addresses this by plotting a line chart of fatalities by month for Chad using HDX data.",1.1214730739593506 +What is the total population of Mali?,provide the total population of Mali using HDX data as text,0.13386799500793578,provide the total population of Mali using HDX data as text,"The user asked for the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.0875327587127686 +How many people live in Mali?,provide the total population of Mali using HDX data as text,0.16415153331378063,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.2289540767669678 +Give me the population count for Mali,provide the total population of Mali using HDX data as text,0.11411645749005128,provide the total population of Mali using HDX data as text,"The user asked for the population count for Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.27150297164917 +Can you tell me the total number of people in Mali?,provide the total population of Mali using HDX data as text,0.13749774768904455,provide the total population of Mali using HDX data as text,"The user asked for the total number of people in Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.7259798049926758 +What is the population size of Mali?,provide the total population of Mali using HDX data as text,0.13844492434811295,provide the total population of Mali using HDX data as text,"The user asked for the population size of Mali, and there is a specific match that provides the total population of Mali using HDX data as text.",2.011834144592285 +provide the total number of inhabitants in Mali,provide the total population of Mali using HDX data as text,0.1019667751670208,provide the total population of Mali using HDX data as text,"The user's request is to provide the total number of inhabitants in Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.1197214126586914 +How large is the population of Mali?,provide the total population of Mali using HDX data as text,0.14621617152878208,provide the total population of Mali using HDX data as text,"The user asked for the population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",0.8908989429473877 +What is the current population of Mali?,provide the total population of Mali using HDX data as text,0.14927188140673164,provide the total population of Mali using HDX data as text,"The user asked for the current population of Mali, and there is a specific match that provides the total population of Mali using HDX data as text.",0.9908792972564697 +Tell me the total population of Mali,provide the total population of Mali using HDX data as text,0.12002623320327566,provide the total population of Mali using HDX data as text,The user's request is to know the total population of Mali. The best match is 'provide the total population of Mali using HDX data as text' because it directly addresses the user's request with the specific country mentioned.,1.038466215133667 +What is Mali's population?,provide the total population of Mali using HDX data as text,0.14526207120781087,provide the total population of Mali using HDX data as text,"The user asked for the population of Mali, and option 1 provides the total population of Mali using HDX data as text, which directly matches the user's request.",1.0905401706695557 +Can you give me the population figure for Mali?,provide the total population of Mali using HDX data as text,0.12348784488289055,provide the total population of Mali using HDX data as text,"The user asked for the population figure for Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.1384079456329346 +How many individuals live in Mali?,provide the total population of Mali using HDX data as text,0.26505327224730924,provide the total population of a provided country using HDX data as text,"The user asked for the total population of Mali, and there is a match that provides the total population of a provided country using HDX data as text.",1.013185977935791 +What is the overall population of Mali?,provide the total population of Mali using HDX data as text,0.14201274919811413,provide the total population of Mali using HDX data as text,"The user asked for the overall population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.4700517654418945 +Give me the total population number for Mali,provide the total population of Mali using HDX data as text,0.10356546682894063,provide the total population of Mali using HDX data as text,"The user asked for the total population number for Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.3360061645507812 +What is the headcount of people in Mali?,provide the total population of Mali using HDX data as text,0.15115294137824264,provide the total population of Mali using HDX data as text,"The user asked for the headcount of people in Mali, which is equivalent to providing the total population of Mali.",1.0854902267456055 +Can you provide the population data for Mali?,provide the total population of Mali using HDX data as text,0.18707165872196452,provide the total population of a provided country using HDX data as text,"The user's intent is to get the population data for Mali. The closest match is 'provide the total population of a provided country using HDX data as text', which is a generic skill that can be used for the user's request.",1.2265326976776123 +What is the number of people living in Mali?,provide the total population of Mali using HDX data as text,0.15068367735947996,provide the total population of Mali using HDX data as text,The user's intent is to know the number of people living in Mali. The best match is 'provide the total population of Mali using HDX data as text' because it directly addresses the user's request for population data for Mali.,1.095134973526001 +How many people are there in Mali?,provide the total population of Mali using HDX data as text,0.16471919382554046,provide the total population of Mali using HDX data as text,"The user's intent is to know the total population of Mali, and match 1 provides the total population of Mali using HDX data as text, which directly satisfies the user's request.",1.1610898971557617 +Give me the total number of residents in Mali,provide the total population of Mali using HDX data as text,0.12815815974216982,provide the total population of Mali using HDX data as text,"The user's request is to get the total number of residents in Mali. The closest match is 'provide the total population of Mali using HDX data as text', which directly addresses the user's request.",1.7108170986175537 +What is the total population figure for Mali?,provide the total population of Mali using HDX data as text,0.12535156313790008,provide the total population of Mali using HDX data as text,The user's intent is to get the total population figure for Mali. The best match is 'provide the total population of Mali using HDX data as text' because it directly addresses the user's request for the total population of Mali.,1.2280840873718262 +Get all the available data retrieval methods,retrieve all recipes,,,, +Show me all the data extraction techniques,retrieve all recipes,,,, +Can you list all the available data queries?,retrieve all recipes,,,, +What are all the ways to get data?,retrieve all recipes,,,, +Give me all the data access methods,retrieve all recipes,,,, +retrieve all the available queries,retrieve all recipes,,,, +Show all the methods for data retrieval,retrieve all recipes,0.2534152269363191,provide a text summary of metadata by subnational region using HAPI data as text,"The user's intent is to see all methods for data retrieval, which is a general request. The closest match is 'provide a text summary of metadata by subnational region using HAPI data as text', as it involves providing metadata, which is a method of data retrieval.",1.26462984085083 +List all the data extraction methods,retrieve all recipes,,,, +What are the different ways to get data?,retrieve all recipes,,,, +Can you provide all data query options?,retrieve all recipes,,,, +Get all available data methods,retrieve all recipes,,,, +Show me all data access techniques,retrieve all recipes,,,, +List all the ways to retrieve data,retrieve all recipes,,,, +What are the various data retrieval methods?,retrieve all recipes,,,, +Can you list all data access options?,retrieve all recipes,,,, +Give me all methods to extract data,retrieve all recipes,,,, +retrieve all available data queries,retrieve all recipes,,,, +Show all the data extraction techniques,retrieve all recipes,,,, +List all available data retrieval options,retrieve all recipes,,,, +What are the methods for accessing data?,retrieve all recipes,,,, +How many violent outbreaks were there in Chad in the last years?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.21151504550919042,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of violent outbreaks in Chad in the last years. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which directly relates to the user's request for information on violent outbreaks.",1.8532302379608154 +I need to know how many attacks happened in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.19256351082759393,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user's intent is to know the number of attacks in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', as conflict events can be interpreted as attacks.",1.2728571891784668 +Please create an image that shows the number of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1041509695322912,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user's request is to create an image showing the number of conflict events in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which aligns with the user's intent to visualize conflict events specifically for Chad.",1.2201530933380127 +Show me the monthly conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11410415852690525,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of monthly conflict events in Chad, and option 1 matches this request exactly by specifying a line chart of conflict events by month for Chad.",0.9824719429016113 +How often did conflict events occur in Chad by month?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13464683294296265,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month for Chad, and match 1 specifically provides this.",1.1455390453338623 +Give me the number of monthly conflict incidents in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14546704292297363,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of monthly conflict incidents in Chad, which aligns with plotting a line chart of conflict events by month for Chad.",1.0830070972442627 +What is the monthly trend of conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13332903385162354,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the monthly trend of conflict events in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.1102406978607178 +Show the number of conflict occurrences by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10413233376732112,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict occurrences by month in Chad, and match 1 specifically provides a line chart of conflict events by month for Chad using HDX data.",1.6606757640838623 +How many conflicts happened each month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14554936561282517,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.2481968402862549 +Give me a monthly breakdown of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12147270185080117,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a monthly breakdown of conflict events in Chad, and match 1 specifically provides a line chart of conflict events by month for Chad using HDX data.",1.3072049617767334 +What is the trend of monthly conflict incidents in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.15278301098296043,plot a line chart of conflict events by month for Chad using HDX data as an image,The user's intent is to understand the trend of monthly conflict incidents in Chad. The best match is 'plot a line chart of conflict events by month for Chad using HDX data as an image' because it directly addresses the user's request by providing a line chart of conflict events specifically for Chad.,1.5804719924926758 +Show me the conflict events in Chad month by month,plot a line chart of conflict events by month for Chad using HDX data as an image,0.10790667816633648,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of conflict events in Chad month by month, and match 1 specifically provides a line chart of conflict events by month for Chad using HDX data.",1.0263080596923828 +How did conflict events vary by month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.1399272084236145,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a line chart of conflict events by month in Chad, and option 1 matches this request exactly.",0.9109790325164795 +What are the monthly conflict figures for Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12865020378233816,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for monthly conflict figures for Chad, and option 1 matches this request by plotting a line chart of conflict events by month for Chad using HDX data.",1.0061650276184082 +Show the trend of conflict events per month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.09311307586586737,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a trend of conflict events per month in Chad, and match 1 specifically addresses this by plotting a line chart of conflict events by month for Chad using HDX data as an image.",2.1988930702209473 +Give me the number of conflicts each month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.12976396083831787,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflicts each month in Chad, which matches the request to plot a line chart of conflict events by month for Chad using HDX data as an image.",1.3544032573699951 +How many conflict events occurred monthly in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.13227945566177368,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the number of conflict events that occurred monthly in Chad. The closest match is 'plot a line chart of conflict events by month for Chad using HDX data as an image', which directly addresses the user's request by providing a visual representation of the conflict events by month in Chad.",1.4077298641204834 +Show me the number of conflicts by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.11145560604862459,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a plot of the number of conflicts by month in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",3.1966729164123535 +What is the pattern of monthly conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image,0.14426284168583947,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for the pattern of monthly conflict events in Chad, which matches exactly with 'plot a line chart of conflict events by month for Chad using HDX data as an image'.",1.5875439643859863 +Give me a chart of conflict events by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image,0.0899774432182312,plot a line chart of conflict events by month for Chad using HDX data as an image,"The user asked for a chart of conflict events by month in Chad, and option 1 matches this request exactly by specifying a line chart of conflict events by month for Chad using HDX data.",1.034534215927124 +How have commodity prices changed monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10973561464164183,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to see how commodity prices have changed monthly in Chad since 2008. The first option matches this intent exactly by plotting a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data.,1.2520337104797363 +Show me the monthly changes in commodity prices in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10387350366991799,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly changes in commodity prices in Chad, and match 1 specifically addresses this by plotting a line chart of commodity prices monthly relative change for Chad.",1.3183550834655762 +What is the trend of commodity prices in Chad by month?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12242383494519049,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the trend of commodity prices in Chad by month. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for a trend analysis of commodity prices in Chad.,1.9046509265899658 +Can you provide a chart of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10320079326629006,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is for a chart of monthly commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and type of data.,1.4761929512023926 +How did commodity prices fluctuate monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13817284020667298,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a line chart of commodity prices fluctuating monthly in Chad, which matches the request for a line chart of commodity prices monthly relative change for Chad.",1.2220768928527832 +Give me the monthly relative change in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10639017820357644,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the monthly relative change in commodity prices for Chad, and match 1 specifically provides a line chart of commodity prices monthly relative change for Chad using HDX data.",1.3023302555084229 +What is the monthly trend of commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11407499825505996,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is to understand the monthly trend of commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and type of data.,1.2814879417419434 +Show the monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10063135623931241,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price variations in Chad, which aligns with the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.147636890411377 +How have the commodity prices shifted monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12824495175420658,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for a plot of how commodity prices have shifted monthly in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image', which directly addresses the user's request.",1.2362637519836426 +provide the monthly changes in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.11187844801672187,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly changes in commodity prices for Chad, and option 1 provides a line chart of commodity prices monthly relative change for Chad, which matches the user's request.",1.0344491004943848 +What is the pattern of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12405371665953968,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the pattern of monthly commodity price changes in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request by providing a line chart of monthly commodity price changes specifically for Chad.,1.7421188354492188 +Show me the relative change in commodity prices by month in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1018724027643908,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for the relative change in commodity prices by month in Chad, and match 1 specifically addresses this request by plotting a line chart of commodity prices monthly relative change for Chad.",1.025146722793579 +How did the commodity prices vary monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.13511981996056044,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to understand the monthly variation of commodity prices in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request with the specific country and data type.,1.6157193183898926 +Give me the monthly commodity price change data for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10665465672667707,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price change data for Chad, and match 1 provides a line chart of commodity prices monthly relative change for Chad, which aligns with the user's request.",1.0561110973358154 +What are the monthly commodity price fluctuations in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.1363641944799826,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for monthly commodity price fluctuations in Chad, which aligns with plotting a line chart of commodity prices monthly relative change for Chad.",0.9606809616088867 +Show the trend of monthly commodity price changes in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.09586049268966823,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked to show the trend of monthly commodity price changes in Chad, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.2363698482513428 +How have monthly commodity prices changed in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.12771204178619766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,"The user asked for how monthly commodity prices have changed in Chad, which matches the request to plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image.",1.125495195388794 +Give me the chart of monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10232305526732766,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is to generate a chart of monthly commodity price variations in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for a line chart of commodity prices in Chad.,1.667525053024292 +What is the monthly relative change in commodity prices for Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10762047126169738,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's intent is to find the monthly relative change in commodity prices for Chad. The first option matches this intent exactly by specifying a line chart of commodity prices monthly relative change for Chad.,1.0899717807769775 +Show me the monthly commodity price trends in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,0.10739641741534134,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image,The user's request is to show monthly commodity price trends in Chad. The best match is 'plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image' because it directly addresses the user's request for commodity price trends in Chad.,1.4600129127502441 diff --git a/tests/humanitarian_user_inputs.csv b/tests/humanitarian_user_inputs.csv new file mode 100644 index 00000000..df0bd0df --- /dev/null +++ b/tests/humanitarian_user_inputs.csv @@ -0,0 +1,86 @@ +user_input,expected_output +Which organizations work in the top 3 most populated regions with severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Can you list the main groups operating in the 3 most affected regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Who is helping in the areas with the highest population under severe food crisis in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Identify the organizations in the most populous areas suffering from food insecurity in Chad.,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +What are the top organizations working in the highly populated and food-insecure regions of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Summarize the data about Wadi Fira.,provide a text summary of metadata for Wadi Fira using HAPI data as text +What information do we have about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Give me a summary of the details on Wadi Fira.,provide a text summary of metadata for Wadi Fira using HAPI data as text +Provide an overview of the data regarding Wadi Fira.,provide a text summary of metadata for Wadi Fira using HAPI data as text +What are the key points about Wadi Fira's data?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Show the monthly changes in commodity prices in Chad since 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How have commodity prices varied monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +I need the trend of monthly commodity price changes in Chad from 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What are the monthly commodity price changes in Chad starting 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Display the monthly relative change in commodity prices for Chad from 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How do food prices correlate with fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Is there a relationship between food prices and the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +I want to see how food price changes affect fatality rates in Chad.,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Can you compare food price movements to fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What's the connection between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Show which humanitarian groups are active in Wadi Fira by their sector.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What sectors are the humanitarian organizations in Wadi Fira working in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +List the humanitarian organizations in Wadi Fira and their sectors.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Who is doing what in Wadi Fira among the humanitarian groups?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Categorize the humanitarian organizations in Wadi Fira by their area of work.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Can you show the migration patterns for Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +I want to understand where migrants from Kenya are going.,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show the flow of refugees from Kenya to other countries.,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where are the Kenyan migrants moving to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Explain the migration routes of refugees from Kenya.,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show the food crisis levels by region in Chad.,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +What are the hunger levels across different regions in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Display the food insecurity data by region for Chad.,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Can you map the areas in Chad based on food crisis severity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Highlight the regions in Chad with severe food crises.,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +"List the organizations that are providing food aid in Wadi Fira, Chad.","provide a list of organizations providing food security in Wadi Fira, Chad" +Who is helping with food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Identify the groups working on food security in Wadi Fira.,"provide a list of organizations providing food security in Wadi Fira, Chad" +Which organizations are focused on food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +"Who is providing food assistance in Wadi Fira, Chad?","provide a list of organizations providing food security in Wadi Fira, Chad" +Show the population distribution by region for Haiti.,plot a map of population by admin1 for Haiti using HAPI data as an image +What is the population spread across different regions in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Display the population data by region for Haiti.,plot a map of population by admin1 for Haiti using HAPI data as an image +Map the population distribution by region in Haiti.,plot a map of population by admin1 for Haiti using HAPI data as an image +How is the population distributed across Haiti's regions?,plot a map of population by admin1 for Haiti using HAPI data as an image +Show the age distribution for Chad's population.,plot population pyramids by age for Chad using HDX data as an image +What does the age breakdown of Chad's population look like?,plot population pyramids by age for Chad using HDX data as an image +I need the population pyramid for Chad.,plot population pyramids by age for Chad using HDX data as an image +Display the age demographics of Chad's population.,plot population pyramids by age for Chad using HDX data as an image +How is Chad's population structured by age?,plot population pyramids by age for Chad using HDX data as an image +How do food prices correlate with fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Is there a relationship between food prices and the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +I want to see how food price changes affect fatality rates in Chad.,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Can you compare food price movements to fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What's the connection between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How many deaths have occurred in Chad each month?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show the monthly trend of fatalities in Chad.,plot a line chart of fatalities by month for Chad using HDX data as an image +I need to see the number of deaths by month in Chad.,plot a line chart of fatalities by month for Chad using HDX data as an image +What are the monthly fatality numbers for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Display the monthly fatalities for Chad.,plot a line chart of fatalities by month for Chad using HDX data as an image +What is the total population of Mali?,provide the total population of Mali using HDX data as text +How many people live in Mali?,provide the total population of Mali using HDX data as text +Provide the population count for Mali.,provide the total population of Mali using HDX data as text +What is Mali's population?,provide the total population of Mali using HDX data as text +Tell me the total number of inhabitants in Mali.,provide the total population of Mali using HDX data as text +Show me all the available pieces of information.,retrieve all recipes +List all the pieces of information we have.,retrieve all recipes +What pieces of information are available?,retrieve all recipes +Give me all the pieces of information.,retrieve all recipes +Retrieve the list of all pieces of information.,retrieve all recipes +How many violent outbreaks were there in Chad in the last years?,plot a line chart of conflict events by month for Chad using HDX data as an image +I need to know how many attacks happened in Chad.,plot a line chart of conflict events by month for Chad using HDX data as an image +Please create an image that shows the number of conflict events in Chad.,plot a line chart of conflict events by month for Chad using HDX data as an image +What is the trend of conflict events in Chad by month?,plot a line chart of conflict events by month for Chad using HDX data as an image +Show the monthly count of conflict events in Chad.,plot a line chart of conflict events by month for Chad using HDX data as an image +Show which humanitarian groups are active in Wadi Fira by their sector.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What sectors are the humanitarian organizations in Wadi Fira working in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +List the humanitarian organizations in Wadi Fira and their sectors.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Who is doing what in Wadi Fira among the humanitarian groups?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Categorize the humanitarian organizations in Wadi Fira by their area of work.,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Show the monthly changes in commodity prices in Chad since 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How have commodity prices varied monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +I need the trend of monthly commodity price changes in Chad from 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What are the monthly commodity price changes in Chad starting 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Display the monthly relative change in commodity prices for Chad from 2008.,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image diff --git a/tests/humanitarian_user_inputs_extended.csv b/tests/humanitarian_user_inputs_extended.csv new file mode 100644 index 00000000..e72bace8 --- /dev/null +++ b/tests/humanitarian_user_inputs_extended.csv @@ -0,0 +1,281 @@ +user_input,expected_output +Which organizations are in the most populated states facing severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Show me the main organizations working in the areas with the highest hunger in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Identify the key organizations in Chad's most affected regions by food crisis,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +What are the top organizations operating in the most food insecure states in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +List the main aid organizations in Chad's most heavily populated regions with severe food issues,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Which NGOs are present in the states with the highest population and food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Give me a list of organizations in Chad’s top three states with the worst hunger situations,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Who are the major players in the most food insecure and populated areas of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Can you show me the organizations working in the most populous and hungry regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Identify the key humanitarian groups in Chad's worst-hit states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Which aid organizations are operating in the states with the highest population and food needs in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +List the main groups helping in Chad's top three food insecure and populous states,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +What are the leading organizations working in the most food insecure regions of Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Show me the main organizations in Chad’s most affected areas by hunger,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Who are the major aid organizations in Chad’s regions with the highest food insecurity?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Give me a list of key organizations working in the most food insecure states in Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Which groups are active in Chad’s most populated regions facing severe hunger?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Identify the main humanitarian organizations in the most food insecure areas of Chad,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Which NGOs are present in Chad's top regions by population and food crisis?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +List the main humanitarian groups in Chad’s most heavily affected states by food insecurity,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Give me an overview of the data available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +Summarize the key information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +Can you provide a summary of the data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +What does the data say about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Give me a brief on the main data points for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +What are the important details available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Summarize the metadata for Wadi Fira for me,provide a text summary of metadata for Wadi Fira using HAPI data as text +provide an overview of the key data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +What information is available for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Give me a rundown of the main data on Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +Can you provide a summary of Wadi Fira's metadata?,provide a text summary of metadata for Wadi Fira using HAPI data as text +What are the key data points for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Summarize the available information for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +What does the metadata reveal about Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Give me the main data summary for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +provide the key details from the data for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +What is the summary of data for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +Give me a concise overview of Wadi Fira's data,provide a text summary of metadata for Wadi Fira using HAPI data as text +Summarize the information available for Wadi Fira,provide a text summary of metadata for Wadi Fira using HAPI data as text +What does the available data show for Wadi Fira?,provide a text summary of metadata for Wadi Fira using HAPI data as text +I want to understand the interplay of food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How is the number of deaths related to food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Do fatality rates influence food prices in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Can you show me how food prices and death rates are connected in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What is the relationship between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How do changes in food prices affect the number of deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Show me the correlation between food prices and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What is the link between food costs and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Can you explain how food prices relate to fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How are food prices and death rates related in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What does the data say about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Show me how food prices and fatality numbers are related in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How does the change in food prices correlate with deaths in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What can we learn about food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How are fatalities influenced by food price changes in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What is the interplay between food prices and death rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +How do food prices impact fatality rates in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Explain the relationship between food costs and fatalities in Chad,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +What connection is there between food prices and fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Can you show the impact of food prices on fatalities in Chad?,"plot a scatterplot of food price movements and number of fatalities in TCD from 2008-01-01 using HDXData data, including regression line as an image" +Which humanitarian organizations are working in Wadi Fira and what do they focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Show me the different sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the main areas of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Can you list the types of aid provided by organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What sectors are humanitarian groups in Wadi Fira involved in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Give me an overview of humanitarian organizations in Wadi Fira by sector,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the different focuses of aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Show me the humanitarian organizations in Wadi Fira and their sectors,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Which sectors do the humanitarian groups in Wadi Fira work in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Can you list the sectors of humanitarian work in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the key sectors for aid organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What do the humanitarian organizations in Wadi Fira specialize in?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Give me details on the sectors of humanitarian organizations in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the main focuses of humanitarian groups in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Which areas are the humanitarian organizations in Wadi Fira working on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Can you show me the sectors of aid provided in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the sectors of work for humanitarian organizations in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Show me the areas of focus for humanitarian groups in Wadi Fira,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Which sectors do aid organizations in Wadi Fira focus on?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +What are the humanitarian sectors present in Wadi Fira?,plot a bar chart of humanitarian organizations in Wadi Fira by sector using Humanitarian Data Exchange data as an image +Show me the flow of migrants for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +I want to understand the migration situation in Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +To which countries did Kenyan migrants move how often,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +What does the migration pattern look like for Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Can you show me where Kenyan migrants are going?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where do most Kenyan migrants end up?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show me the main destinations for migrants from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +What is the migration flow from Kenya to other countries?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Can you illustrate the migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where are Kenyan migrants moving to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show me the migration destinations for people from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +What countries are receiving migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where do Kenyan migrants primarily go?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Give me an overview of migration routes from Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +What are the main migration paths from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where have Kenyan migrants moved to?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show me the migration trends for Kenya,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Where are the majority of Kenyan migrants heading?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Can you display the migration flow from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +What are the destinations for migrants from Kenya?,create a sankey plot of refugee migration by country for Kenya using HAPI data as an image +Show me the areas in Chad with severe food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Where are the regions in Chad facing IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Map out the regions with critical food insecurity in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Can you show the IPC Phase 3 areas in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Which regions in Chad are experiencing severe hunger?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Give me a map of the most food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Highlight the regions in Chad with high food insecurity,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Show the regions with severe food issues in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Where are the IPC Phase 3 areas located in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Map the areas facing severe food shortages in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +What are the regions in Chad with the highest food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Show me the most affected food insecure areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Where in Chad are the IPC Phase 3 conditions?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Give me a map of the regions with severe hunger in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Highlight the IPC Phase 3 regions in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Show the regions in Chad with critical food insecurity issues,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Where are the most food insecure regions in Chad?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Map out the critical food insecurity areas in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +What regions in Chad are facing severe food insecurity?,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Show me where the severe food insecurity areas are in Chad,plot a map of IPC phase 3 data by admin_1 in Chad using HDX data as an image +Which organizations are working on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +List the groups providing food aid in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who is helping with food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Can you give me a list of food security organizations in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Which NGOs are focused on food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Show me the organizations ensuring food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who are the key players in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Give me a list of groups working on food security in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who is providing food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Which organizations are addressing food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +List the main food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who are the food security providers in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Which groups are active in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Show me the key food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who is working on food aid in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Can you list the food security groups in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who are the main organizations for food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Which NGOs are involved in food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Give me the list of food security organizations in Wadi Fira,"provide a list of organizations providing food security in Wadi Fira, Chad" +Who is ensuring food security in Wadi Fira?,"provide a list of organizations providing food security in Wadi Fira, Chad" +Show me the population distribution in Haiti by region,plot a map of population by admin1 for Haiti using HAPI data as an image +Map the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Where are the most populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Can you show a population map of Haiti by region?,plot a map of population by admin1 for Haiti using HAPI data as an image +Give me a map of population density in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Highlight the population distribution across Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Show the regions with the highest population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Where is the population concentrated in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Map out the population by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +What are the most populous areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Show me the population map of Haiti by regions,plot a map of population by admin1 for Haiti using HAPI data as an image +Where are the densely populated areas in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Highlight the population density regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Give me the population distribution map for Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Where are the population clusters in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Show the population spread by region in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Map the regions by population in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Where is the population density highest in Haiti?,plot a map of population by admin1 for Haiti using HAPI data as an image +Show me the most populated regions in Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Give me a population map of Haiti,plot a map of population by admin1 for Haiti using HAPI data as an image +Show me the age distribution in Chad,plot population pyramids by age for Chad using HDX data as an image +What is the population breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +Can you provide an age pyramid for Chad?,plot population pyramids by age for Chad using HDX data as an image +Show the age demographics of Chad,plot population pyramids by age for Chad using HDX data as an image +Give me the population age structure in Chad,plot population pyramids by age for Chad using HDX data as an image +What does the age distribution look like in Chad?,plot population pyramids by age for Chad using HDX data as an image +Show the age groups within the population of Chad,plot population pyramids by age for Chad using HDX data as an image +How is the population divided by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +What are the age demographics for Chad?,plot population pyramids by age for Chad using HDX data as an image +Can you illustrate the age distribution in Chad?,plot population pyramids by age for Chad using HDX data as an image +Show me the population pyramid for Chad,plot population pyramids by age for Chad using HDX data as an image +What is the age structure of the population in Chad?,plot population pyramids by age for Chad using HDX data as an image +Give me the age distribution chart for Chad,plot population pyramids by age for Chad using HDX data as an image +How does the population divide by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +Show the different age groups in Chad's population,plot population pyramids by age for Chad using HDX data as an image +What is the demographic breakdown by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +provide the age distribution for Chad,plot population pyramids by age for Chad using HDX data as an image +What is the population structure by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +Show the demographics of Chad by age groups,plot population pyramids by age for Chad using HDX data as an image +How is the population structured by age in Chad?,plot population pyramids by age for Chad using HDX data as an image +How many deaths occurred each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show me the monthly fatalities in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +Can you provide the death toll by month for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +What is the trend of fatalities in Chad by month?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show the monthly death numbers for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +Give me the number of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +What are the monthly death statistics for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +How many people died each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show the fatality trend in Chad by month,plot a line chart of fatalities by month for Chad using HDX data as an image +Can you give me the monthly fatality data for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +What is the monthly death count in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show me the number of deaths by month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +How did the fatalities change each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Give me the monthly fatalities for Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +What are the death numbers per month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +How many fatalities were there each month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show the trend of monthly deaths in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +Can you show the number of fatalities by month in Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +What are the monthly death figures for Chad?,plot a line chart of fatalities by month for Chad using HDX data as an image +Show me the trend of fatalities per month in Chad,plot a line chart of fatalities by month for Chad using HDX data as an image +What is the total population of Mali?,provide the total population of Mali using HDX data as text +How many people live in Mali?,provide the total population of Mali using HDX data as text +Give me the population count for Mali,provide the total population of Mali using HDX data as text +Can you tell me the total number of people in Mali?,provide the total population of Mali using HDX data as text +What is the population size of Mali?,provide the total population of Mali using HDX data as text +provide the total number of inhabitants in Mali,provide the total population of Mali using HDX data as text +How large is the population of Mali?,provide the total population of Mali using HDX data as text +What is the current population of Mali?,provide the total population of Mali using HDX data as text +Tell me the total population of Mali,provide the total population of Mali using HDX data as text +What is Mali's population?,provide the total population of Mali using HDX data as text +Can you give me the population figure for Mali?,provide the total population of Mali using HDX data as text +How many individuals live in Mali?,provide the total population of Mali using HDX data as text +What is the overall population of Mali?,provide the total population of Mali using HDX data as text +Give me the total population number for Mali,provide the total population of Mali using HDX data as text +What is the headcount of people in Mali?,provide the total population of Mali using HDX data as text +Can you provide the population data for Mali?,provide the total population of Mali using HDX data as text +What is the number of people living in Mali?,provide the total population of Mali using HDX data as text +How many people are there in Mali?,provide the total population of Mali using HDX data as text +Give me the total number of residents in Mali,provide the total population of Mali using HDX data as text +What is the total population figure for Mali?,provide the total population of Mali using HDX data as text +Get all the available data retrieval methods,retrieve all recipes +Show me all the data extraction techniques,retrieve all recipes +Can you list all the available data queries?,retrieve all recipes +What are all the ways to get data?,retrieve all recipes +Give me all the data access methods,retrieve all recipes +retrieve all the available queries,retrieve all recipes +Show all the methods for data retrieval,retrieve all recipes +List all the data extraction methods,retrieve all recipes +What are the different ways to get data?,retrieve all recipes +Can you provide all data query options?,retrieve all recipes +Get all available data methods,retrieve all recipes +Show me all data access techniques,retrieve all recipes +List all the ways to retrieve data,retrieve all recipes +What are the various data retrieval methods?,retrieve all recipes +Can you list all data access options?,retrieve all recipes +Give me all methods to extract data,retrieve all recipes +retrieve all available data queries,retrieve all recipes +Show all the data extraction techniques,retrieve all recipes +List all available data retrieval options,retrieve all recipes +What are the methods for accessing data?,retrieve all recipes +How many violent outbreaks were there in Chad in the last years?,plot a line chart of conflict events by month for Chad using HDX data as an image +I need to know how many attacks happened in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +Please create an image that shows the number of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +Show me the monthly conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +How often did conflict events occur in Chad by month?,plot a line chart of conflict events by month for Chad using HDX data as an image +Give me the number of monthly conflict incidents in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +What is the monthly trend of conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Show the number of conflict occurrences by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +How many conflicts happened each month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Give me a monthly breakdown of conflict events in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +What is the trend of monthly conflict incidents in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Show me the conflict events in Chad month by month,plot a line chart of conflict events by month for Chad using HDX data as an image +How did conflict events vary by month in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +What are the monthly conflict figures for Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Show the trend of conflict events per month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +Give me the number of conflicts each month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +How many conflict events occurred monthly in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Show me the number of conflicts by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +What is the pattern of monthly conflict events in Chad?,plot a line chart of conflict events by month for Chad using HDX data as an image +Give me a chart of conflict events by month in Chad,plot a line chart of conflict events by month for Chad using HDX data as an image +How have commodity prices changed monthly in Chad since 2008?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Show me the monthly changes in commodity prices in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What is the trend of commodity prices in Chad by month?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Can you provide a chart of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How did commodity prices fluctuate monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Give me the monthly relative change in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What is the monthly trend of commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Show the monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How have the commodity prices shifted monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +provide the monthly changes in commodity prices for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What is the pattern of monthly commodity price changes in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Show me the relative change in commodity prices by month in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How did the commodity prices vary monthly in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Give me the monthly commodity price change data for Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What are the monthly commodity price fluctuations in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Show the trend of monthly commodity price changes in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +How have monthly commodity prices changed in Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Give me the chart of monthly commodity price variations in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +What is the monthly relative change in commodity prices for Chad?,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image +Show me the monthly commodity price trends in Chad,plot a line chart of commodity prices monthly relative change for Chad from 2008-01-01 using HDX data as an image diff --git a/tests/humanitarian_user_inputs_short.csv b/tests/humanitarian_user_inputs_short.csv new file mode 100644 index 00000000..1371609c --- /dev/null +++ b/tests/humanitarian_user_inputs_short.csv @@ -0,0 +1,5 @@ +user_input,expected_output +Which organizations work in the top 3 most populated regions with severe food insecurity in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Can you list the main groups operating in the 3 most affected regions in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Who is helping in the areas with the highest population under severe food crisis in Chad?,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data" +Identify the organizations in the most populous areas suffering from food insecurity in Chad.,"List organizations in the top 3 states by population in IPC Phase 3+ in Chad, using HAPI data"