Anivar Aravind
Anivar Aravind
This release misses 1. Server code 2. Ios & Kaios apps 3. Cloud & Deploy functions. This release does not help in transparency without 1 & 3
## LLaVA Multi-Modal Support Makes it easier to use LLaVA models by packaging everything in one file. ### Problem LLaVA needs two files - the language model and vision encoder....
This PR fixes three critical issues preventing Server v2 from being used in production: 1. **URL prefix normalization** - Now handles `--url-prefix //path` correctly like the old server 2. **Args...
## Problem Issue #771: Production servers crash with `std::length_error: vector` during KV cache management. ## Root Cause Integer underflow in `update_slots()` at line 1714: ```cpp slot.cache_tokens.resize(slot.cache_tokens.size() - n_discard); ``` When...
Adds qwen2vl model architecture support to llamafile. ## Changes - Add LLM_ARCH_QWEN2VL architecture enum - Add tensor mappings with bias support for Q, K, V, output layers - Add model...
## Summary Adds support for missing llama.cpp sampling arguments --min-p and --top-k to llamafile. ## Problem Issue #715 reported that llamafile was missing several sampling arguments available in llama.cpp: -...
This PR adds subscription variables support to DataStore, addressing the long-standing need for server-side subscription filtering in multi-tenant applications. Fixes #9413. The implementation adds a new `subscriptionVariables` configuration option that...
This PR addresses several long-standing user requests for better WebSocket connection control in the GraphQL API client. Users have reported issues with WebSocket connections not automatically reconnecting after network interruptions...
This PR fixes ExpoSQLiteAdapter export issues and API compatibility problems that cause Expo projects to fall back to AsyncStorage instead of using SQLite storage. Resolves #14514 Also resolves #14440 (duplicate...
## Description Fixes the critical issue where DataStore subscriptions silently fail after authentication tokens expire, causing users to miss real-time updates. Resolves #12954 ## Problem After extended idle periods or...