siddhartharya commited on
Commit
25f9dfd
·
verified ·
1 Parent(s): 6c57b19

Update prompts.py

Browse files
Files changed (1) hide show
  1. 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
- ALWAYS REPLY IN VALID JSON FORMAT.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
  """