Florian Stellbrink
Florian Stellbrink
Could you add me, please?
Any feedback would be much appreciated @bradlc!
Unfortunately a rebase is out of the questions at the moment. I need to test the changes, and master has been broken for three weeks straight now. Either way I...
Llama.cpp just added support for T5 architectures: https://github.com/ggerganov/llama.cpp/pull/8141 Is this possible now?
This did the trick for me: ```c# public class SwaggerRequiredMemberFilter : ISchemaFilter { public void Apply(OpenApiSchema schema, SchemaFilterContext context) { var requiredProperties = context.Type.GetProperties().Where(p => p.HasAttribute()); var schemaPropertyNames = schema.Properties.Keys.Where(...
Thank you for the feedback! I looked into writing chaining in a way that covers all cases but couldn't come up with anything I was satisfied with. Closing this for...
Just ran into this too. Easier reproduction: `npx edge-runtime --eval "({}).constructor == Object" ` -> false `node --eval "console.log(({}).constructor == Object)"` -> true