Update app.py
Browse files
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", ["
|
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 ❤️
|
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)
|