Spaces:
Running
Running
Update index.html
Browse files- 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
|
| 33 |
""")
|
| 34 |
-
inp = gr.Textbox(placeholder="e.g., https://github.com/TitanCAProject/JIT-Vul-manualcheck",
|
|
|
|
| 35 |
submit_btn = gr.Button("Submit")
|
| 36 |
-
out = gr.Textbox(
|
| 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 |
|