Skip to content

Commit 46f1959

Browse files
author
Your Name
committed
Add new litellm exception
1 parent 325748a commit 46f1959

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

cecli/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class ExInfo:
3636
ExInfo("JSONSchemaValidationError", True, None),
3737
ExInfo("NotFoundError", False, None),
3838
ExInfo("OpenAIError", True, None),
39+
ExInfo("PermissionDeniedError", False, None),
3940
ExInfo(
4041
"RateLimitError",
4142
True,

docker/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ FROM base AS aider-ce
4646
ENV CECLI_DOCKER_IMAGE=dustinwashington/aider-ce
4747

4848
# Copy requirements files
49-
COPY requirements.txt /tmp/aider/
50-
COPY requirements/ /tmp/aider/requirements/
49+
COPY requirements.txt /tmp/cecli/
50+
COPY requirements/ /tmp/cecli/requirements/
5151

5252
# Install dependencies as root
53-
RUN uv pip install --no-cache-dir -r /tmp/aider/requirements.txt && \
54-
rm -rf /tmp/aider
53+
RUN uv pip install --no-cache-dir -r /tmp/cecli/requirements.txt && \
54+
rm -rf /tmp/cecli
5555

5656
# Install playwright browsers
5757
RUN uv pip install --no-cache-dir playwright && \

0 commit comments

Comments
 (0)