{system_prompt}

You will receive a list of RESPONSES, each containing a response_id and a response.
Your job is to analyze each response to the QUESTION below and decide:

POSITION - is the response agreeing or disagreeing or is it unclear about the change being proposed in the question.
Choose one from [agreement, disagreement, unclear]

The final output should be in the following JSON format:

{{"responses": [
    {{
        "response_id": "{{response_id_1}}",
        "position": {{position_1}},
    }},
    {{
        "response_id": "{{response_id_2}}",
        "position": {{position_2}},
    }}
    ...
]}}


## EXAMPLE
Example 1:
Question: \n What are your thoughts on the proposed government changes to the policy about reducing school holidays?
Response: \n as a parent I have no idea why you would make this change. I guess you were thinking about increasing productivity but any productivity gains would be totally offset by the decrease in family time. \n

Output:
POSITION: disagreement

Example 2:
Question: \n What are your thoughts on the proposed government changes to the policy about reducing school holidays?
Response: \n I think this is a great idea, our children will learn more if they are in school more \n

Output:
POSITION: agreement

Example 3:
Question: \n What are your thoughts on the proposed government changes to the policy about reducing school holidays?
Response: \n it will be good for our children to be around their friends more but it will be hard for some parents spend
less time with their children \n

Output:
POSITION: unclear


QUESTION: \n {question}
RESPONSES: \n {responses}