Skip to content

Tags: bvold/jan

Tags

v0.7.6

Toggle v0.7.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request janhq#7417 from janhq/chore/setup-screen-q4-k-xl

chore: setup screen q4 k xl

v0.7.5

Toggle v0.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request janhq#7131 from janhq/fix/kill_mcp

fix: kill mcp server on app termination

v0.7.4

Toggle v0.7.4's commit message

v0.7.4-beta

Toggle v0.7.4-beta's commit message

v0.7.4_pre_release

Toggle v0.7.4_pre_release's commit message

v0.7.3

Toggle v0.7.3's commit message

v0.7.2

Toggle v0.7.2's commit message

Verified

This commit was signed with the committer’s verified signature.
Merge pull request janhq#6790 from menloresearch/chore/happy-dom-update

chore: update happy dom deps version

v0.7.1

Toggle v0.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request janhq#6728 from menloresearch/fix/anthropic-model-…

…load

Fix: Anthropic request to add models

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request janhq#6706 from menloresearch/qa/v0.7.0

feat: update checklist for 0.7.0

v0.6.10

Toggle v0.6.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: correct memory suitability checks in llamacpp extension (janhq#6504

)

The previous implementation mixed model size and VRAM checks, leading to inaccurate status reporting (e.g., false RED results).
- Simplified import statement for `readGgufMetadata`.
- Fixed RAM/VRAM comparison by removing unnecessary parentheses.
- Replaced ambiguous `modelSize > usableTotalMemory` check with a clear `totalRequired > usableTotalMemory` hard‑limit condition.
- Refactored the status logic to explicitly handle the CPU‑GPU hybrid scenario, returning **YELLOW** when the total requirement fits combined memory but exceeds VRAM.
- Updated comments for better readability and maintenance.