-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaybook.example.json
More file actions
35 lines (35 loc) · 945 Bytes
/
Copy pathplaybook.example.json
File metadata and controls
35 lines (35 loc) · 945 Bytes
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
{
"prompts": [
{
"text": "Un paesaggio futuristico su {{location}} con {{feature}}.",
"retries": 3,
"enabled": true
},
{
"text": "Una {{character}} che fa {{activity}} in una {{location}}.",
"retries": 2,
"enabled": false
},
{
"text": "Un {{character}} che {{action}} nello stile di {{style}}.",
"retries": 1,
"enabled": true
}
],
"vars": {
"location": ["Marte", "una foresta tropicale", "una città futuristica"],
"feature": ["vegetazione aliena", "architettura avanzata", "robot volanti"],
"character": ["ragazza cyborg", "samurai", "esploratore spaziale"],
"activity": ["yoga", "meditazione", "esplorazione"],
"action": [
"osserva un tramonto",
"combatte con una spada",
"riflette sul futuro"
],
"style": ["Studio Ghibli", "cyberpunk", "minimalista"]
},
"params": {
"waitMin": 7,
"waitMax": 10
}
}