feat(api): manual updates

This commit is contained in:
stainless-app[bot] 2025-09-03 17:15:28 +00:00
parent 9b3134a27e
commit 979c43dbc7
225 changed files with 25869 additions and 1 deletions

9
.devcontainer/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
ARG VARIANT="3.9"
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
USER vscode
RUN curl -sSf https://rye.astral.sh/get | RYE_VERSION="0.44.0" RYE_INSTALL_OPTION="--yes" bash
ENV PATH=/home/vscode/.rye/shims:$PATH
RUN echo "[[ -d .venv ]] && source .venv/bin/activate || export PATH=\$PATH" >> /home/vscode/.bashrc