From 523501cee1206fb4980fad6d4d435398b2f07777 Mon Sep 17 00:00:00 2001 From: Walter Oggioni Date: Sun, 3 Nov 2024 16:44:56 +0800 Subject: [PATCH] replaced openai with gpt4all --- jupyter-python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter-python/Dockerfile b/jupyter-python/Dockerfile index a54aba4..ce8174c 100644 --- a/jupyter-python/Dockerfile +++ b/jupyter-python/Dockerfile @@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/home/jovyan/.cache/pip,uid=1000,gid=1000 venv/bin RUN --mount=type=cache,target=/home/jovyan/.cache/pip,uid=1000,gid=1000 venv/bin/pip install python-lsp-server[yapf,rope,pyflakes] # RUN venv/bin/pip install --no-binary :all: faiss-cpu RUN --mount=type=cache,target=/home/jovyan/.cache/pip,uid=1000,gid=1000 venv/bin/pip install jupyter-ai -RUN --mount=type=cache,target=/home/jovyan/.cache/pip,uid=1000,gid=1000 venv/bin/pip install langchain-openai gpt4all langchain_ollama +RUN --mount=type=cache,target=/home/jovyan/.cache/pip,uid=1000,gid=1000 venv/bin/pip install gpt4all pydantic==2.* #RUN venv/bin/pip install pylsp-mypy ENV PATH="/home/jovyan/venv/bin/:$PATH"