Skip to content

Tags: Thireus/jan

Tags

v0.7.2.4

Toggle v0.7.2.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request janhq#6929 from janhq/feat/official_jan_browser_mcp

feat: Add official jan browser mcp

v0.7.2.3

Toggle v0.7.2.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Shorten flash attention flag in args

v0.7.2.2

Toggle v0.7.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Comment out webui disable argument for ik_llama.cpp

Comment out the line that disables the llama-server webui.

v0.7.2.1

Toggle v0.7.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #5 from Thireus/th/no-sign

Add NO_SIGN variable to Makefile

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.

v0.0.2-web

Toggle v0.0.2-web's commit message
fix: jan server api base url for prod

v0.0.1-web

Toggle v0.0.1-web's commit message
chore: add cicd for jan web prod

v0.6.9

Toggle v0.6.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Use 80% total memory for compatibility check (janhq#6321)

* fix: Use 80% total memory for compatibility check

* refactor: extract usable memory percentage to named constant

Extract the hardcoded 0.8 multiplier into a named constant
USABLE_MEMORY_PERCENTAGE for better readability and maintainability.