Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ st.write("Enter a potential typosquatted domain and select the number of top res
|
|
20 |
|
21 |
# User Inputs
|
22 |
domain = st.text_input("Potential Typosquatted Domain")
|
23 |
-
top_k = st.number_input("Top K Results", min_value=1, max_value=
|
24 |
|
25 |
# Button to trigger search
|
26 |
if st.button("Search for Legitimate Domains"):
|
|
|
20 |
|
21 |
# User Inputs
|
22 |
domain = st.text_input("Potential Typosquatted Domain")
|
23 |
+
top_k = st.number_input("Top K Results", min_value=1, max_value=50, value=5, step=1)
|
24 |
|
25 |
# Button to trigger search
|
26 |
if st.button("Search for Legitimate Domains"):
|