majorSeaweed commited on
Commit
5190126
·
verified ·
1 Parent(s): b052025

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -551,7 +551,7 @@ with st.sidebar:
551
 
552
  # Model settings
553
  st.subheader("🛠️ Model Settings")
554
- model_choice = st.selectbox("Select Model", ["OpenAI", "Groq"], key="model_choice")
555
 
556
  if model_choice == "Groq":
557
  groq_model = st.selectbox("Model Version", GROQ_MODELS)
@@ -719,6 +719,6 @@ if st.session_state.pdf_path and not pdf_file:
719
  # Add a footer
720
  st.markdown("""
721
  <div style='position: fixed; bottom: 150px; left: 0; right: 0; text-align: center; padding: 10px; font-size: 0.8em; color: #666;'>
722
- Made with ❤️ using Streamlit
723
  </div>
724
  """, unsafe_allow_html=True)
 
551
 
552
  # Model settings
553
  st.subheader("🛠️ Model Settings")
554
+ model_choice = st.selectbox("Select Model", ["Groq","OpenAI"], key="model_choice")
555
 
556
  if model_choice == "Groq":
557
  groq_model = st.selectbox("Model Version", GROQ_MODELS)
 
719
  # Add a footer
720
  st.markdown("""
721
  <div style='position: fixed; bottom: 150px; left: 0; right: 0; text-align: center; padding: 10px; font-size: 0.8em; color: #666;'>
722
+ Made with ❤️ by Aditya Singh
723
  </div>
724
  """, unsafe_allow_html=True)