Nicolai Mortensen
Nicolai Mortensen
``` public static void Normalize(ref Vector2 value, out Vector2 result) { float factor; DistanceSquared(ref value, ref zeroVector, out factor); factor = 1f / (float)Math.Sqrt(factor); result.X = value.X * factor; result.Y...
System.ObjectDisposedException: 'Cannot access a disposed object. Object name: 'System.Net.Sockets.Socket'.' > System.dll!System.Net.Sockets.Socket.BeginReceive(byte[] buffer, int offset, int size, System.Net.Sockets.SocketFlags socketFlags, out System.Net.Sockets.SocketError errorCode, System.AsyncCallback callback, object state) Unknown No symbols loaded. System.dll!System.Net.Sockets.Socket.BeginReceive(byte[]...
Is it possible to encode as 32 bit floating points instead of 64? I'm sending a lot of floating number over a socket and this seems quiet expensive. 1.1 =...
Updated the condition for checking `result.Delta?.PartialJson` from `!string.IsNullOrWhiteSpace` to `!= null` in `Message.cs`, `MessagesEndpoint.cs`, and `VertexAIMessagesEndpoint.cs`. This change simplifies the logic and ensures consistency across the codebase. Was unable to...
Parallel tool calls wasn't working because it finalized on first tool_use, resulting in only one tool call even though AI is trying to invoke multiple. and then also added the...