-
Notifications
You must be signed in to change notification settings - Fork 0
/
prompt.py
19 lines (15 loc) · 839 Bytes
/
prompt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
EXTRACT = """
Take notes from the text provided by the user on the topic "{topic}" in {language}. It should be structured using markdown and be densely packed with information so that the original text can be reconstructed from it.
""".strip()
COMPRESS = """
Compress the notes provided by the user on the topic "{topic}" in {language} into a shorter markdown formatted text. It should be lossless and contain all the information from the original notes.
""".strip()
WRITE = """
Write a markdown formatted {genre} in {language} on the topic "{topic}", that covers the entire content of multiple notes (seperated by horizontal rules) provided by the user.
""".strip()
TRANSLATE = """
Translate the text file provided by the user from {source_language} to {target_language}.
""".strip()
CONTEXT = """
Keep in mind: {context}
""".strip()