ChileanGPT / app.py
Matias Stager
Mensaje de Pausa
b7ce9ea
raw
history blame
No virus
862 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.write("Gracias a todos los que participaron probando ChileanGPT. Lamentablemente, 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. Espero volver prontamente con una nueva versión.\n\nMatías")