Skip to content

Commit

Permalink
Update vector store version. (#4) (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
EJOOSTEROP authored Sep 8, 2023
1 parent 375de86 commit 79268a6
Show file tree
Hide file tree
Showing 5 changed files with 439 additions and 1,010 deletions.
4 changes: 3 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

"postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",
"postCreateCommand": "poetry install && pre-commit install" ,
"postCreateCommand": "poetry install && git config --global --add safe.directory ${containerWorkspaceFolder} && pre-commit install" ,
// "postCreateCommand": "poetry install" ,

// Configure tool-specific properties.
Expand Down
6 changes: 3 additions & 3 deletions .devcontainer/dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM mcr.microsoft.com/devcontainers/python:1-3.11-bullseye
FROM mcr.microsoft.com/devcontainers/python:1-3.11-bookworm

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends sqlite3
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ The API keys can be specied in a [.env file][.env-url]. Use the provided .env.ex

At present, all services used in the example configuration have free tiers available.

#### sqlite3
sqlite3 v3.35 or higher is required. This is oftentimes installed as part of a Linux install.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

### Installation
Expand Down
Loading

0 comments on commit 79268a6

Please sign in to comment.