in projects/inclusive_ai_a_chatgpt_plugin_and_dao_to_engage_marginalized_groups_in_ai/Inclusive.AI app/website/src/pages/vote/index.tsx [398:438]
will use additional user information (e.g., the demographics of
the user who's making the request) to generate a more
diverse range of images.
</li>
<li style={{ padding: '4px 8px' }}>
<b>Track and apply user preferences</b>: Here, the AI will keep
track of user preferences as they use the AI system (e.g., which
one of the generated images they prefer given a specific
request). The AI will use these preferences to generate a wider
variety of images.
</li>
<li style={{ padding: '4px 8px' }}>
<b>Add specific flags or tags in the requests</b>: This allows
users to add specific flags (e.g., excluding any additional
objects in the generated images) or tags (e.g., different art
styles) to their requests, guiding the AI to either personalize
the results or offer a broader range of images.
</li>
</ol>
</Box>
{hasVoted && (
<Box border="1px solid #e7e9ec" borderRadius={4} mt={5}>
<Typography
variant="body1"
fontWeight="bold"
py={2}
px={3}
borderBottom="1px solid #e7e9ec"
>
You have voted! You can edit your vote by re-casting below.
</Typography>
<Stack p={3} spacing={1}>
{proposalChoices.map((choice) => (
<Typography key={choice.index}>
<b>{choice.choice}</b> — {userProposalVotes[choice.index]}{' '}
votes
</Typography>
))}
</Stack>
</Box>
)}