-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (23 loc) · 851 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (23 loc) · 851 Bytes
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
# --- Embeddings ------------------------------------------------------------
OMNIREC_TEXT_DIM=64
OMNIREC_IMAGE_DIM=64
OMNIREC_ITEM_DIM=64
OMNIREC_USER_DIM=64
# mock | clip-bert (clip-bert requires the [multimodal] extra)
OMNIREC_ENCODER=mock
# --- Vector index ----------------------------------------------------------
# hnsw (default, in-process) | milvus
OMNIREC_INDEX=hnsw
MILVUS_URI=http://localhost:19530
# --- Feature store ---------------------------------------------------------
# memory | feast
OMNIREC_FEATURE_STORE=memory
# --- Cache -----------------------------------------------------------------
# memory | redis
OMNIREC_CACHE=memory
REDIS_URL=redis://localhost:6379/0
# --- Funnel ----------------------------------------------------------------
OMNIREC_RETRIEVAL_K=500
OMNIREC_FINAL_K=10
OMNIREC_CLICK_LR=0.35
OMNIREC_SEED=13