-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
16 lines (15 loc) · 765 Bytes
/
Copy path.env.example
File metadata and controls
16 lines (15 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copy to .env on the workstation. Never commit .env.
# Same-machine Ollama:
OLLAMA_BASE_URL=http://127.0.0.1:11434
# Second host via SSH local forward. 11436 is a workstation-only port;
# Ollama remains on 11434 at the remote host:
# ssh -N -T -o ExitOnForwardFailure=yes -p <ssh-port> \
# -L 127.0.0.1:11436:127.0.0.1:11434 user@<inference-host>
# OLLAMA_BASE_URL=http://127.0.0.1:11436
# Optional direct-LAN fallback (restricted by firewall to this workstation):
# OLLAMA_BASE_URL=http://<inference-host>:11434
# Future Halo-class AMD host (see examples/halo-ryzen-ai.md and docs/roadmap.md):
# Use the same SSH-forward pattern above; backend support remains to validate.
OLLAMA_FAST_MODEL=qwen3.5:9b
OLLAMA_STRONG_MODEL=devstral-small-2
OLLAMA_NUM_CTX=16384