File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ commands:
27
27
fi
28
28
29
29
# 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>> \
31
31
--node-id "node1" --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 8000 \
32
32
--chatgpt-api-response-timeout 900 --disable-tui > output1.log &
33
33
PID1=$!
34
34
tail -f output1.log &
35
35
TAIL1=$!
36
36
37
37
# 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>> \
39
39
--node-id "node2" --listen-port 5679 --broadcast-port 5678 --chatgpt-api-port 8001 \
40
40
--chatgpt-api-response-timeout 900 --disable-tui > output2.log &
41
41
PID2=$!
Original file line number Diff line number Diff line change @@ -212,9 +212,9 @@ exo run llama-3.2-3b --prompt "What is the meaning of exo?"
212
212
213
213
### Model Storage
214
214
215
- Models by default are stored in ` ~/.cache/huggingface/hub ` .
215
+ Models by default are stored in ` ~/.cache/exo/downloads ` .
216
216
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.
218
218
219
219
## Debugging
220
220
You can’t perform that action at this time.
0 commit comments