We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24cf6b3 commit da5c3f4Copy full SHA for da5c3f4
README.md
@@ -12,7 +12,7 @@ DOCKER_BUILDKIT=1 docker build . -t gbnc
12
docker run \
13
--env HUGGING_FACE_HUB_TOKEN=$HUGGING_FACE_HUB_TOKEN \
14
--volume "$(pwd)/gswikichat":/workspace/gswikichat \
15
- --volume "$(pwd)/cache":/root/.cache \
+ --volume gbnc_cache:/root/.cache
16
--publish 8000:8000 \
17
--rm \
18
--interactive \
gswikichat/vector_store_interface.py
@@ -21,7 +21,7 @@
21
HUGGING_FACE_HUB_TOKEN = os.environ.get('HUGGING_FACE_HUB_TOKEN')
22
23
# disable this line to disable the embedding cache
24
-EMBEDDING_CACHE_FILE = '/tmp/gbnc_embeddings.json'
+EMBEDDING_CACHE_FILE = '/root/.cache/gbnc_embeddings.json'
25
26
top_k = 5
27
input_documents = []
0 commit comments