Spaces:
Running
Running
Upload 8 files
Browse files- .gitattributes +2 -0
- faiss_hnsw/metadata.pkl +3 -0
- faiss_hnsw/vector_search.index +3 -0
- metadata.pkl +3 -0
- qdrant_db/.lock +1 -0
- qdrant_db/collection/articles/storage.sqlite +3 -0
- qdrant_db/meta.json +1 -0
- qdrant_db/metadata.pkl +3 -0
- requirements.txt +1 -2
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
faiss_hnsw/vector_search.index filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
qdrant_db/collection/articles/storage.sqlite filter=lfs diff=lfs merge=lfs -text
|
faiss_hnsw/metadata.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3829a91a48b8eea070232035641877d44fbb17026722e133de4160dd3d88ea9
|
| 3 |
+
size 13286245
|
faiss_hnsw/vector_search.index
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d50ab68ac10188380052c4f81888733a9b9138dba357547fa3ef8ca1361cc13
|
| 3 |
+
size 650562
|
metadata.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3829a91a48b8eea070232035641877d44fbb17026722e133de4160dd3d88ea9
|
| 3 |
+
size 13286245
|
qdrant_db/.lock
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
tmp lock file
|
qdrant_db/collection/articles/storage.sqlite
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6a21deebde759e7bf7bedae8887ea98cf3004aeeaddd6cb9d4b5cdb740c02b5
|
| 3 |
+
size 14999552
|
qdrant_db/meta.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"collections": {"articles": {"vectors": {"size": 384, "distance": "Cosine", "hnsw_config": null, "quantization_config": null, "on_disk": null, "datatype": null, "multivector_config": null}, "shard_number": null, "sharding_method": null, "replication_factor": null, "write_consistency_factor": null, "on_disk_payload": null, "hnsw_config": null, "wal_config": null, "optimizers_config": null, "quantization_config": null, "sparse_vectors": null, "strict_mode_config": null, "metadata": null}}, "aliases": {}}
|
qdrant_db/metadata.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3829a91a48b8eea070232035641877d44fbb17026722e133de4160dd3d88ea9
|
| 3 |
+
size 13286245
|
requirements.txt
CHANGED
|
@@ -6,7 +6,6 @@ langchain-community
|
|
| 6 |
chromadb
|
| 7 |
faiss-cpu
|
| 8 |
qdrant-client
|
|
|
|
| 9 |
requests>=2.32.0 # GitHub API + raw file fetching
|
| 10 |
duckduckgo-search>=6.1.0 # DuckDuckGo web search (no API key needed)
|
| 11 |
-
|
| 12 |
-
|
|
|
|
| 6 |
chromadb
|
| 7 |
faiss-cpu
|
| 8 |
qdrant-client
|
| 9 |
+
sentence-transformers # <-- ADD THIS
|
| 10 |
requests>=2.32.0 # GitHub API + raw file fetching
|
| 11 |
duckduckgo-search>=6.1.0 # DuckDuckGo web search (no API key needed)
|
|
|
|
|
|