Nick Drouin
Nick Drouin
> * Wondering the reason you create a new project instead of expanding the current MSCS one. I like the idea of supporting a number of examples using 'dotnet new...
> * I was stupidly not aware about .gitignore from GitHub, I think I would like to have it in /Project so I handle all VisualStudio subdir, maybe I'll request...
Hey, quick update on this. So the partial parsing is at least two problems. First and easiest, some (new storage SDK) behavior has changed and I needed to pump the...
> @NickDrouin - with 4.6.1 now released, does it make sense to update this? Thanks @davidcorbin-atmosera , I updated the lib and removed the work-around.
Same for me, after update to latest: `Cannot get the value of a token type 'StartArray' as a string.` The exception from a wrap of `CreatePlanAsync` is `{System.Text.Json.JsonException}`
Found it, @rborosak , @teresaqhoang In [here](https://github.com/microsoft/semantic-kernel/blob/dotnet-1.10.0/dotnet/src/Planners/Planners.Handlebars/Handlebars/Extensions/KernelParameterMetadataExtensions.cs#L103): ```csharp public static KernelParameterMetadata ParseJsonSchema(this KernelParameterMetadata parameter) { var schema = parameter.Schema!; var type = "object"; if (schema.RootElement.TryGetProperty("type", out var typeNode)) { type...