Update app.py
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ with st.sidebar:
|
|
| 55 |
add_upload(choice)
|
| 56 |
|
| 57 |
# Create a list of options for the dropdown
|
| 58 |
-
|
| 59 |
|
| 60 |
# Dropdown selectbox: model
|
| 61 |
model_sel = st.selectbox('Select a model:', model_options)
|
|
@@ -64,7 +64,7 @@ with st.sidebar:
|
|
| 64 |
st.session_state['model_sel_name'] = model_sel_name
|
| 65 |
|
| 66 |
with st.container():
|
| 67 |
-
st.markdown("<h2 style='text-align: center;'> Vulnerability Analysis 3.
|
| 68 |
st.write(' ')
|
| 69 |
|
| 70 |
with st.expander("ℹ️ - About this app", expanded=False):
|
|
|
|
| 55 |
add_upload(choice)
|
| 56 |
|
| 57 |
# Create a list of options for the dropdown
|
| 58 |
+
model_options = ['Llama3.1-8B','Llama3.1-70B','Llama3.1-405B','Zephyr 7B β','Mistral-7B','Mixtral-8x7B']
|
| 59 |
|
| 60 |
# Dropdown selectbox: model
|
| 61 |
model_sel = st.selectbox('Select a model:', model_options)
|
|
|
|
| 64 |
st.session_state['model_sel_name'] = model_sel_name
|
| 65 |
|
| 66 |
with st.container():
|
| 67 |
+
st.markdown("<h2 style='text-align: center;'> Vulnerability Analysis 3.1 </h2>", unsafe_allow_html=True)
|
| 68 |
st.write(' ')
|
| 69 |
|
| 70 |
with st.expander("ℹ️ - About this app", expanded=False):
|