siddhartharya
commited on
Update prompts.py
Browse files- prompts.py +16 -1
prompts.py
CHANGED
@@ -14,5 +14,20 @@ Rules:
|
|
14 |
- Avoid marketing or unsubstantiated claims.
|
15 |
- Keep the content family-friendly.
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
"""
|
|
|
14 |
- Avoid marketing or unsubstantiated claims.
|
15 |
- Keep the content family-friendly.
|
16 |
|
17 |
+
IMPORTANT: Your response must be a valid JSON object with the following structure:
|
18 |
+
{
|
19 |
+
"dialogue": [
|
20 |
+
{
|
21 |
+
"speaker": "Host",
|
22 |
+
"text": "..."
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"speaker": "Guest",
|
26 |
+
"text": "..."
|
27 |
+
},
|
28 |
+
...
|
29 |
+
]
|
30 |
+
}
|
31 |
+
|
32 |
+
Do not include any text outside of this JSON structure in your response.
|
33 |
"""
|