Text edits in app
Browse files
app.py
CHANGED
@@ -21,8 +21,16 @@ interface = gr.Interface(fn=process_query,
|
|
21 |
outputs="html",
|
22 |
title="Search Interface",
|
23 |
submit_btn="Find",
|
24 |
-
description="
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
examples=[["spider man"], ["oceans 13"], ["sister starlight"], ["bitcoin address of xileno"]],
|
27 |
concurrency_limit=50)
|
28 |
|
|
|
21 |
outputs="html",
|
22 |
title="Search Interface",
|
23 |
submit_btn="Find",
|
24 |
+
description="""
|
25 |
+
### Search for movie trailers, music torrents, and bitcoin wallet addresses!
|
26 |
+
|
27 |
+
This toy example knows about 500 URLs exactly after merely a few hours of training on a single GPU ([view dataset](https://huggingface.co/tribler/dsi-search-on-toy-dataset/blob/main/dataset.csv)).
|
28 |
+
""",
|
29 |
+
article="""
|
30 |
+
This project represents both a groundbreaking advance and a preliminary exploration into decentralized systems.
|
31 |
+
As a preliminary model, the project showcases a toy example rather than the full potential of its ultimate capabilities.
|
32 |
+
It serves as a proof of concept that invites further development and imagination.
|
33 |
+
""",
|
34 |
examples=[["spider man"], ["oceans 13"], ["sister starlight"], ["bitcoin address of xileno"]],
|
35 |
concurrency_limit=50)
|
36 |
|