ChileanGPT / app.py
Matias Stager
Mensaje 3
aad5fd0
raw
history blame contribute delete
No virus
885 Bytes
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")