Spaces:
Runtime error
Runtime error
File size: 10,285 Bytes
ee7776a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
import streamlit as st
import os
import zipfile
import run_auditor_user_defined
import run_critic_user_defined
import run_rank
import shutil
import time
import pre_process
from utils import dotdict, clean_folder
from streamlit_js_eval import streamlit_js_eval
os.environ['DISPLAY'] = ':0'
# Store the initial value of widgets in session state
if "visibility" not in st.session_state:
st.session_state.visibility = "visible"
st.session_state.disabled = False
if "start_critic" not in st.session_state:
st.session_state.start_critic = False
if "start_auditor" not in st.session_state:
st.session_state.start_auditor = False
if "start_ranking" not in st.session_state:
st.session_state.start_ranking = False
if "section_active_auditor" not in st.session_state:
st.session_state.section_active_auditor = True
if "section_active_critic" not in st.session_state:
st.session_state.section_active_critic = False
if "section_active_ranking" not in st.session_state:
st.session_state.section_active_ranking = False
if "args" not in st.session_state:
st.session_state.args = None
if "args_c" not in st.session_state:
st.session_state.args_c = None
if "args_r" not in st.session_state:
st.session_state.args_r = None
def start_auditor():
st.session_state.start_auditor = True
def end_auditor():
st.session_state.start_auditor = False
def start_critic():
st.session_state.start_critic = True
def end_critic():
st.session_state.start_critic = False
def start_ranking():
st.session_state.start_ranking = True
def end_ranking():
st.session_state.start_ranking = False
with st.sidebar:
openai_api_key = st.text_input("OpenAI API Key", key="chatbot_api_key", type="password")
"[Get an OpenAI API key](https://platform.openai.com/account/api-keys)"
"[View the source code](https://github.com/sciencepal/GPTLens/blob/aditya-test/src/UI.py)"
"[](https://codespaces.new/sciencepal/GPTLens?quickstart=1)"
st.divider()
if st.button("Reset App"):
st.session_state.section_active_critic = False
st.session_state.section_active_ranking = False
end_critic()
end_ranking()
# streamlit_js_eval(js_expressions="parent.window.location.reload()")
st.title("π¬ GPTLens")
st.caption("π Smart Contract Vulnerability Detection powered by OpenAI LLM")
if not openai_api_key:
st.warning("Please add your OpenAI API key to continue.")
st.stop()
else:
os.environ["OPENAI_API_KEY"] = openai_api_key
if st.session_state.section_active_auditor:
st.header("Auditor Step", divider=True)
st.divider()
col1, col2 = st.columns(2)
with col1:
model = st.radio(
"Set the GPT model π",
key="model",
options=["gpt-3.5-turbo", "gpt-4", "gpt-4-turbo-preview"],
index=2
)
uploaded_files = st.file_uploader('Upload smart contract files', accept_multiple_files=True, type=['sol'])
with col2:
topk = st.number_input(
"Set the topk auditor responses π",
key="topk",
min_value=1,
max_value=10,
value=3,
format="%d"
)
temperature = st.number_input(
"Set the temperature π",
key="temperature",
min_value=0.0,
max_value=1.0,
value=0.7,
format="%f"
)
num_auditors = st.number_input(
"Set the num auditors π",
key="num_auditors",
min_value=1,
max_value=10,
value=1,
format="%d"
)
uploaded_prompt = st.file_uploader('Upload prompt file (optional)', accept_multiple_files=False, type=['py'])
audit_button = st.button("Start Auditor", key="auditor", on_click=start_auditor)
if audit_button and st.session_state.start_auditor:
if uploaded_files:
os.environ["OPENAI_API_KEY"] = openai_api_key
args_dict = {
'backend': model,
'temperature': temperature,
'data_dir': "data/CVE_clean",
'topk': topk,
'num_auditor': num_auditors,
'openai_api_key': openai_api_key
}
args = dotdict(args_dict)
st.session_state.args = args
if os.path.exists("data/CVE"):
clean_folder("data/CVE")
if os.path.exists("data/CVE_clean"):
clean_folder("data/CVE_clean")
if os.path.exists(f"src/logs/auditor_{args.backend}_{args.temperature}_top{args.topk}_{args.num_auditor}"):
clean_folder(f"src/logs/auditor_{args.backend}_{args.temperature}_top{args.topk}_{args.num_auditor}")
for uploaded_file in uploaded_files:
name = uploaded_file.name
bytes_data = uploaded_file.read()
with open(f"data/CVE/{name}", "wb") as f:
f.write(bytes_data)
pre_process.mainfnc(args.data_dir)
if uploaded_prompt:
bytes_data = uploaded_prompt.read()
with open(f"src/prompt.py", "wb") as f:
f.write(bytes_data)
st.write("Starting auditor code!")
run_auditor_user_defined.mainfnc(args)
st.write(f"Audit files processed successfully to folder ./src/logs/auditor_{args.backend}_{args.temperature}_top{args.topk}_{args.num_auditor}!")
end_auditor()
time.sleep(2)
# st.session_state.section_active_auditor = False
st.session_state.section_active_critic= True
uploaded_file = False
else:
st.warning("Please upload data zip.")
st.stop()
# else:
# st.stop()
if st.session_state.section_active_critic:
st.header("Critic Step", divider=True)
st.divider()
col1, col2 = st.columns(2)
args = st.session_state.args
with col1:
model_c = st.radio(
"Set the GPT model π",
key="model_c",
options=["gpt-3.5-turbo", "gpt-4", "gpt-4-turbo-preview"],
index=2
)
auditor_dir_c = st.text_input(
"Auditor Directory location",
value=f"auditor_{args.backend}_{args.temperature}_top{args.topk}_{args.num_auditor}"
)
with col2:
temperature_c = st.number_input(
"Set the temperature π",
key="temperature_c",
min_value=0.0,
max_value=1.0,
value=0.0,
format="%f"
)
num_critic_c = st.number_input(
"Set the num critics π",
key="num_critic_c",
min_value=1,
max_value=10,
value=1,
format="%d"
)
shot_c = st.radio(
"Set the num shots (few/one) π",
key="shot_c",
options=["one", "few"],
index=1
)
os.environ["OPENAI_API_KEY"] = openai_api_key
critic_button = st.button("Start Critics", key="critic", on_click=start_critic)
if critic_button and st.session_state.start_critic:
args_c_dict = {
'backend': model_c,
'temperature': temperature_c,
'dataset': "CVE",
'auditor_dir': auditor_dir_c,
'num_critic': num_critic_c,
'shot': shot_c,
'openai_api_key': openai_api_key
}
args_c = dotdict(args_c_dict)
st.session_state.args_c = args_c
st.write("Starting critic code!")
run_critic_user_defined.mainfnc(args_c)
st.write(f"Critic files processed successfully to folder ./src/logs/{args_c.auditor_dir}/critic_{args_c.backend}_{args_c.temperature}_{args_c.num_critic}_{args_c.shot}!")
end_critic()
time.sleep(2)
# st.session_state.section_active_critic = False
st.session_state.section_active_ranking = True
# else:
# st.stop()
if st.session_state.section_active_ranking:
st.header("Ranking Step", divider=True)
st.divider()
col1, col2 = st.columns(2)
args = st.session_state.args
args_c = st.session_state.args_c
with col1:
auditor_dir_r = st.text_input(
"Auditor Dir location",
value=f"auditor_{args.backend}_{args.temperature}_top{args.topk}_{args.num_auditor}"
)
critic_dir_r = st.text_input(
"Critic Directory location",
value=f"critic_{args_c.backend}_{args_c.temperature}_{args_c.num_critic}_{args_c.shot}"
)
with col2:
strategy_r = st.radio(
"Set the strategy (default/custom) π",
key="strategy_r",
options=["default", "custom"],
index=0
)
rank_button = st.button("Start Ranking", key="ranking", on_click=start_ranking)
if rank_button and st.session_state.start_ranking:
args_r_dict = {
'auditor_dir': auditor_dir_r,
'critic_dir': critic_dir_r,
'strategy': strategy_r
}
args_r = dotdict(args_r_dict)
st.session_state.args_r = args_r
st.write(f"Starting ranking code!")
run_rank.mainfnc(args_r)
st.write(f"Ranking files processed successfully to folder ./src/logs/{args_c.auditor_dir}/critic_{args_c.backend}_{args_c.temperature}_{args_c.num_critic}_{args_c.shot}/ranker_{args_r.strategy}!")
end_critic()
else:
st.stop()
shutil.make_archive('results', 'zip', "src/logs")
st.divider()
with open("results.zip", "rb") as fp:
download_btn = st.download_button(
label="Download Results zip",
data=fp,
file_name="results.zip",
mime="application/zip"
)
|