|
|
import streamlit as st |
|
|
import os |
|
|
with st.sidebar: |
|
|
|
|
|
choice = st.sidebar.radio(label = 'Select the Document', |
|
|
help = 'You can upload the document \ |
|
|
or else you can try a example document', |
|
|
options = ('Upload Document', 'Try Example'), |
|
|
horizontal = True) |
|
|
|
|
|
|
|
|
|
|
|
model_options = ['Llama3.1-8B','Llama3.1-70B','Llama3.1-405B','Zephyr 7B β','Mistral-7B','Mixtral-8x7B'] |
|
|
|
|
|
|
|
|
model_sel = st.selectbox('Select a model:', model_options) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
with st.container(): |
|
|
st.markdown("<h2 style='text-align: center;'> Vulnerability Analysis 3.1 </h2>", unsafe_allow_html=True) |
|
|
st.write(' ') |