Spaces:
Running
Running
default model for mixtral was incorrect.
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ with col1:
|
|
143 |
selected_model1 = st.selectbox("Select Model 1", list(llm_dict.keys()), index=list(llm_dict.keys()).index("Llama 3 70b"))
|
144 |
|
145 |
with col2:
|
146 |
-
selected_model2 = st.selectbox("Select Model 2", list(llm_dict.keys()), index=list(llm_dict.keys()).index("
|
147 |
|
148 |
if uploaded_file is not None:
|
149 |
text = pdf_to_string(uploaded_file)
|
|
|
143 |
selected_model1 = st.selectbox("Select Model 1", list(llm_dict.keys()), index=list(llm_dict.keys()).index("Llama 3 70b"))
|
144 |
|
145 |
with col2:
|
146 |
+
selected_model2 = st.selectbox("Select Model 2", list(llm_dict.keys()), index=list(llm_dict.keys()).index("Mixtral 8x7b"))
|
147 |
|
148 |
if uploaded_file is not None:
|
149 |
text = pdf_to_string(uploaded_file)
|