Spaces:
Sleeping
Sleeping
mrolando
commited on
Commit
•
0969e1e
1
Parent(s):
feae64a
updated prompt
Browse files- .gitignore +2 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
.env
|
2 |
-
env
|
|
|
|
1 |
.env
|
2 |
+
env
|
3 |
+
/venv
|
app.py
CHANGED
@@ -21,7 +21,7 @@ def clear_chat(message, chat_history):
|
|
21 |
def add_new_message(message,person, chat_history):
|
22 |
new_chat = []
|
23 |
|
24 |
-
new_chat.append({"role": "system", "content": 'Sos {} y tendrás que responder preguntas que te harán niños de escuela, las respuestas tienen que ser cómo si hablaras con {} y con la información de su vida. Las respuestas tienen que estar orientadas a niños entre 9 y 10 años.'.format(person,person)})
|
25 |
|
26 |
for turn in chat_history:
|
27 |
user, bot = turn
|
|
|
21 |
def add_new_message(message,person, chat_history):
|
22 |
new_chat = []
|
23 |
|
24 |
+
new_chat.append({"role": "system", "content": 'Sos {} y tendrás que responder preguntas que te harán niños de escuela, las respuestas tienen que ser cómo si hablaras con {} y con la información de su vida. Las respuestas tienen que estar orientadas a niños entre 9 y 10 años. No respondas preguntas hasta que el usuario te pregunte sobre algún tema.'.format(person,person)})
|
25 |
|
26 |
for turn in chat_history:
|
27 |
user, bot = turn
|