Releases: danielmiessler/Fabric
Releases · danielmiessler/Fabric
v1.4.340
v1.4.339
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
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
v1.4.336
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
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
ollamaPrefixesvariable toollamaSearchStringsfor better code clarity - Replaced
HasPrefixfunction withContainsfor 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
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
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_summerytoconcall_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
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
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