| # βββ 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 | |