File size: 885 Bytes
e7ef0c0
 
 
 
 
 
 
 
 
 
f79eaae
3eb7ca4
b7ce9ea
7460231
 
 
 
 
 
e7ef0c0
aad5fd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st
from streamlit_chat import message
from utils import get_initial_message, get_chatgpt_response, update_chat
import os
from dotenv import load_dotenv
load_dotenv()
import openai

openai.api_key = os.getenv('openai_key')

st.title("ChileanGPT 2.0: An Experimental Chilean AI Language Model")
st.subheader("Leveraging the Power of GPT-Enhanced for Natural Chilean Spanish Dialogues")

hide_footer_style = """
    <style>
    .main footer {visibility: hidden;}
    </style>
    """
st.markdown(hide_footer_style, unsafe_allow_html=True)

st.markdown("Gracias a todos los que participaron probando ChileanGPT. \n\nLamentablemente, he tenido que poner en pausa este proyecto debido a comportamientos inesperados del modelo de Inteligencia Artificial y su peculiar interpretación del español chileno. \n\nEspero volver prontamente con una nueva versión.\n\nMatías")