Skip to content

Releases: danielmiessler/Fabric

v1.4.340

08 Dec 00:43

Choose a tag to compare

Changes

PR #1856 by ksylvan: Add support for new ClaudeHaiku 4.5 models

  • Add support for new ClaudeHaiku models in client
  • Add ModelClaudeHaiku4_5 to supported models
  • Add ModelClaudeHaiku4_5_20251001 to supported models

v1.4.339

08 Dec 00:17

Choose a tag to compare

Changes

PR #1855 by ksylvan: feat: add image attachment support for Ollama vision models

  • Add multi-modal image support to Ollama client
  • Implement convertMessage to handle multi-content chat messages
  • Add loadImageBytes to fetch images from URLs
  • Support base64 data URLs for inline images
  • Handle HTTP image URLs with context propagation

v1.4.338

04 Dec 13:41

Choose a tag to compare

Changes

PR #1852 by ksylvan: Add Abacus vendor for ChatLLM models with static model list

  • Add static model support and register Abacus provider
  • Detect modelsURL starting with 'static:' and route appropriately
  • Implement getStaticModels returning curated Abacus model list
  • Register Abacus provider with ModelsURL 'static:abacus'
  • Extend provider tests to include Abacus existence

v1.4.337

04 Dec 04:28

Choose a tag to compare

Changes

PR #1851 by ksylvan: Add Z AI provider and glm model support

  • Add Z AI provider configuration to ProviderMap
  • Include BaseURL for Z AI API endpoint
  • Add test case for Z AI provider existence
  • Add glm to OpenAI model prefixes list
  • Support new Z AI provider in OpenAI compatible plugins

v1.4.336

01 Dec 11:44

Choose a tag to compare

Changes

PR #1848 by zeddy303: Fix localStorage SSR error in favorites-store

  • Fix localStorage SSR error in favorites-store by using SvelteKit's browser constant instead of typeof localStorage check to properly handle server-side rendering and prevent 'localStorage.getItem is not a function' error when running dev server

v1.4.335

28 Nov 02:24

Choose a tag to compare

Changes

PR #1847 by ksylvan: Improve model name matching for NeedsRaw in Ollama plugin

  • Improved model name matching in Ollama plugin by replacing prefix-based matching with substring matching
  • Enhanced NeedsRaw functionality to support more flexible model name detection
  • Renamed ollamaPrefixes variable to ollamaSearchStrings for better code clarity
  • Replaced HasPrefix function with Contains for more comprehensive model matching
  • Added "conceptmap" to VSCode dictionary settings

Direct commits

  • Merge branch 'danielmiessler:main' into main
  • Docs: Fix typo in README

v1.4.334

26 Nov 13:49

Choose a tag to compare

Changes

PR #1845 by ksylvan: Add Claude Opus 4.5 Support

  • Add Claude Opus 4.5 model variants to Anthropic client
  • Upgrade anthropic-sdk-go from v1.16.0 to v1.19.0
  • Update golang.org/x/crypto from v0.41.0 to v0.45.0
  • Upgrade golang.org/x/net from v0.43.0 to v0.47.0
  • Bump golang.org/x/text from v0.28.0 to v0.31.0

v1.4.333

25 Nov 22:56

Choose a tag to compare

Changes

PR #1833 by junaid18183: Added concall_summary

  • Added concall_summery pattern to extract strategic insights from earnings transcripts for investors.

PR #1844 by ksylvan: Correct directory name from concall_summery to concall_summary

  • Fix: correct directory name from concall_summery to concall_summary
  • Rename pattern directory to fix spelling error
  • Update suggest_pattern system with concall_summary references
  • Add concall_summary to BUSINESS and SUMMARIZE category listings
  • Add user documentation for earnings call analysis

v1.4.332

24 Nov 14:20

Choose a tag to compare

Changes

PR #1843 by ksylvan: Implement case-insensitive vendor and model name matching

  • Fix: implement case-insensitive vendor and model name matching across the application
  • Add case-insensitive vendor lookup in VendorsManager
  • Implement model name normalization in GetChatter method
  • Add FilterByVendor method with case-insensitive matching
  • Add FindModelNameCaseInsensitive helper for model queries

v1.4.331

23 Nov 08:24

Choose a tag to compare

Changes

PR #1839 by ksylvan: Add GitHub Models Provider and Refactor Fetching Fallback Logic

  • Add GitHub Models provider and refactor model fetching with direct API fallback
  • Add GitHub Models to supported OpenAI-compatible providers list
  • Implement direct HTTP fallback for non-standard model responses
  • Centralize model fetching logic in openai package
  • Upgrade openai-go SDK dependency from v1.8.2 to v1.12.0