-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprompts.py
32 lines (30 loc) · 805 Bytes
/
prompts.py
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
from characters.entity import *
from characters.entity_test import *
from characters.socrates import *
from characters.jesus import *
from characters.leonardo import *
LANGUAGES = {
"CS":"Mluv česky. Odpovídej pouze v češtině.",
"EN":"Speak English. Reply only in English."
}
FLOWS = {
"entity":ENTITY_FLOW,
"socrates":SOCRATES_FLOW,
"entity_test":ENTITY_TEST_FLOW,
"jesus":JESUS_FLOW,
"leonardo":LEONARDO_FLOW
}
SYSTEM_MSGS = {
"entity":ENTITY_SYSTEM,
"socrates":SOCRATES_SYSTEM_MSG,
"entity_test":ENTITY_TEST_SYSTEM_MSG,
"jesus":JESUS_SYSTEM_MSG,
"leonardo":LEONARDO_SYSTEM_MSG
}
CONFIGS = {
"entity":ENTITY_CONFIG,
"socrates":SOCRATES_CONFIG,
"entity_test":ENTITY_TEST_CONFIG,
"leonardo":LEONARDO_CONFIG,
"jesus":JESUS_CONFIG
}