-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
22 lines (19 loc) · 900 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (19 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# fcx configuration. Copy to `.env` and edit. All vars use the FCX_ prefix.
# The defaults below ARE the local MLX FastContext setup, so for the builtin backend you need nothing.
# ---- Builtin local MLX (default; uncomment only to override) ----
# FCX_BASE_URL=http://localhost:8080/v1
# FCX_MODEL=usermma/FastContext-1.0-4B-RL-mlx-8Bit
# FCX_MANAGE_MODEL=true
# FCX_ROOT=/path/to/repo # default: server cwd
# ---- External OpenAI-compatible API ----
# Set these to point at OpenAI (or any compatible host) instead of the local model.
# FCX_BASE_URL=https://api.openai.com/v1
# FCX_MODEL=gpt-5.4
# FCX_API_KEY=sk-...
# FCX_MANAGE_MODEL=false
# FCX_EXTRA_BODY={} # drop qwen-only sampling knobs
# FCX_TEMPERATURE=1 # reasoning models require temperature=1
# ---- Tuning (optional) ----
# FCX_MAX_TURNS=8
# FCX_TOOL_TIMEOUT=15
# FCX_STARTUP_TIMEOUT=600