Skip to content

Commit 19a27c5

Browse files
committed
HF_HOME -> EXO_HOME
1 parent d7ca9b7 commit 19a27c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ commands:
2727
fi
2828
2929
# Start first instance
30-
HF_HOME="$(pwd)/.hf_cache_node1" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
30+
EXO_HOME="$(pwd)/.exo_cache_node1" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
3131
--node-id "node1" --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 8000 \
3232
--chatgpt-api-response-timeout 900 --disable-tui > output1.log &
3333
PID1=$!
3434
tail -f output1.log &
3535
TAIL1=$!
3636
3737
# Start second instance
38-
HF_HOME="$(pwd)/.hf_cache_node2" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
38+
EXO_HOME="$(pwd)/.exo_cache_node2" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
3939
--node-id "node2" --listen-port 5679 --broadcast-port 5678 --chatgpt-api-port 8001 \
4040
--chatgpt-api-response-timeout 900 --disable-tui > output2.log &
4141
PID2=$!

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ exo run llama-3.2-3b --prompt "What is the meaning of exo?"
212212

213213
### Model Storage
214214

215-
Models by default are stored in `~/.cache/huggingface/hub`.
215+
Models by default are stored in `~/.cache/exo/downloads`.
216216

217-
You can set a different model storage location by setting the `HF_HOME` env var.
217+
You can set a different model storage location by setting the `EXO_HOME` env var.
218218

219219
## Debugging
220220

0 commit comments

Comments
 (0)