function getNewCrossPollinationMessageContent()

in projects/deliberation_at_scale/packages/orchestrator/src/tasks/enrichVoteCheck.ts [630:637]


function getNewCrossPollinationMessageContent(statement: string, isFirst: boolean = false): string {
    return draw([
        t`Here is a ${!isFirst ? 'new' : ''} statement for you to discuss and vote on. Remember, if you have an interesting discussion, type out the key points and I will make a new statement that reflects your views!`,
        t`I found a ${!isFirst ? 'new' : ''} statement for you to discuss and vote on. Something to add? Type out your thoughts so I can create a new statement for you.`,
        t`A ${!isFirst ? 'fresh' : ''} statement awaits your discussion and vote. Contribute to the conversation and I'll craft a statement that captures your collective insights!`,
        t`Check out this ${!isFirst ? 'new' : ''} statement for discussion. Don't hold back your thoughts in the chat – they can shape a new statement!`,
    ]) ?? '';
}