File size: 857 Bytes
fb12ddc | 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 28 29 30 31 32 33 34 35 36 | # βββ ARIA Vision Intelligence βββ
#
# On HF Spaces: set these as Secrets in Space Settings.
# Locally: copy to .env and edit.
# HF token (for dataset persistence + Inference API)
HF_TOKEN=hf_your_token_here
# Persistent dataset repo (optional)
# HF_DATASET_REPO=your-username/aria-index
# GPU mode
USE_GPU=false
# Embedding model (auto-selected if not set)
# GPU: Qwen/Qwen3-VL-Embedding-2B (2048d)
# GPU: Qwen/Qwen3-VL-Embedding-8B (4096d)
# CPU: openai/clip-vit-large-patch14 (768d)
# EMBED_MODEL=Qwen/Qwen3-VL-Embedding-2B
# EMBED_DIM=2048
# LLM for result interpretation
# LLM_MODEL=Qwen/Qwen3-35B-A3B
# LLM_FALLBACK=Qwen/Qwen3-1.7B
# Video frame interval (seconds)
FRAME_EVERY_SEC=5
# Auto-seed on first launch
AUTO_SEED=true
SEED_DATASET=nlphuji/flickr30k
SEED_SPLIT=test[:200]
# Default project name
DEFAULT_PROJECT=default
|