ratnadiraw commited on
Commit
f23f057
·
verified ·
1 Parent(s): 7af4ca2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +4 -4
index.html CHANGED
@@ -29,14 +29,14 @@ with gr.Blocks() as demo:
29
  gr.Markdown(
30
  """
31
  # TITAN Project
32
- Provide the GitHub repository link to retrieve the top 3 most potentially vulnerable functions.
33
  """)
34
- inp = gr.Textbox(placeholder="e.g., https://github.com/TitanCAProject/JIT-Vul-manualcheck", title="GitHub Repo Link")
 
35
  submit_btn = gr.Button("Submit")
36
- out = gr.Textbox(title="Results")
37
  inp.change(welcome, inp, out)
38
 
39
-
40
  demo.launch()
41
  </gradio-file>
42
 
 
29
  gr.Markdown(
30
  """
31
  # TITAN Project
32
+ Provide the GitHub repository link to retrieve the top x most potentially vulnerable functions.
33
  """)
34
+ inp = gr.Textbox(placeholder="e.g., https://github.com/TitanCAProject/JIT-Vul-manualcheck", label="GitHub Repo Link")
35
+ age_box = gr.Number(label="Top suspicious functions", minimum=3, maximum=100)
36
  submit_btn = gr.Button("Submit")
37
+ out = gr.Textbox(label="Results")
38
  inp.change(welcome, inp, out)
39
 
 
40
  demo.launch()
41
  </gradio-file>
42