Dashboard › opencode-lore › Distillation
8e66289e-becb-444d-a694-1f27aae64a8d["lore_tm_v1_5AxWCQGF2Q4ij1vCrWXhGltstCtgELucR9Qd_eEafRM","lore_tm_v1_VHDO4lisFQycj1MGf4EuVvICScS4YEXRSSY4GoLbuIM","lore_tm_v1_juejLICvxWA24MidKuJh6FDZBzlV4ORItT2WLBa0OhU","lore_tm_v1_xWYNNptrBZfUgdPDLp4_PaB1s1gbA0GKpDiF24S7DHM","lore_tm_v1_Ue-E_u9nawsXfp5l7wgx8yfSL-Qq7I6Sa19f8VaIl74","lore_tm_v1_WH_At3g1XdUX4T5B4eC2O1flX3F3a1iZ38bZcpBY7io","lore_tm_v1_TwCONx_hEGfuOrSYRTNOCFmynQwTFH9dcaUkAOLWHAM","lore_tm_v1_ANy9e57_dnBNyhk8NLYf6yCPzLLobWg7719Cuf8MGbo","lore_tm_v1_ymtvtaEkfAq3H8Mwb4DBHd2kbeNqruWLwZ0jvGW01h0"]
Date: Sep 16, 2026
lore recall or http://127.0.0.1:3207/ui/search because the recall tool is currently broken.tmzmtlss at commit e6d0f1edc850 (fix/embedding-runtime-admission, fix(core): correct embedding runtime selection and admission) contained 18 changed files totaling 1,818 insertions and 90 deletions relative to parent 2cbf40060c67; packages/core/src/cgroup-memory.ts and packages/core/test/cgroup-memory.test.ts were newly added, while embedding runtime, native ORT, gateway bundle, platform-package, and related test files were modified.fix/responses-private-references, with suggested inspection via jj bookmark list and resolution via jj bookmark set <name> -r <rev>.knownBadCap to remain an upper bound across restarts, so a memory-rich reboot never re-probes above a cap already rejected by the WASM heap.×0.7 OOM backoff never fires; all freemem-derived decisions must therefore be capped by memory the container can actually provide.packages/core/src/ort-native.ts resolves native ONNX Runtime from per-platform packages named exactly @loreai/onnxruntime-<os>-<arch> for published gateways, or from the gateway workspace’s direct onnxruntime-node dependency; dist-only and unsupported-platform installations return null and use WASM.supportsNativeOrt() allows non-Linux runtimes, but Linux requires a parseable glibcVersionRuntime of at least glibc 2.27; missing, malformed, or unavailable Linux libc information fails closed to WASM.validNativeBinding() canonicalizes both the package directory and binding path with realpathSync(), requires the binding to remain within the package directory and be a regular file, then validates its first 4 bytes: ELF 7f 45 4c 46 on Linux, either cf fa ed fe or fe ed fa cf Mach-O magic on Darwin, and 4d 5a (MZ) on Windows. File-open, read, stat, canonicalization, and close failures return null.@loreai/gateway; the platform package must be listed in optionalDependencies; the gateway version, declared platform-package version, and published package version must all match; loreOrtNodeVersion must equal the bundled expected ORT version; and package os/cpu must each be a one-element array matching the runtime.onnxruntime-node only when declared in the gateway’s dependencies, devDependencies, or optionalDependencies at exactly the bundled expected version; the resolved package manifest must also have name onnxruntime-node and that exact version.onnxruntime-node/bin, requires it to remain inside the resolved package, requires exactly one directory matching /^napi-v\d+$/, and checks <bin>/<napi-dir>/<platform>/<arch>/onnxruntime_binding.node.nativeIntraOpThreads(parallelism = availableParallelism(), logicalCpus = cpus().length) limits native ORT intra-op threads only when cgroup-aware available parallelism is lower than the host logical CPU count. It floors valid values to integers and at least 1, returns the restricted count when avail < total, and otherwise returns undefined to preserve ORT’s physical-core-based default and avoid raising it on hyper-threaded hosts.