Simon Podhajsky
Simon Podhajsky
(Note: I did try to add `--fix-missing`, as the message suggests, and ran into a similar issue)
Not unique to arm64, it turns out - I changed the first line to `FROM --platform=linux/amd64 python:3.11-slim-bookworm` and all it got me was a slightly different hash mismatch, this one...
Adding `--pull --no-cache` doesn't do anything, either - I have tried deleting and re-downloading the base layer, and it doesn't appear to be the problem.
For the record, a combination of approaches suggested by SO [here](https://stackoverflow.com/a/48777773/2114580) and [here](https://stackoverflow.com/a/76092743/2114580) eventually helped me work around the issue: ```docker RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \ echo...
The excerpt above is from the dev container (`.devcontainer/dev/Dockerfile`).
Doesn't this work already? I frequently use register_function with the same agent assigned to both caller and executor; the latter is a little misleadingly named, because such agent doesn't even...
Odd: pretty sure all my use cases have been in multi-agent chats with defined transitions between agents, where the tool-executing agent wasn't allowed to speak twice (I think - I'll...
Would some of this be mitigated with `secret: true` setting for the relevant `copier.yml` keys? This wouldn't copy them to `.copier-answers.yml`. I too am confused as to why `.env` isn't...
...I think I see why `secret: true` wasn't used - `.copier/update_dotenv.py` relies on the presence of secrets in the answer file. One way to avoid this dependency would be to...
Would it maybe make sense to replace `logger_type` with `logger_cls: Type[BaseLogger]` and then try to directly call its constructor? Like so: ```python class LoggerFactory: @staticmethod def get_logger(logger_cls: Type[BaseLogger] = SqliteLogger,...