gpt4- compatable

This commit is contained in:
Alex
2023-03-31 10:45:40 +01:00
parent 46e055833b
commit 3d0c6eafec
2 changed files with 1 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ FROM python:3.10-slim-bullseye as builder
RUN apt-get update && apt-get install -y gcc curl
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && apt-get install --reinstall libc6-dev -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN pip install --upgrade pip && pip install tiktoken==0.1.2
RUN pip install --upgrade pip && pip install tiktoken==0.3.3
COPY requirements.txt .
RUN pip install -r requirements.txt