-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.env.example
More file actions
75 lines (64 loc) 路 3.09 KB
/
Copy path.env.example
File metadata and controls
75 lines (64 loc) 路 3.09 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Sample environment configuration for opensearch_vl/.
# Copy to a file outside version control (e.g. ~/.opensearch-vl.env) and
# `source` it before running run_infer.py / run_eval.sh.
# --- Local Qwen3-VL checkpoints (override per model variant) ---------------
# Each variable can be a HuggingFace id or an absolute filesystem path.
export QWEN3VL_8B_PATH=""
export QWEN3VL_32B_PATH=""
export QWEN3VL_30B_A3B_PATH=""
# --- Optional FVQA fallback image directory --------------------------------
# When a benchmark URL fails the runtime can recover by reading
# <FVQA_IMAGE_DIR>/<case_id>.<ext>. Leave empty to disable the fallback.
export FVQA_IMAGE_DIR=""
# --- Search gateway (Serper + Jina behind one HMAC key) --------------------
# When all three are set the gateway is preferred; otherwise the runtime
# falls back to the direct provider keys below.
export API_HOST=""
export API_USER=""
export API_KEY=""
# --- Direct providers ------------------------------------------------------
export SERPER_API_KEY=""
export SERPER_SEARCH_URL="https://google.serper.dev/search"
export JINA_API_KEY=""
export JINA_READER_URL="https://r.jina.ai/"
# --- Summarization / image-search backbone ---------------------------------
# Defaults assume an OpenAI-compatible server (e.g. vLLM) hosting Qwen3-32B.
export QWEN_API_BASE="http://localhost:8000/v1"
export QWEN_MODEL_NAME="Qwen/Qwen3-32B"
# --- Layout parsing (PP-StructureV3 compatible) ----------------------------
export LAYOUT_PARSING_API_URL=""
export LAYOUT_PARSING_TOKEN=""
# --- Claude HMAC gateway ---------------------------------------------------
export CLAUDE_API_HOST=""
export CLAUDE_API_USER=""
export CLAUDE_API_KEY=""
export CLAUDE_API_SOURCE=""
export CLAUDE_API_VERSION="v2.03"
export CLAUDE_MODEL_MARKER="api_anthropic_claude-opus-4-5-20251101"
# --- MiniMax API backend ---------------------------------------------------
# Bearer-authenticated, Anthropic-compatible Messages API. MINIMAX_API_REGION
# selects the default endpoints ("global_en" -> api.minimax.io, "cn_zh" ->
# api.minimaxi.com); the explicit *_BASE_URL overrides win when set.
export MINIMAX_API_KEY=""
export MINIMAX_API_REGION="global_en"
export MINIMAX_ANTHROPIC_BASE_URL="https://api.minimax.io/anthropic"
export MINIMAX_OPENAI_BASE_URL="https://api.minimax.io/v1"
export MINIMAX_API_VERSION="2023-06-01"
# --- Optional COS uploader -------------------------------------------------
# Colon-separated extra search paths for an external upload.py module.
export COS_UPLOAD_PATHS=""
export COS_UPLOAD_USERID="opensearch-vl"
# Reconstruct a public URL when the uploader only returns an object key:
# export COS_BUCKET_HOST_TEMPLATE="http://my-bucket.cos.my-region.example.com"
# --- GPT-4o judge for run_eval.sh ------------------------------------------
export JUDGE_API_BASE_URL=""
export JUDGE_APP_ID=""
export JUDGE_APP_KEY=""
export JUDGE_MODEL_MARKER="api_openai_gpt-4o"
# --- Trajectory directories consumed by run_eval.sh ------------------------
export TRAJ_BC_VL_LEVEL1=""
export TRAJ_BC_VL_LEVEL2=""
export TRAJ_HLE=""
export TRAJ_VDR_PRIMARY=""
export TRAJ_VDR_SECONDARY=""
export VDR_ANSWER_PARQUET=""