Ben Whalley

Results 20 comments of Ben Whalley

Sorry - I really hadn't mean to drag this down into bikeshedding about return formats. I really do appreciate the concise print methods that emmeans has, and it's not so...

I came here to request the same feature. Django inplace edit (https://github.com/ptav/django-inlineedit) has a nice feature of passing the (user, object, field) to a callable that checks permission to edit....

I have been trying to understand external volume support because I'm using Colima to run the SQL server images here `mcr.microsoft.com/mssql/server:2022-preview-ubuntu-22.04` I have the same problem described above, but using...

Oops... Here it is: [withinbetween.pdf](https://github.com/mkfreeman/hierarchical-models/files/1438646/withinbetween.pdf)

``` class Player(LifecycleModelMixin, AbstractUser): name_embedding = VectorField(dimensions=1536, blank=True, null=True) # has_changed=False at the moment because of bug with VectorField @hook(AFTER_CREATE) @hook(AFTER_SAVE, when_any=["username", "first_name", "last_name"]) def update_name_embedding(self): ... ``` >This doesn't...

I have firstname, last name username fields on the Player model (a User subclass). I use these to create a text embedding of a combined string f"{firstname} {last_name} {username}. This...

Hi - sorry. I would, but being lazy have now found an alt. Closing for now.

Hi all - for info, the ollama bug related to tool calls has been closed. Having installed the new release I don't see it having fixed the issue with magentic...

I actually have a prototype of something similar to chainforge running in python, and I used `networkx` to build and traverse a DAG, which makes it all really simple. I...

I came here to ask about a similar request — specifically, whether it's possible to use a .cforge flow document from within code. I guess what I was looking for...