Spaces:
Running
Running
File size: 862 Bytes
e7ef0c0 f79eaae 3eb7ca4 b7ce9ea 7460231 e7ef0c0 b7ce9ea |
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.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") |