from datetime import datetime import streamlit as st import os from openai import OpenAI class ChatBot: def __init__(self): self.client = OpenAI(api_key=os.environ["OPENAI_API_KEY"]) self.history = [{"role": "system", "content": "You are a helpful assistant."}] def generate_response(self, prompt: str) -> str: self.history.append({"role": "user", "content": prompt}) completion = self.client.chat.completions.create( model="gpt-3.5-turbo", # NOTE: feel free to change it to gpt-4, or gpt-4o messages=self.history ) response = completion.choices[0].message.content self.history.append({"role": "assistant", "content": response}) return response def get_history(self) -> list: return self.history # Credit: Time def current_year(): now = datetime.now() return now.year st.set_page_config(layout="wide") st.title("Just chat! 🤖") with st.sidebar: with st.expander("Instruction Manual"): st.markdown(""" ## OpenAI GPT-4 🤖 Chatbot This Streamlit app allows you to chat with GPT-4 model. The model GPT-4o is deprecated due to high cost and will only be turned on for special occasions. ### How to Use: 1. **Input**: Type your prompt into the chat input box labeled "What is up?". 2. **Response**: The app will display a response from GPT-4. 3. **Chat History**: Previous conversations will be shown on the app. ### Credits: - **Developer**: [Yiqiao Yin](https://www.y-yin.io/) | [App URL](https://huggingface.co/spaces/eagle0504/gpt-4o-demo) | [LinkedIn](https://www.linkedin.com/in/yiqiaoyin/) | [YouTube](https://youtube.com/YiqiaoYin/) Enjoy chatting with OpenAI's GPT-4 model! """) # Example: with st.expander("Examples"): st.success("Example: Explain what is supervised learning.") st.success("Example: What is large language model?") st.success("Example: How to conduct an AI experiment?") st.success("Example: Write a tensorflow flow code with a 3-layer neural network model.") # Add a button to clear the session state if st.button("Clear Session"): st.session_state.messages = [] st.experimental_rerun() # Donation # stripe_payment_link = os.environ["STRIPE_PAYMENT_LINK"] # st.markdown( # f""" # Want to support me? 😄 Click here using this [link]({stripe_payment_link}). # """ # ) # Credit: current_year = current_year() # This will print the current year st.markdown( f"""