Kai Schlamp
Kai Schlamp
Excellent. I will have a look at it tomorrow 🙂. I think it's a good idea to handle more stuff at the database level (as long as we can still...
> > Excellent. I will have a look at it tomorrow 🙂. I think it's a good idea to handle more stuff at the database level (as long as we...
Just found out that it works a bit differently in the Django command. The normal `procrastinate` command supports the multiple `v` option.
> Yep, the `PROCRASTINATE_` prefix is [added automatically](https://github.com/procrastinate-org/procrastinate/blob/6c3e58248063c3c576ac37f054ba3055a3e819f8/procrastinate/cli.py#L155) Thanks, good to know. > > It used to be a feature from click but we had to stop using click due...
I can also confirm that `reponse_format` is not working (I am using the Docker image `ghcr.io/ggml-org/llama.cpp:server-b4779`). When using the OpenAI Python client like this: ```python response = client.beta.chat.completions.parse( model="smollm2:135m", messages=[...
But it would still be nice if errors could be ignored somehow (without disabling the whole json schema feature). For example, [uv-dynamic-versioning](https://pypi.org/project/uv-dynamic-versioning/) uses this setting: ``` [tool.hatch.version] source = "uv-dynamic-versioning"...
I also agree that VLMs should be better supported. I just [opened a discussion yesterday](https://github.com/mlflow/mlflow/discussions/16257) about filtering out those base64 images sent to models, which currently seems impossible with automatic...
Hi @kalaomer. Yes, that would be a nice feature. But maybe we can implement it in a more general way. We [recently discussed a middleware feature](https://github.com/procrastinate-org/procrastinate/issues/1262) and this could help...
I had something similar in a long-running task. After some time, the Django database connection times out, and that error occurs. I worked around this issue by calling `django.db.close_old_connections()` in...
@nicokant Is the problem solved by `django.db.close_old_connections()` or `CONN_MAX_AGE`? If so, I will add a note to our official FAQ and close the issue.