Spaces:
Build error
Build error
Ilia Tambovtsev commited on
Commit ·
b105b1d
1
Parent(s): 11c1847
feat: add links to presentations and questions in webapp
Browse files- src/webapp/app.py +3 -2
src/webapp/app.py
CHANGED
|
@@ -132,7 +132,8 @@ class RagInterface:
|
|
| 132 |
gr.Markdown(dedent(
|
| 133 |
"""\
|
| 134 |
# Presentation Search
|
| 135 |
-
|
|
|
|
| 136 |
""")
|
| 137 |
)
|
| 138 |
# fmt: on
|
|
@@ -251,7 +252,7 @@ def main():
|
|
| 251 |
# Parse arguments
|
| 252 |
parser = argparse.ArgumentParser()
|
| 253 |
parser.add_argument(
|
| 254 |
-
"--collection", default="
|
| 255 |
)
|
| 256 |
parser.add_argument("--host", default="0.0.0.0", help="Host to run on")
|
| 257 |
parser.add_argument("--port", type=int, default=7860, help="Port to run on")
|
|
|
|
| 132 |
gr.Markdown(dedent(
|
| 133 |
"""\
|
| 134 |
# Presentation Search
|
| 135 |
+
- Presentations for search are available [at google-drive](https://drive.google.com/drive/folders/1IvUsxxtyyTuHdZff9szhd2OtIATRTcG4?usp=sharing)
|
| 136 |
+
- List of possible questions for testing available [at google-sheets](https://docs.google.com/spreadsheets/d/1qWRF_o-RY1x-o-3z08iVb2akh0HS3ZNxVkZi6yoVsI4/edit?usp=sharing)
|
| 137 |
""")
|
| 138 |
)
|
| 139 |
# fmt: on
|
|
|
|
| 252 |
# Parse arguments
|
| 253 |
parser = argparse.ArgumentParser()
|
| 254 |
parser.add_argument(
|
| 255 |
+
"--collection", default="pres_69", help="ChromaDB collection name"
|
| 256 |
)
|
| 257 |
parser.add_argument("--host", default="0.0.0.0", help="Host to run on")
|
| 258 |
parser.add_argument("--port", type=int, default=7860, help="Port to run on")
|