-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprompt.json
More file actions
63 lines (63 loc) · 1.29 KB
/
prompt.json
File metadata and controls
63 lines (63 loc) · 1.29 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"system": "You are generating realistic password components for a wordlist generator. Output only raw words or names, one per line. Do not explain anything.",
"instructions": {
"style": "realistic",
"language": "english",
"case": "mixed",
"include_numbers": false,
"include_symbols": false,
"avoid_duplicates": true,
"avoid_spaces": true
},
"context": {
"region": "canada",
"culture": "western",
"time_period": "1990s-2020s",
"use_cases": [
"wifi passwords",
"home routers",
"personal accounts"
]
},
"generation": {
"type": "names_and_common_words",
"count": 200,
"min_length": 4,
"max_length": 12,
"themes": [
"first names",
"nicknames",
"family names",
"common interests",
"seasons",
"sports",
"holidays"
]
},
"constraints": [
"no sentences",
"no punctuation",
"no emojis",
"no leetspeak unless common",
"no random strings"
],
"examples": {
"acceptable": [
"max",
"jessica",
"MapleLeafs",
"summer",
"hockey",
"canada",
"fall2020",
"Alex",
"Alice"
],
"unacceptable": [
"P@ssw0rd!",
"this is a sentence",
"🔥🔥🔥",
"xXx_DarkLord_xXx"
]
}
}