File size: 10,969 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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
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_preprocess" not in st.session_state:
    st.session_state.start_preprocess = 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_preprocess" not in st.session_state:
    st.session_state.section_active_preprocess = True

if "section_active_auditor" not in st.session_state:
    st.session_state.section_active_auditor = False

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_preprocess():
    st.session_state.start_preprocess = True
def end_preprocess():
    st.session_state.end_preprocess = False


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 (not needed for demo)](https://platform.openai.com/account/api-keys)"
    "[View the source code](https://github.com/sciencepal/GPTLens/blob/aditya-test/src/UI.py)"
    "[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](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
        st.session_state.section_active_auditor = False
        end_critic()
        end_ranking()
        end_auditor()
        # streamlit_js_eval(js_expressions="parent.window.location.reload()")


st.title("πŸ’¬ GPTLens Demo")
st.caption("πŸš€ Smart Contract Vulnerability Detection powered by OpenAI LLM")

if not openai_api_key:
    st.warning("In GPTlens, you must enter OpenAI API key to continue. Not needed for this demo")
    # st.stop()
else:
    os.environ["OPENAI_API_KEY"] = openai_api_key

st.info("Note that this demo uses only dummy data")


with open("data_sample/CVE/2018-13071.sol") as f:
    raw1 = f.read()
with open("data_sample/CVE/2018-13072.sol") as f:
    raw2 = f.read()
with open("data_sample/CVE/2018-13073.sol") as f:
    raw3 = f.read()
with open("data_sample/CVE/2018-13074.sol") as f:
    raw4 = f.read()

with open("data_sample/CVE_clean/2018-13071.sol") as f:
    clean1 = f.read()
with open("data_sample/CVE_clean/2018-13072.sol") as f:
    clean2 = f.read()
with open("data_sample/CVE_clean/2018-13073.sol") as f:
    clean3 = f.read()
with open("data_sample/CVE_clean/2018-13074.sol") as f:
    clean4 = f.read()

with open("data_sample/prompts.py") as f:
    prompt = f.read()


with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13071.json") as f:
    audit1 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13072.json") as f:
    audit2 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13073.json") as f:
    audit3 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/2018-13074.json") as f:
    audit4 = f.read()


with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13071.json") as f:
    critic1 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13072.json") as f:
    critic2 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13073.json") as f:
    critic3 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/2018-13074.json") as f:
    critic4 = f.read()


with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13071.json") as f:
    ranker1 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13072.json") as f:
    ranker2 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13073.json") as f:
    ranker3 = f.read()
with open("results/auditor_gpt-4-turbo-preview_0.7_top3_1/critic_gpt-4-turbo-preview_0.0_1_few/ranker_default/2018-13074.json") as f:
    ranker4 = f.read()


# if st.session_state.section_active_preprocess:

st.header("1. Preprocessing Step", divider=True)

tab4, tab3, tab2, tab1 = st.tabs(["File 1", "File 2", "File 3", "File 4"])

with tab1:
    with st.container(height=400):
        st.code(raw1, language='solidity')

with tab2:
    with st.container(height=400):
        st.code(raw2, language='solidity')

with tab3:
    with st.container(height=400):
        st.code(raw3, language='solidity')

with tab4:
    with st.container(height=400):
        st.code(raw4, language='solidity')

# preprocess_button = st.button("Start Preprocessing", key="preprocess", on_click=start_auditor)


# if st.session_state.start_auditor:

st.subheader("Result 1.1 - Processed Files", divider=True)

tab4, tab3, tab2, tab1 = st.tabs(["File 1", "File 2", "File 3", "File 4"])

with tab1:
    with st.container(height=400):
        st.code(clean1, language='solidity')

with tab2:
    with st.container(height=400):
        st.code(clean2, language='solidity')

with tab3:
    with st.container(height=400):
        st.code(clean3, language='solidity')

with tab4:
    with st.container(height=400):
        st.code(clean4, language='solidity')

st.divider()

st.header("2. Auditor Step", divider=True)

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
    )

    topk =  st.number_input(
        "Set the topk auditor responses πŸ‘‰",
        key="topk",
        min_value=1,
        max_value=10,
        value=3,
        format="%d"
    )
    
with col2:

    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"
    )

st.subheader("Prompt File")
with st.container(height=400):
    st.code(prompt, language='python')


st.subheader("Result 2.1 - Auditor Results", divider=True)

tab4, tab3, tab2, tab1 = st.tabs(["File 1", "File 2", "File 3", "File 4"])

with tab1:
    with st.container(height=400):
        st.code(audit1, language='json')

with tab2:
    with st.container(height=400):
        st.code(audit2, language='json')

with tab3:
    with st.container(height=400):
        st.code(audit3, language='json')

with tab4:
    with st.container(height=400):
        st.code(audit4, language='json')

st.divider()



st.header("3. Critic Step", divider=True)

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"temporary_dir/path/to/data"
    )

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
    )


st.subheader("Result 3.1 - Critic Results", divider=True)

tab4, tab3, tab2, tab1 = st.tabs(["File 1", "File 2", "File 3", "File 4"])

with tab1:
    with st.container(height=400):
        st.code(critic1, language='json')

with tab2:
    with st.container(height=400):
        st.code(critic2, language='json')

with tab3:
    with st.container(height=400):
        st.code(critic3, language='json')

with tab4:
    with st.container(height=400):
        st.code(critic4, language='json')

st.divider()








st.header("4. Ranking Step", divider=True)

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"temporary_dir/path/to/data"
    )

    critic_dir_r = st.text_input(
        "Critic Directory location",
        value=f"temporary_dir/path/to/data"
    )

with col2:

    strategy_r = st.radio(
        "Set the strategy (default/custom) πŸ‘‰",
        key="strategy_r",
        options=["default", "custom"],
        index=0
    )


st.subheader("Result 4.1 - Ranking Results", divider=True)

tab4, tab3, tab2, tab1 = st.tabs(["File 1", "File 2", "File 3", "File 4"])

with tab1:
    with st.container(height=400):
        st.code(ranker1, language='json')

with tab2:
    with st.container(height=400):
        st.code(ranker2, language='json')

with tab3:
    with st.container(height=400):
        st.code(ranker3, language='json')

with tab4:
    with st.container(height=400):
        st.code(ranker4, language='json')

st.divider()