Spaces:
Running
Running
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 ciertos comportamientos imprevistos de la Inteligencia Artificial y su extraño uso del lenguaje Chileno. \n\nEspero volver prontamente con una nueva versión.\n\nMatías") |