SDK v1.66.0: add IAudioRecorderService + ITranscriptionService
Details
Add IAudioRecorderService and ITranscriptionService interfaces to the SDK
Services namespace. These allow plugins to record audio and transcribe
speech-to-text without directly depending on Desktop internals.
AudioRecorderServiceAdapter wraps AudioRecorderService.Instance, translating
PropertyChanged events into DurationChanged. TranscriptionServiceAdapter
wraps WhisperService.Instance.TranscribeAudioFileAsync.
Both services are wired through PluginHost and PluginHostFactory, exposed
as nullable properties on IPluginHost for backward compatibility.
Desktop v1.65.9 for adapter wiring.
Add hardware-aware AI recommendations with privacy-first cloud providers
Details
Hardware profiling: GPU detection (CUDA/ROCm/Metal), CPU/SIMD capability
assessment (AVX2/AVX-512), and available memory detection. Composite
fitness scoring (0-100) with Green/Yellow/Red tiers determines local AI
viability and drives cloud provider recommendations.
New cloud providers: Mistral AI (EU-based, GDPR-native, HighPrivacy) and
Groq (fast inference, StandardApi). Both use OpenAiCompatibleProviderBase
which extracts shared OpenAI chat format logic.
Privacy tier system: PrivacyTier property on all providers — HighPrivacy
(Anthropic, Mistral, Local) vs StandardApi (OpenAI, Gemini, Groq).
Provider dropdown now shows "Privacy-First" labels.
Smart GPU offload: LocalLlamaProvider uses PlatformDetector.DetectGpu()
to set GpuLayerCount to -1 (all layers) when GPU is available, or 0
(CPU-only) when no accelerator is detected — prevents crashes and
unusable performance on CPU-only systems.
Settings UI: Hardware Report Card replaces single RAM recommendation line
showing RAM/GPU/CPU details, fitness score badge, and cloud-recommended
banner for Yellow/Red tier systems.
Desktop version bumped from 1.64.3 to 1.65.0.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add PrivacyTier enum and property to AiProviderInfo SDK type
Details
Introduces PrivacyTier enum (HighPrivacy, StandardApi) to classify AI
providers by their data handling guarantees. Adds nullable PrivacyTier
property to AiProviderInfo record. Bumps SDK version from 1.64.0 to
1.65.0 to publish updated types before dependent desktop changes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add wiki-link resolution and conversational entity tracking to AI chat
Details
Extract and resolve wiki-links ([[type:id|Title]]) from user chat messages
via ILinkableItemProvider, injecting resolved entity metadata into the AI
system prompt so ACTION blocks can reference entities by ID. Track the last
successfully acted-on entity (ID + type) across the conversation so
pronouns like "that task" or "it" resolve correctly. Fields reset on new
chat. Bumps Desktop to 1.64.0.
Get notified about new releases