Skip to content

Commit

Permalink
commit for now
Browse files Browse the repository at this point in the history
  • Loading branch information
morganmcg1 committed Jan 19, 2025
1 parent d50618e commit 174d9f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ __pycache__/
*$py.class

temp_index/
e2b*

# C extensions
*.so
Expand Down
2 changes: 1 addition & 1 deletion download_vectordb_index.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import wandb
from wandbot.configs.vectorstore_config import VectorStoreConfig
from wandbot.configs.vector_store_config import VectorStoreConfig

from dataclasses import dataclass
import simple_parsing as sp
Expand Down
2 changes: 1 addition & 1 deletion e2b.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN poetry install
# Copy in the vector index
COPY temp_index/* /home/user/temp_index/

RUN export INDEX_DIR=$(python -c 'from wandbot.configs.vectorstore_config import VectorStoreConfig; \
RUN export INDEX_DIR=$(python -c 'from wandbot.configs.vector_store_config import VectorStoreConfig; \
index_dir = VectorStoreConfig().index_dir; \
print(index_dir, end="")') && \
mkdir -p $INDEX_DIR && \
Expand Down

0 comments on commit 174d9f8

Please sign in to comment.