Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -45,7 +45,11 @@ inputs = [
|
|
| 45 |
value=0.05,
|
| 46 |
label="Percentage of characters to replace",
|
| 47 |
),
|
| 48 |
-
gr.Dropdown(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
gr.Checkbox(label="Zero-Width", value=False, show=False),
|
| 50 |
]
|
| 51 |
outputs = gr.Textbox(label="Output text", show_copy_button=True)
|
|
|
|
| 45 |
value=0.05,
|
| 46 |
label="Percentage of characters to replace",
|
| 47 |
),
|
| 48 |
+
gr.Dropdown(
|
| 49 |
+
value=['identical'],
|
| 50 |
+
multiselect=True,
|
| 51 |
+
choices=[x.value for x in TypesOfHomoglyphs]
|
| 52 |
+
),
|
| 53 |
gr.Checkbox(label="Zero-Width", value=False, show=False),
|
| 54 |
]
|
| 55 |
outputs = gr.Textbox(label="Output text", show_copy_button=True)
|