Spaces:
Running
on
T4
Running
on
T4
File size: 536 Bytes
137c471 75d416a 137c471 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
[vectorstore]
# huggingface_spaces usage:
# PROVIDER = huggingface
# URL = GIZ/audit_data
# COLLECTION_NAME = docling
# direct Qdrant usage:
PROVIDER = qdrant
URL = giz-chatfed-qdrantserver.hf.space
COLLECTION_NAME = EUDR
[embeddings]
MODEL_NAME = BAAI/bge-m3
# DEVICE = cpu
[retriever]
TOP_K = 10
SCORE_THRESHOLD = 0.6
[reranker]
MODEL_NAME = BAAI/bge-reranker-v2-m3
TOP_K = 10
ENABLED = true
# use this to scale out the total docs retrieved prior to reranking (i.e. retriever top_k * TOP_K_SCALE_FACTOR)
TOP_K_SCALE_FACTOR = 2
|