[object Object]

← back to Exo

HF_HOME -> EXO_HOME

19a27c5bfd6083b3a9916cbb1c3eb200b5ce3f6b · 2025-01-27 02:59:23 +0000 · Alex Cheema

Files touched

Diff

commit 19a27c5bfd6083b3a9916cbb1c3eb200b5ce3f6b
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Mon Jan 27 02:59:23 2025 +0000

    HF_HOME -> EXO_HOME
---
 .circleci/config.yml | 4 ++--
 README.md            | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index ba9c6983..9f2b4604 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -27,7 +27,7 @@ commands:
             fi
 
             # Start first instance
-            HF_HOME="$(pwd)/.hf_cache_node1" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
+            EXO_HOME="$(pwd)/.exo_cache_node1" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
               --node-id "node1" --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 8000 \
               --chatgpt-api-response-timeout 900 --disable-tui > output1.log &
             PID1=$!
@@ -35,7 +35,7 @@ commands:
             TAIL1=$!
 
             # Start second instance
-            HF_HOME="$(pwd)/.hf_cache_node2" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
+            EXO_HOME="$(pwd)/.exo_cache_node2" DEBUG_DISCOVERY=7 DEBUG=7 exo --inference-engine <<parameters.inference_engine>> \
               --node-id "node2" --listen-port 5679 --broadcast-port 5678 --chatgpt-api-port 8001 \
               --chatgpt-api-response-timeout 900 --disable-tui > output2.log &
             PID2=$!
diff --git a/README.md b/README.md
index 25224f74..5e645abb 100644
--- a/README.md
+++ b/README.md
@@ -212,9 +212,9 @@ exo run llama-3.2-3b --prompt "What is the meaning of exo?"
 
 ### Model Storage
 
-Models by default are stored in `~/.cache/huggingface/hub`.
+Models by default are stored in `~/.cache/exo/downloads`.
 
-You can set a different model storage location by setting the `HF_HOME` env var.
+You can set a different model storage location by setting the `EXO_HOME` env var.
 
 ## Debugging
 

← d7ca9b77 show each node id in the tinychat topology viz  ·  back to Exo  ·  increase bench job timeout to give enough time to download 295f41c5 →