binuser007 commited on
Commit
846cb56
·
verified ·
1 Parent(s): 9314132

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -31,10 +31,11 @@ iface = gr.Interface(
31
  inputs="text",
32
  outputs=[
33
  gr.Textbox(label="Crawl Results"),
34
- gr.File(label="Download Results",file_count=0)
35
  ],
36
  title="Katana Crawler",
37
- description="Enter a URL to crawl using Katana. Results will be displayed and available for download."
 
38
  )
39
 
40
  iface.launch(server_name="0.0.0.0", server_port=7860)
 
31
  inputs="text",
32
  outputs=[
33
  gr.Textbox(label="Crawl Results"),
34
+ gr.File(label="Download Results", file_count="single")
35
  ],
36
  title="Katana Crawler",
37
+ description="Enter a URL to crawl using Katana. Results will be displayed and available for download.",
38
+ allow_flagging="never"
39
  )
40
 
41
  iface.launch(server_name="0.0.0.0", server_port=7860)