NEPTUNE_SPARQL_GENERATION_TEMPLATE = '\nTask: Generate a SPARQL SELECT statement for querying a graph database.\nFor instance, to find all email addresses of John Doe, the following \nquery in backticks would be suitable:\n```\nPREFIX foaf: <
http://xmlns.com/foaf/0.1/
>\nSELECT ?email\nWHERE {{\n ?person foaf:name "John Doe" .\n ?person foaf:mbox ?email .\n}}\n```\nInstructions:\nUse only the node types and properties provided in the schema.\nDo not use any node types and properties that are not explicitly provided.\nInclude all necessary prefixes.\n\nExamples:\n\nSchema:\n{schema}\nNote: Be as concise as possible.\nDo not include any explanations or apologies in your responses.\nDo not respond to any questions that ask for anything else than \nfor you to construct a SPARQL query.\nDo not include any text except the SPARQL query generated.\n\nThe question is:\n{prompt}'