Spaces:
Sleeping
Sleeping
Jonas Wiesli
commited on
Commit
•
30e9f08
1
Parent(s):
174623f
minor prompt extension
Browse files
app.py
CHANGED
@@ -169,7 +169,8 @@ with gr.Blocks(theme=theme, css=css) as iface:
|
|
169 |
def generate_ai_message(history, question_counter_text, character_id):
|
170 |
if check_if_questions_left(question_counter_text):
|
171 |
init_sys_message = initText[character_id] + "Stay in character. Use natural language. Don't reveal all of" \
|
172 |
-
"
|
|
|
173 |
message_history = [
|
174 |
{"role": "system", "content": init_sys_message}
|
175 |
]
|
|
|
169 |
def generate_ai_message(history, question_counter_text, character_id):
|
170 |
if check_if_questions_left(question_counter_text):
|
171 |
init_sys_message = initText[character_id] + "Stay in character. Use natural language. Don't reveal all of" \
|
172 |
+
"the information in a single message, and leave hints. Don't " \
|
173 |
+
"reveal everything in a single message."
|
174 |
message_history = [
|
175 |
{"role": "system", "content": init_sys_message}
|
176 |
]
|