Commit graph

51 commits

Author SHA1 Message Date
chinhkrb113
ce89ca581d Merge upstream main into ONNX catalog branch 2026-07-06 09:55:51 +07:00
Alex Jones
fe89b82366 chore: move schema.json to llmfit-core/data and drop root data/ references
Follows up the #585 merge: the schema now lives next to the catalog it
validates, and the workflow/test/docs no longer reference the removed
root data/ copies.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 21:50:17 +01:00
Alex Jones
cf64a5b415 chore: remove duplicated root data/ copies of catalog and benchmark cache
data/hf_models.json and data/benchmark_cache.json were byte-identical
copies of the files in llmfit-core/data/ (the ones actually embedded via
include_str!), adding ~11 MB of redundant git-tracked data that could
silently drift. Scrapers now write only the canonical llmfit-core/data/
path; scripts and docs updated to match.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 21:49:07 +01:00
Alex Jones
5b4a37ef4e
Merge pull request #585 from Romeo-mz/feature/weekly-update
Feature request: Add a weekly ci action to update model database
2026-07-02 21:48:41 +01:00
Alex Jones
a812232f0e fix(schema): add 'audio' to capability enum
The catalog on main now contains models with the 'audio' capability
(added by the audio-ASR work), which the strict enum rejected.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 21:47:50 +01:00
Alex Jones
39e06f51d5 chore(data): refresh HF model catalog + localmaxxing benchmark cache
Regenerated the embedded catalogs against current upstream:

- HF models: 5458 -> 5473 (+15 added, 0 removed; purely additive). New
  entries include GLM-5.2 variants, Gemma-4-26B, Jan-nano-128k,
  Llama-3.3-Swallow-70B, Mellum2-12B, VibeThinker-3B, and others.
- localmaxxing benchmark cache: 384 results across 13 hardware presets.

Both repo-root and embedded (llmfit-core/data) copies are byte-identical
and valid JSON. Full test suite passes with the new embedded data (383
core incl. embedded-database invariants + 51 TUI). Scraped without
HF_TOKEN, so gated models (Phi-3-medium, LongCat-Flash, …) are skipped as
usual.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-23 12:19:26 +01:00
Razze
a148030873 Refresh Hugging Face model license data
Regenerate the embedded model database after adding cardData to discovery queries. This increases populated license metadata while preserving existing GGUF source entries.
2026-06-19 21:03:11 +02:00
Razze
f4b37b210b Scrape Hugging Face model licenses
Populate model license metadata from Hugging Face card data and license tags. Prefer named licenses when Hugging Face reports a generic other license, and preserve existing license and GGUF source metadata when a refresh response omits it.
2026-06-17 21:51:17 +02:00
romeo-mz
4450e63f37 refactor(workflows): enhance weekly model update script and add note for CI checks 2026-06-17 09:57:12 +02:00
romeo-mz
682d91a985 feat(workflows): update weekly model update workflow and improve schema documentation 2026-06-17 09:50:20 +02:00
romeo-mz
25b0642d6c feat(schema): add JSON schema and weekly github action 2026-06-17 09:50:20 +02:00
romeo-mz
5136eb44ef feat(models): add daily model update workflow and curated models file 2026-06-17 09:50:20 +02:00
Hajun Lee
0e94aa7bae Add NCAI VAETKI models 2026-06-14 01:05:16 +09:00
Alex Jones
2d2fa5867c chore: refresh benchmark cache from localmaxxing.com
Re-scraped community benchmark data (scraped_at 2026-06-12), 344 results
across 13 hardware presets.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-12 22:21:51 +01:00
Alex Jones
27bae4878f
Merge pull request #603 from melnikaite/feat/audio-asr-models
feat(data): add Whisper/ASR model entries + audio support roadmap
2026-06-10 06:29:55 +01:00
Octopus
7407d1035e feat: upgrade MiniMax default model to M3
- Add MiniMaxAI/MiniMax-M3 to the curated model list (512K context, 128K max output, image input)
- Keep MiniMaxAI/MiniMax-M2.7 as a previous-generation option
- Remove MiniMaxAI/MiniMax-M2.5 from the curated target list
- Update scripts/scrape_hf_models.py to match the new curated order

Co-Authored-By: Octopus <liyuan851277048@icloud.com>
2026-06-03 10:28:29 +08:00
Eugene Melnikov
1ad6b04aeb
feat(data): add Whisper/ASR model entries + audio support roadmap
data/hf_models.json — append 4 automatic-speech-recognition entries:
  - openai/whisper-large-v3       (1.5 B, RTF 0.04 GPU / 0.6 CPU, 2.5 GB VRAM)
  - openai/whisper-large-v3-turbo (809 M, RTF 0.007 / 0.12,      1.5 GB VRAM)
  - distil-whisper/distil-large-v3 (756 M, RTF 0.004 / 0.08,     1.2 GB VRAM)
  - openai/whisper-medium         (307 M, RTF 0.003 / 0.05,       0.6 GB VRAM)

New fields use _audio_ prefix with serde(default) so existing
deserialization is not affected:
  _audio_rtf_gpu / _audio_rtf_cpu  Real-Time Factor (lower = faster)
  _audio_vram_gb                   GPU memory required at F16
  _audio_backends                  compatible server implementations

AUDIO_SUPPORT.md — roadmap for Rust integration:
  UseCase::Audio, AudioFit RTF-based scoring,
  MlxWhisperProvider + FasterWhisperProvider in providers.rs,
  --kind audio CLI filter.

Motivation: projects like TLDR need to pick the right Whisper
backend for their hardware. RTF on GTX 1660 Ti vs Apple M3 Pro
differs by 15x — llmfit already has the hardware detection to
make this choice automatic.
2026-06-02 14:14:24 +02:00
ChinhLee
c60ea90d3e fix: resolve #171 — Include ONNX models.
Fixes #171

Signed-off-by: ChinhLee <76194645+chinhkrb113@users.noreply.github.com>
2026-06-01 01:29:44 +07:00
Alex Jones
c3e3f0d03f
feat: rescrape model catalog and expand Ollama mappings (#573)
* feat: rescrape model catalog and expand Ollama mappings

- Full rescrape of hf_models.json (1852 -> 5341 models)
- Added 9 curated models to TARGET_MODELS: Devstral, Cohere Command A/R+,
  Falcon3-3B, Nemotron-Super-49B, EXAONE-Deep-2.4B/32B
- Added 21 Ollama mappings for Mistral, Qwen, DeepSeek, Falcon, Cohere,
  SmolLM2, NVIDIA Nemotron, EXAONE Deep, and OLMo 2
- Preserved gguf_sources from previous data where the rescrape missed them

Supersedes #316.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* style: cargo fmt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-23 20:11:17 +01:00
Alex Jones
a3e0eb27c5
feat(scoring): add generation-aware quality scoring (#553)
* feat(scoring): add generation-aware quality scoring

Newer model generations (e.g. Qwen3.6, Llama 4, DeepSeek V4) now receive
a quality bonus that reflects their improved quality-per-parameter over
older generations. Previously, quality scoring was based purely on parameter
count, which caused newer/smaller models to rank below older/larger ones
even when benchmarks show the opposite.

The implementation adds:
- `architecture` field to LlmModel (already present in scraped JSON, now
  deserialized)
- `parse_generation()` function that extracts generation from architecture
  strings and model names (covers Qwen, Llama, DeepSeek, Gemma, Phi,
  Mistral, Falcon, Granite families)
- Additive generation bonus in quality_score(): +3 per generation above
  1.0, capped at +9

Validated against 5312 models scraped from HuggingFace:
- 58% of models have parseable generation info
- 6 families with multiple generations correctly differentiated
- Key ranking fixes confirmed (e.g. Qwen3-8B now scores above Qwen2.5-7B)
- Models without generation info are unchanged

Fixes #552

* fix: add architecture field to LlmModel literals in TUI crate

Missed these struct literals in display.rs and main.rs during the
initial change.
2026-05-17 07:28:53 +01:00
Alex Jones
bab8c01277
feat: populate architecture metadata for precise KV cache and MoE speed estimation (#539)
The Rust fit engine already had a precise KV cache formula and an
architecture-aware MoE speed estimator (Tier 1), but both were starved
for data — only 78/1520 models had the required fields, and hidden_size,
vocab_size, and moe_intermediate_size were never populated from the
scraper.

Scraper changes:
- Add extract_arch_metadata() helper that extracts num_hidden_layers,
  num_attention_heads, num_key_value_heads, head_dim, hidden_size,
  vocab_size, moe_intermediate_size, and shared_expert_intermediate_size
  from config.json with text_config fallback for multimodal models
- Apply to both scrape_model() (curated) and _build_discovered_model()
  (auto-discovered), fixing the gap where discovered models had no
  architecture fields
- Fall back from moe_intermediate_size to intermediate_size for
  Mixtral-style models that use a single key for per-expert FFN dim
- Add estimate_params_from_arch() to detect and correct wrong
  parameters_raw from FP8/INT4/INT8 repos that report quantized element
  counts instead of true parameter count (e.g. unsloth/Qwen3-Coder-Next-FP8
  reported 2.1B instead of 79.7B)
- Handle list-type config values (e.g. ERNIE-4.5-VL)

Rust changes:
- Add hidden_size, vocab_size, moe_intermediate_size, and
  shared_expert_intermediate_size to HfModelEntry deserialization
- Wire through to LlmModel instead of hardcoded None, enabling the
  existing moe_bandwidth_decomposition() Tier 1 path

Results:
- Architecture metadata: 78/1520 (5%) → 1597/1852 (86%)
- MoE Tier 1 speed estimation: 0% → 353/356 (99%)
- Fixes wildly optimistic MoE speed estimates (e.g. Qwen3-Coder-Next-FP8
  went from 1606 tok/s to 43 tok/s)
- Model count: 1520 → 1852 (10K min-downloads discovery)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-10 15:00:28 +01:00
Alex Jones
93e9d673cf
feat: overhaul model discovery with cursor pagination, trending, and additive DB (#537)
The HuggingFace model scraper was silently broken — the `offset` parameter
is ignored by the HF API, so pagination only ever fetched the first page.
This switches to cursor-based pagination via the Link header, adds multiple
sort strategies (downloads, trendingScore, likes30d), makes the database
additive so historical models are never lost, and allows quantization/repack
orgs (bartowski, unsloth, etc.) since users actually run those variants.

Key changes:
- Fix pagination: use HF API cursor-based pagination (Link header)
- Multi-strategy discovery: downloads + trendingScore + likes30d, merged
- Additive database: existing models retained, fresh data updates in place
- Allow repack orgs: only trl-internal-testing is blocked now
- Config.json fallback: estimate params when safetensors metadata missing
- Discovery enabled by default with 1000 model limit
- Add feature-extraction pipeline for embedding models
- Filter statistics printed every run for transparency

Result: 1520 models (up from 1023), including 364 retained historical.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-06 10:29:44 +01:00
Alex Jones
fab2bec907
feat: add RWKV v7 G1f models (1.5B, 2.9B, 7.2B, 13.3B) (#517)
Add four RWKV7 G1f series models from shoumenchougou GGUF repos.
These are pure RNN/SSM models with no KV cache, 8192 context,
and full llama.cpp compatibility. Architecture "rwkv" is already
handled in models.rs as pure SSM.

Closes #515

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-29 07:58:11 +01:00
Alex Jones
928390b467 feat: add benchmark cache with offline fallback
- New scripts/scrape_benchmarks.py scrapes all 27 hardware presets from
  localmaxxing.com and writes data/benchmark_cache.json (+ llmfit-core copy)
- Cache is embedded at compile time via include_str! and parsed lazily
- TUI falls back to cached data when the API is unreachable, showing
  "Using cached data (API unreachable)" instead of an empty error
- Initial cache contains 115 results across RTX 5090/4090/3090,
  RX 7900 XTX/XT, and Apple M4 Max

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-27 15:51:57 +01:00
Alex Jones
0fd800fa1b
feat: add DeepSeek V4 model family (#502)
Add DeepSeek-V4-Pro, V4-Pro-Base, V4-Flash, and V4-Flash-Base to the
model database. Also fix MoE detection to handle the n_routed_experts
config key used by DeepSeek V4.

Closes #500

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-24 15:46:21 +01:00
Alex Jones
5397a8ab43 feat: add Qwen3.6 models and refresh model database with discovery
Add Qwen3.6-27B (dense, 27.8B) and Qwen3.6-35B-A3B (MoE, 36B/3B active)
to the curated model list with GGUF sources from unsloth and ggml-org.
Add hybrid attention layout inference for Qwen3.5/3.6 architectures.
Full re-scrape with --discover -n 2000 brings total to 962 models with
422 GGUF-sourced entries.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-22 20:15:47 +01:00
Alex Jones
ac5b115988
fix: correct Llama 4 Maverick metadata (expert count, context length) (#446)
Fixes #445

- Maverick num_experts was 16 (from generic llama4 fallback), now 128
  matching the model name (17B-128E)
- Maverick context_length was 4096 (bare max_position_embeddings),
  now 1048576 after applying RoPE scaling factor
- MODELS.md listed both Scout/Maverick as 128k; corrected to 10M/1M
- Scraper detect_moe() now checks text_config for nested MoE fields
  (Llama 4 multimodal models store num_local_experts there)
- Scraper infer_context_length() now applies rope_scaling factor when
  present, so models using RoPE extension get correct context values

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 20:25:09 +01:00
Alex Jones
b2c4bba080 chore: update model catalogue (985 models, add gemma-4-E2B/E4B)
Re-ran scraper with discovery and GGUF source enrichment. Adds
gemma-4-E2B-it and gemma-4-E4B-it with unsloth/ggml-org GGUF sources,
plus 22 net new models from HuggingFace discovery.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 07:37:36 +01:00
Alex Jones
ac41ec654a chore: fixed gguf filter regression
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
2026-04-03 10:09:39 +01:00
Alex Jones
58c0a47363 chore: new models
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
2026-04-01 18:05:18 +04:00
Alex Jones
344428ef4f chore: new models
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
2026-04-01 18:05:18 +04:00
Alex Jones
d5e6dbf487 chore: update model catalogue
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
2026-03-21 18:20:15 +00:00
PR Bot
7c16b9d5ee feat: add MiniMax-M2.7 to curated model database
- Add MiniMaxAI/MiniMax-M2.7 to curated models list and manual entries
- Add M2.7 active parameter count for MoE calculations
- Add M2.7 entries to both data/hf_models.json and llmfit-core/data/hf_models.json
- M2.7 is placed before M2.5 as the latest flagship model
- All previous MiniMax models (M2, M2.1, M2.5) retained as alternatives
2026-03-18 15:40:00 +08:00
Yuri Khrustalev
6252c9aadb Merge branch 'AlexsJones:main' into ykhrustalev/lfm 2026-03-12 00:02:18 -04:00
Brian Gupta
d7f2f11bb2 feat: add AWQ/GPTQ support with vLLM inference runtime
Add ModelFormat enum (Gguf/Awq/Gptq/Mlx/Safetensors) and Vllm inference
runtime. Pre-quantized models are detected from config.json by the scraper
and filtered to CUDA/ROCm only (no Apple Silicon support yet). Dynamic
re-quantization is skipped for fixed-precision formats.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-10 00:55:16 -04:00
Alex
30611e340d chore: version bump
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-03-06 07:07:21 +00:00
Alex
2ce5403eb2 chore: version bump
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-03-06 07:07:11 +00:00
Yuri Khrustalev
83d038a54e feat: add Liquid AI LFM2/LFM2.5 models
Add 33 LFM2-family models: dense text (350M-2.6B), MoE (8B-A1B,
24B-A2B), LFM2.5 (Base/Instruct/Thinking/JP), Vision-Language,
Audio, Liquid Nanos fine-tunes, and lmstudio-community MLX variants.
2026-03-04 13:02:04 -05:00
Alex
455709f2fb feat: fix for qwen3_5moe
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-03-04 09:19:25 +00:00
Alex
1a19c4258f feat: removed exact model count as it increases so often
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-03-01 19:20:25 +00:00
Laurence S.
fac36872ee Add new Qwen3.5 models to database
All Multimodal vision and text models:
- Qwen3.5-27B (27.8B params, 256k context)
- Qwen3.5-35B-A3B (36.0B MoE, 256k context)
- Qwen3.5-122B-A10B (125.1B MoE, 256k context)
- Qwen3.5-397B-A17B (403.4B MoE, 256k context)
2026-03-01 10:30:30 -08:00
Three Foxes (in a Trenchcoat)
967253b609 feat: add GGUF download source enrichment for models
Add a --gguf-sources flag to the scraper that checks known GGUF providers
(unsloth, bartowski) on HuggingFace for pre-quantized versions of each
model in the database.

Why not add Unsloth as a model provider?
Unsloth publishes repacks/quantizations of existing models, not original
architectures. Adding them as separate model entries would create duplicates
with identical RAM/VRAM requirements. Instead, we link existing models to
their GGUF download sources — this is more actionable for users who want
to actually download and run models locally.

Changes:
- scraper: --gguf-sources flag checks unsloth/ and bartowski/ repos
- models.rs: GgufSource struct + gguf_sources field on LlmModel
- display.rs: show GGUF Downloads section in model info with direct
  HuggingFace links and llmfit download command hint
- JSON output: gguf_sources included in fit results

38 models enriched with GGUF sources across both providers.

Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com>
2026-03-01 12:42:44 +00:00
AlexsJones
d4f0a0e19a feat: updating models
Signed-off-by: AlexsJones <alexsimonjones@gmail.com>
2026-02-26 17:49:03 +00:00
Three Foxes (in a Trenchcoat)
89bd63f016 feat: add theme switcher with 6 color schemes for TUI
Add a theme system with 6 built-in color schemes:
- Default (original colors)
- Dracula (dark purple with pastel accents)
- Solarized (Solarized Dark palette)
- Nord (cool blue-gray tones)
- Monokai (Monokai Pro colors)
- Gruvbox (warm retro palette)

Press 't' to cycle through themes. The current theme is shown
in the filter bar. All UI elements (table, detail view, system
bar, status bar, popups) use semantic theme colors.

Implementation:
- New theme.rs module with ThemeColors struct mapping semantic
  roles (fg, muted, accent, score_high, fit_perfect, etc.)
- Refactored tui_ui.rs to use ThemeColors instead of hardcoded
  Color values throughout
- Added theme field to App state and cycle_theme() method
- Wired 't' key in tui_events.rs

Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com>
2026-02-24 13:14:21 +00:00
Three Foxes (in a Trenchcoat)
3fb10d019f feat: workspace restructure + Tauri desktop app
Restructure single-crate project into Cargo workspace:
- llmfit-core: core library (hardware detection, model fitting, providers)
- llmfit-tui: CLI/TUI binary (unchanged user experience)
- llmfit-desktop: macOS desktop app via Tauri 2

The workspace split enables the desktop app to reuse core logic
while keeping the CLI/TUI as the default build target.

Moved SortColumn to core crate for shared use across frontends.

Desktop app features:
- System specs display (RAM, CPU, GPU)
- Model compatibility table with fit scoring
- Dark theme UI using project icon from assets/icon.svg
- Tauri 2 with minimal permissions

No changes to data files — moved as-is via git mv.

Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com>
Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxesyes3inatrenchcoat@gmail.com>
2026-02-21 20:30:18 +00:00
AlexsJones
5be634f345 feat: increased model count
Signed-off-by: AlexsJones <alexsimonjones@gmail.com>
2026-02-19 08:18:29 +00:00
Alex
c68d7aad0c feat: supporting 94 models
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-02-16 13:50:36 +00:00
Alex
5ca2467298 feat: overall to the scoring system
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-02-16 13:18:45 +00:00
Alex
cc69d5484b chore: added moe
Signed-off-by: Alex <alexsimonjones@gmail.com>
2026-02-16 08:01:39 +00:00
Three Foxes (in a Trenchcoat)
eb886d643d feat: add 15 popular models from HuggingFace
Expands model database from 33 to 48 models by adding highly popular
models from HuggingFace based on downloads, likes, and community usage.

New models added (15 total):

**Code Models (4):**
- meta-llama/CodeLlama-7b-Instruct-hf (6.7B) - Popular code generation
- meta-llama/CodeLlama-13b-Instruct-hf (13.0B) - Larger code model
- meta-llama/CodeLlama-34b-Instruct-hf (33.7B) - Professional code generation
- WizardLMTeam/WizardCoder-15B-V1.0 (15B) - Code specialist (fallback)

**Small/Edge Models (3):**
- google/gemma-2-2b-it (2.6B) - Smallest Gemma, very popular for edge devices
- microsoft/Phi-3.5-mini-instruct (3.8B) - Newer Phi variant, long context (131K)
- mistralai/Ministral-8B-Instruct-2410 (8.0B) - Smaller Mistral variant

**Reasoning & Chat Models (3):**
- microsoft/Orca-2-7b (7.0B) - Reasoning model, step-by-step solutions
- microsoft/Orca-2-13b (13.0B) - Larger reasoning model
- HuggingFaceH4/zephyr-7b-beta (7.2B) - Very popular fine-tune

**Multilingual Models (2):**
- 01-ai/Yi-6B-Chat (6.1B) - Popular Chinese/English bilingual
- 01-ai/Yi-34B-Chat (34.4B) - Larger Yi variant

**Mid-size Models (2):**
- mistralai/Mistral-Nemo-Instruct-2407 (12.2B) - Mid-size Mistral
- tiiuae/falcon-7b-instruct (7.2B) - TII UAE model

**Multimodal (1):**
- meta-llama/Llama-3.2-11B-Vision-Instruct (10.7B) - Vision + text

**Community Fine-tunes (1):**
- NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO (46.7B) - Popular community model

Changes:
- Updated TARGET_MODELS list with 21 new model repo IDs
- Added fallback entries for 12 gated/auth-required models
- Extended provider mapping for new organizations (01.ai, Upstage, TII,
  HuggingFace, OpenChat, LMSYS, NousResearch, WizardLM)
- Regenerated data/hf_models.json with 48 total models

Note: Some models couldn't be scraped due to metadata issues or repository
changes (SOLAR-10.7B, falcon-40b, openchat-3.5, vicuna variants, WizardLM-13B).
These can be added with manual fallback entries if needed.

Addresses community requests for more model coverage, especially:
- Code-specialized models (CodeLlama series)
- Smaller edge models (Gemma 2B)
- Multilingual support (Yi series)
- Reasoning models (Orca 2)
- Popular community fine-tunes (Zephyr, Nous-Hermes)

Signed-off-by: Three Foxes (in a Trenchcoat) <threefoxes53235@gmail.com>
2026-02-15 20:15:49 +00:00