Sébastien Ros

Results 1060 comments of Sébastien Ros

The logs explain why `phi-4-reasoning` is not displayed and made available, it fails to find a prompt. Interestingly the `gtp-oss-20` model is listed on CUDA but doesn't have a prompt...

I found a workaround, here is an example with `Point` which is a struct: ```c# var options = new TemplateOptions(); options.MemberAccessStrategy.Register(); options.MemberAccessStrategy.Register(nameof(Point.X), new DelegateAccessor((point, name, context) => point.X)); options.MemberAccessStrategy.Register(nameof(Point.Y), new...

So instead of comparing to `true` we actually need to handle the single argument separately and convert it using `ToBooleanValue()`. Can someone create a PR and a test for that?

As I mentioned, and as @gabbersepp is also noting, `.Or(BooleanValue.True)` would mean that `where: "name"` would only work if `name` is actually the value `true` too. I think instead if...

Please create a PR then, we can add some tests to verify all requirements.

@gabbersepp I agree that this won't work, but I am ok with @williamb1024 create the initial PR so we can add a unit test to show what's missing, and then...

Thanks @williamb1024 , feel free to send more!

For the sake of the reasoning, we are talking 50ns in the best case. Which is 20 times less than a micro second (not milli, micro). For usages which are...

thanks, but not worth a new dependency

The value of `ZString` is much bigger than id generation. It's worth an external reference IMO. We only generate ids on new content items version AFAIK, so not often at...