Marcus

Results 8 comments of Marcus

What about a pluggable interface (`ModelManager`?) that could be something like this? ``` class ModelManager(metaclass=ABCMeta) @classmethod def build() -> Self: pass def generate_completion(data, request_type, project): # TODO: add types pass...

not sure if I should create a new issue for this - but I believe this is actually "done"? it seems to me that a bug was introduced by https://github.com/pantsbuild/pants/pull/16174...

What I did was set `disallow_any_generics` to `true` locally, and then look for stuff that I was reasonably confident could be changed without requiring in-depth knowledge. I suggest: * Generating...

@apetenchea the "inline type parameter" syntax (that's how I think of it) is only available in 3.12, so to support >=3.8, we can use the older syntax instead. The above...

Perhaps it might help if I explained my use case. At work, we use ArangoDB for storage, but our data models are defined with [Pydantic](https://github.com/pydantic/pydantic). We've created a custom serialiser...

Hi @apetenchea, thanks so much for the detailed writeup + your effort! To be honest, I was not expecting anything like what you did - I just wanted to start...

whoops, I reopened it because I wanted to close as not completed and I think the second request didn't go through thanks again!

I experienced a similar issue in production today, which I verified with the following query: ``` LET doc = DOCUMENT(@document_id) LET matches = ( FOR edge IN contains FILTER edge._to...