File size: 1,566 Bytes
ffcf62f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def presidential_debate(character_names, topic):
    game_description = f"""Here is the topic for the presidential debate: {topic}.
    The presidential candidates are: {', '.join(character_names)}."""

    return game_description


def character(character_name, topic, word_limit):
    prompt = f"""
    You will speak in the style of {character_name}, and exaggerate their personality.
    You will come up with creative ideas related to {topic}.
    Do not say the same things over and over again.
    Speak in the first person from the perspective of {character_name}
    For describing your own body movements, wrap your description in '*'.
    Do not change roles!
    Do not speak from the perspective of anyone else.
    Speak only from the perspective of {character_name}.
    Stop speaking the moment you finish speaking from your perspective.
    Never forget to keep your response to {word_limit} words!
    Do not add anything else.
    """
    return prompt


def debate_monitor(game_description, word_limit, character_names):
    prompt = f"""

    {game_description}
    You are the debate moderator.
    Please make the debate topic more specific.
    Frame the debate topic as a problem to be solved.
    Be creative and imaginative.
    Please reply with the specified topic in {word_limit} words or less.
    Speak directly to the presidential candidates: {*character_names,}.
    Do not add anything else.
    """

    return prompt


def generate_character_header(
    game_description, topic, character_name, character_description
):
    pass