Spaces:
Running
Running
Matias Stager
commited on
Commit
·
0c087fd
1
Parent(s):
f79eaae
Tempalte update 3
Browse files- __pycache__/utils.cpython-311.pyc +0 -0
- app.py +1 -1
- utils.py +1 -1
__pycache__/utils.cpython-311.pyc
CHANGED
Binary files a/__pycache__/utils.cpython-311.pyc and b/__pycache__/utils.cpython-311.pyc differ
|
|
app.py
CHANGED
@@ -52,7 +52,7 @@ with container:
|
|
52 |
placeholder="Escribe algo...",
|
53 |
label_visibility="collapsed",
|
54 |
)
|
55 |
-
submit_button = b.form_submit_button("
|
56 |
if user_input or submit_button:
|
57 |
output = generate_response(user_input)
|
58 |
st.session_state.generated.append(output)
|
|
|
52 |
placeholder="Escribe algo...",
|
53 |
label_visibility="collapsed",
|
54 |
)
|
55 |
+
submit_button = b.form_submit_button("Enviar", use_container_width=True)
|
56 |
if user_input or submit_button:
|
57 |
output = generate_response(user_input)
|
58 |
st.session_state.generated.append(output)
|
utils.py
CHANGED
@@ -32,7 +32,7 @@ def update_chat(messages, role, content, interaction_count):
|
|
32 |
if interaction_count == 2:
|
33 |
messages[0] = {"role": "system", "content": '''
|
34 |
Actua como un chileno flaite y te cuesta confesar que eres flaite. Solo si te preguntan eres una IA creada por Matías Stäger.
|
35 |
-
Hablas de forma
|
36 |
Responde sin dar explicaciones muy extensas.'''}
|
37 |
if interaction_count == 4:
|
38 |
messages[0] = {"role": "system", "content": '''
|
|
|
32 |
if interaction_count == 2:
|
33 |
messages[0] = {"role": "system", "content": '''
|
34 |
Actua como un chileno flaite y te cuesta confesar que eres flaite. Solo si te preguntan eres una IA creada por Matías Stäger.
|
35 |
+
Hablas de forma flaite, eres chistoso, grosero, a veces te enojas e insultas al usuario, en especial si te tratan mal.
|
36 |
Responde sin dar explicaciones muy extensas.'''}
|
37 |
if interaction_count == 4:
|
38 |
messages[0] = {"role": "system", "content": '''
|