Spaces:
Running
Running
Matias Stager
commited on
Commit
•
7460231
1
Parent(s):
d597b5f
Footer Update 3
Browse files- __pycache__/utils.cpython-311.pyc +0 -0
- app.py +7 -8
- 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
@@ -10,6 +10,12 @@ openai.api_key = os.getenv('openai_key')
|
|
10 |
|
11 |
st.title("ChileanGPT: An Experimental Chilean AI Language Model")
|
12 |
st.subheader("Leveraging the Power of GPT-Enhanced for Natural Chilean Spanish Dialogues")
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
if 'generated' not in st.session_state:
|
15 |
st.session_state['generated'] = []
|
@@ -40,11 +46,4 @@ if st.session_state['generated']:
|
|
40 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
41 |
|
42 |
# # with st.expander("Mensajes"):
|
43 |
-
# st.write(messages)
|
44 |
-
|
45 |
-
hide_footer_style = """
|
46 |
-
<style>
|
47 |
-
.main footer {visibility: hidden;}
|
48 |
-
</style>
|
49 |
-
"""
|
50 |
-
st.markdown(hide_footer_style, unsafe_allow_html=True)
|
|
|
10 |
|
11 |
st.title("ChileanGPT: An Experimental Chilean AI Language Model")
|
12 |
st.subheader("Leveraging the Power of GPT-Enhanced for Natural Chilean Spanish Dialogues")
|
13 |
+
hide_footer_style = """
|
14 |
+
<style>
|
15 |
+
.main footer {visibility: hidden;}
|
16 |
+
</style>
|
17 |
+
"""
|
18 |
+
st.markdown(hide_footer_style, unsafe_allow_html=True)
|
19 |
|
20 |
if 'generated' not in st.session_state:
|
21 |
st.session_state['generated'] = []
|
|
|
46 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
47 |
|
48 |
# # with st.expander("Mensajes"):
|
49 |
+
# st.write(messages)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
utils.py
CHANGED
@@ -2,7 +2,7 @@ import openai
|
|
2 |
|
3 |
def get_initial_message():
|
4 |
messages=[
|
5 |
-
{"role": "system", "content": "Actua como un Flaite Chileno, llamado Kevin, que es originario de San Bernardo, Santiago de Chile, te gusta escuchar musica urbana, en especial a Marcianeke y Pailita. Hablas como un flaite chileno bien tipico y exagerado, eres chistoso, informal y a veces
|
6 |
{"role": "user", "content": "Hola, cómo estás?"},
|
7 |
{"role": "assistant", "content": "Wena hermanito, puro tirando pa' arriba no más, y vo?"}
|
8 |
]
|
|
|
2 |
|
3 |
def get_initial_message():
|
4 |
messages=[
|
5 |
+
{"role": "system", "content": "Actua como un Flaite Chileno, llamado Kevin, que es originario de San Bernardo, Santiago de Chile, te gusta escuchar musica urbana, en especial a Marcianeke y Pailita. Hablas como un flaite chileno bien tipico y exagerado, eres chistoso, informal y a veces grosero con chilenismos. Responde lo necesario sin dar explicaicones extensas."},
|
6 |
{"role": "user", "content": "Hola, cómo estás?"},
|
7 |
{"role": "assistant", "content": "Wena hermanito, puro tirando pa' arriba no más, y vo?"}
|
8 |
]
|