| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| fabric_1.4.451_checksums.txt | 2026-04-23 | 736 Bytes | |
| fabric_Linux_x86_64.tar.gz | 2026-04-23 | 22.2 MB | |
| fabric_Windows_arm64.zip | 2026-04-23 | 20.5 MB | |
| fabric_Windows_i386.zip | 2026-04-23 | 21.6 MB | |
| fabric_Windows_x86_64.zip | 2026-04-23 | 22.7 MB | |
| fabric_Darwin_arm64.tar.gz | 2026-04-23 | 21.4 MB | |
| fabric_Darwin_x86_64.tar.gz | 2026-04-23 | 22.7 MB | |
| fabric_Linux_arm64.tar.gz | 2026-04-23 | 20.4 MB | |
| fabric_Linux_i386.tar.gz | 2026-04-23 | 20.8 MB | |
| README.md | 2026-04-23 | 1.6 kB | |
| v1.4.451 source code.tar.gz | 2026-04-23 | 20.8 MB | |
| v1.4.451 source code.zip | 2026-04-23 | 21.2 MB | |
| Totals: 12 Items | 214.4 MB | 2 | |
Changes
PR #2079 by teamsincetoday: Add 3 commerce intelligence patterns: affiliate extraction, video entities, monetization
- Added
extract_affiliate_productspattern to surface both sponsored and organic affiliate opportunities from any video transcript, going beyond the existingextract_sponsorspattern. - Added
extract_video_commerce_entitiespattern to identify all commercial entities in video content, categorized by type, timestamp position, and purchase likelihood. - Added
analyze_monetization_opportunitiespattern to map audience intent to revenue strategies, covering affiliate links, sponsorships, and digital products. - Registered all three new patterns in
pattern_descriptions.jsonandpattern_extracts.jsonwith appropriate metadata and tags. - Integrated all three patterns into
suggest_patternunder the ANALYSIS, BUSINESS, and EXTRACT categories, and documented them inpattern_explanations.md.
PR #2086 by majiayu000: fix: parse vendor prefix from model name for vendor/model convention
- Fix: Added fallback logic to parse the vendor prefix from a model name when no vendor is explicitly specified. When a model string such as
ollama/llama3is passed, the lookup no longer fails with a "could not find vendor" error; instead, the first path segment is split and checked against known vendors, correctly resolving the model tollama3under theOllamavendor group.