repo
stringclasses
10 values
pr_number
int64
7
155k
title
stringlengths
4
137
body
stringlengths
0
68.4k
buggy_commit
stringlengths
40
40
fix_commit
stringlengths
40
40
buggy_distance
int64
1
30
confidence
stringclasses
3 values
files
listlengths
1
5
vercel/next.js
87,412
test: de-flake client-cache deployment tests
These tests aren't resilient to changes in router behavior after extensive refactors. What looks to be happening is a race between the prefetch being issued and the click firing: 1. Cache expires -> refetch prefetch is triggered 2. Click happens while prefetch is in-flight -> route entry is Pending 3. Since no fulfi...
null
c95eb899fa1559802c6a7f583d1d1bbe731dbd55
null
low
[ { "filename": "test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts", "patch": "@@ -268,6 +268,9 @@ describe('app dir client cache semantics (default semantics)', () => {\n })\n \n it('should refetch the full page after 5 mins', async () => {\n+ // Wait for initial prefetch to ...
huggingface/transformers
40,535
fix gpt-oss out shape
Hi @SunMarc . This commit should be included in #40304 , but I forgot to push this commit. We need this PR; otherwise, the out value will be wrong. Please review and merge this PR. Thanks!
null
1067577ad204e649514ff3a5d3af0f7d52a63f14
null
low
[ { "filename": "src/transformers/models/gpt_oss/modeling_gpt_oss.py", "patch": "@@ -116,7 +116,7 @@ def forward(self, hidden_states: torch.Tensor, router_indices=None, routing_weig\n glu = gate * torch.sigmoid(gate * self.alpha)\n gated_output = (up + 1) * glu\n ...
ggml-org/llama.cpp
19,784
ci : fix rocm release path
cont #19433
f75c4e8bf52ea480ece07fd3d9a292f1d7f04bc5
e877ad8bd9e2f147d8f8244511b852cdade27953
2
high
[ { "filename": ".github/workflows/release.yml", "patch": "@@ -609,7 +609,7 @@ jobs:\n - name: Upload artifacts\n uses: actions/upload-artifact@v6\n with:\n- path: llama-bin-ubuntu-rocm-${{ matrix.ROCM_VERSION }}-${{ matrix.build }}.tar.gz\n+ path: llama-${{ steps.tag.o...
electron/electron
48,936
test: add `view.getBounds|setBounds` tests
#### Description of Change Refs https://github.com/electron/electron/pull/48812#issuecomment-3496332942 Adds some specs for `view.getBounds|setBounds` #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] PR description included and stakeholders cc'd - [x] `...
null
e3a0ac06e2d03ce7f9e1b73ace708c9d6840ca63
null
low
[ { "filename": "spec/api-view-spec.ts", "patch": "@@ -92,4 +92,46 @@ describe('View', () => {\n expect(v.getVisible()).to.be.false();\n });\n });\n+\n+ describe('view.getBounds|setBounds', () => {\n+ it('defaults to 0,0,0,0', () => {\n+ const v = new View();\n+ expect(v.getBounds())...
facebook/react
27,919
re-add dynamic feature flags for isInputPending
## Summary these were removed in https://github.com/facebook/react/pull/26617. adds them back so we can conduct another experiment. ## How did you test this change? `yarn test-www`
0cdfef19b96cc6202d48e0812b5069c286d12b04
c81f4e02bab9d03e1583047d041fdb5e4eb19415
18
medium
[ { "filename": "packages/scheduler/src/forks/SchedulerFeatureFlags.www-dynamic.js", "patch": "@@ -13,6 +13,12 @@\n \n export const enableProfiling = __VARIANT__;\n \n+export const enableIsInputPending = __VARIANT__;\n+export const enableIsInputPendingContinuous = __VARIANT__;\n+export const frameYieldMs = 5;...
facebook/react
27,401
Fix checkbox and radio hydration
Fixes whatever part of https://github.com/facebook/react/issues/26876 and https://github.com/vercel/next.js/issues/49499 that https://github.com/facebook/react/pull/27394 didn't fix, probably. From manual tests I believe this behavior brings us back to parity with latest stable release (18.2.0). It's awkward that we...
4f4c52a3c8f9c8a2d8133c654841fee257c37249
db69f95e4876ec3c24117f58d55cbb4f315b9fa7
1
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -297,12 +297,10 @@ export function initInput(\n typeof checkedOrDefault !== 'symbol' &&\n !!checkedOrDefault;\n \n- // The checked property never gets assigned. It must be manually set.\n- // We don't want to do ...
ollama/ollama
7,308
Delete duplication code Reset()
Delete duplication code Reset()
null
eaaf5d309d0d53c0d99982eaf1b2da5da05f42fb
null
low
[ { "filename": "cmd/interactive.go", "patch": "@@ -319,8 +319,6 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\t\t\t\t\topts.Messages = append(opts.Messages, newMessage)\n \t\t\t\t\t}\n \t\t\t\t\tfmt.Println(\"Set system message.\")\n-\t\t\t\t\tsb.Reset()\n-\n \t\t\t\t\tsb.Rese...
electron/electron
48,795
fix(reland): allow disabling all `NSMenuItems`
#### Description of Change This PR relands https://github.com/electron/electron/pull/48731/ , see that PR for details Some submenu items do not have a `representedObject` that is a `WeakPtrToElectronMenuModelAsNSObject`. This causes an immediate crash when we try to call [`getFrom`](https://github.com/electron/elec...
27bea2576e8a39a9ff1c104c43ab4e982c2e5671
38be633aa864c3df8c6f77f425492676cc263773
4
medium
[ { "filename": "lib/browser/api/menu.ts", "patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!i...
nodejs/node
60,190
node-api,test: use local files for `instanceof` tests
Make Node-API `instanceof` tests independent from V8 code. Currently `test/js-native-api/test_general/testInstanceOf.js` test file depends on two files from the V8 code: - `deps/v8/test/mjsunit/instanceof.js` - `deps/v8/test/mjsunit/instanceof-2.js` While it works for the Node.js project, it makes it difficult ...
null
77d81979a3ec43ad74f6d462bfce32e90909b3ba
null
low
[ { "filename": "test/js-native-api/test_general/testInstanceOf.js", "patch": "@@ -1,58 +1,9 @@\n 'use strict';\n const common = require('../../common');\n-const fs = require('fs');\n const assert = require('assert');\n \n // Addon is referenced through the eval expression in testFile\n const addon = require(...
huggingface/transformers
40,331
Update quantization overview for XPU
Update quantization overview for XPU. Keep in draft until optimum-quanto PR: [395](https://github.com/huggingface/optimum-quanto/pull/395) merged.
0ce6709e709cbb10573d5c7d53b36feb6467ecf3
f9b9a5e884c9d58f2b020f060f164a48021c44d5
22
medium
[ { "filename": "docs/source/en/gguf.md", "patch": "@@ -33,6 +33,7 @@ Add the `gguf_file` parameter to [`~PreTrainedModel.from_pretrained`] to specify\n \n ```py\n # pip install gguf\n+import torch\n from transformers import AutoTokenizer, AutoModelForCausalLM\n \n model_id = \"TheBloke/TinyLlama-1.1B-Chat-v1...
vuejs/vue
6,473
fix(provide): provide should default to parentVal during merging, fix #6436
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
null
3c216755f6eb656c6d864265a8dc7b51b3ae971b
null
low
[ { "filename": "src/core/util/options.js", "patch": "@@ -96,7 +96,7 @@ export function mergeDataOrFn (\n : childVal\n const defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm)\n- : undefined\n+ : parentVal\n if (instanceData) {\n return merge...
electron/electron
48,827
fix(reland): allow disabling all `NSMenuItems`
Backport of #48795 See that PR for details. Notes: Fixed an issue that menu items on macOS could not be disabled under all circumstances.
6a303cb19fb8a6e5c50b33186d7cba65b5fbba0f
aa9adfc1df91af151b2396625ba526ad7f7db518
6
medium
[ { "filename": "lib/browser/api/menu.ts", "patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!i...
vercel/next.js
87,440
ci: track runner name on datadog test reports
So we can see if there are any outliers where a particular runner is failing tests more often than others.
null
100253c450f67eba6b9a0d936c1eedbe3a8446cf
null
low
[ { "filename": ".github/workflows/build_reusable.yml", "patch": "@@ -314,13 +314,15 @@ jobs:\n --service nextjs \\\n --tags test.type:nextjs \\\n --tags test_session.name:\"${{ inputs.stepName }}\" \\\n+ --tags runner.name:\"${{ runner.name }}\" \\\n ...
ollama/ollama
7,084
Adding: OrionChat: A Web Interface for Seamless AI Conversation
OrionChat is a free web-based chat interface that simplifies interactions with multiple AI model providers. It provides a unified platform for chatting and exploring multiple large language models (LLMs), including: **Ollama**, OpenAI Google Gemini Claude (Anthropic) Groq Inc. Cerebras
27d9c749d5aee052bf9658801bdc02443728b6cc
723f285813f504375f0e6be6c76edfbaaabd961f
2
high
[ { "filename": "README.md", "patch": "@@ -339,6 +339,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Tkinter-based client](https://github.com/chyok/ollama-gui) (Python tkinter-based Client for Ollama)\n - [LLMChat](https://github.com/trendy-design/llmchat) (Privacy focused, 100% local...
ggml-org/llama.cpp
19,418
Update ROCm docker container to 7.2
Update all the CI artifacts and jobs to use ROCm 7.2. When testing offline, I found a problem with rocWMMA on the docker container with GFX908, so it's disabled for that.
null
35715657cb2fa6eb302a2c1933ed10dbd0d8bc75
null
low
[ { "filename": ".devops/rocm.Dockerfile", "patch": "@@ -1,8 +1,8 @@\n ARG UBUNTU_VERSION=24.04\n \n # This needs to generally match the container host's environment.\n-ARG ROCM_VERSION=7.0\n-ARG AMDGPU_VERSION=7.0\n+ARG ROCM_VERSION=7.2\n+ARG AMDGPU_VERSION=7.2\n \n # Target the ROCm build image\n ARG BASE_R...
ollama/ollama
4,301
Adds Ollama Grid Search to Community integrations on README
Adds the following content to the Community Integrations section: ### Model/Prompt Evaluation and Optimization - [Ollama Grid Search](https://github.com/dezoito/ollama-grid-search) (Multi-platform desktop application)
811bafba8243fbc246470ea4b4fbd07bf04d1564
f5ec7cc87281e77db80022ef4658188f12584555
1
high
[ { "filename": "README.md", "patch": "@@ -308,6 +308,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama RAG Chatbot](https://github.com/datvodinh/rag-chatbot.git) (Local Chat with multiple PDFs using Ollama and RAG)\n - [BrainSoup](https://www.nurgo-software.com/products/brainsoup...
ollama/ollama
7,383
Add Swollama links to README.md
This PR updates the README by adding a link to a feature-complete Swift client library I built called [Swollama](https://github.com/marcusziade/Swollama) I have _extensive_ documentation in [DocC](https://marcusziade.github.io/Swollama/documentation/swollama/), and I already have a draft PR open for Linux and Docker...
303f4bc79e2b38e0f5456304aa828c61d21b7d42
b8c66d33070e2c7bf2fb2057c260742db11e15b6
1
high
[ { "filename": "README.md", "patch": "@@ -366,6 +366,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama eBook Summary](https://github.com/cognitivetech/ollama-ebook-summary/)\n - [Ollama Mixture of Experts (MOE) in 50 lines of code](https://github.com/rapidarchitect/ollama_moe)\n ...
facebook/react
27,443
Fix controlled radios, maybe for real this time
Fixes #26876 for real? In 18.2.0 (last stable), we set .checked unconditionally: https://github.com/facebook/react/blob/v18.2.0/packages/react-dom/src/client/ReactDOMInput.js#L129-L135 This is important because if we are updating two radios' checkedness from (false, true) to (true, false), we need to make sure...
3c27178a2f2c74f14d90613028e3929e1f06d830
4f4c52a3c8f9c8a2d8133c654841fee257c37249
27
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -175,8 +175,13 @@ export function updateInput(\n }\n }\n \n- if (checked != null && node.checked !== !!checked) {\n- node.checked = checked;\n+ if (checked != null) {\n+ // Important to set this even if it's ...
huggingface/transformers
39,773
enable static cache on vision encoder decoder
After the issue #39746 fixed, the vision encoder decoder model can support static cache and can got more significant speed-up ```python import time import requests import torch import PIL.Image from transformers import pipeline model_id = "nlpconnect/vit-gpt2-image-captioning" image_to_text = pipeline("imag...
ccb2e0e03b41429eeede933f38c80e36fcee772f
8ab21be5704a7ad33d6935136a7a65e9d7dfc52e
22
medium
[ { "filename": "src/transformers/models/vision_encoder_decoder/modeling_vision_encoder_decoder.py", "patch": "@@ -113,6 +113,7 @@ def __init__(\n \n self.encoder = encoder\n self.decoder = decoder\n+ self._can_compile_fullgraph = decoder._can_compile_fullgraph\n \n if self.enco...
vuejs/vue
6,325
feat(vue-server-renderer): add TypeScript declarations of webpack plugins (fix #6301)
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bugf...
null
a67b795b3661f6f223420339f3eeb07a913207de
null
low
[ { "filename": "packages/vue-server-renderer/client-plugin.d.ts", "patch": "@@ -0,0 +1,3 @@\n+import { WebpackPlugin } from './types/plugin';\n+declare const Plugin: WebpackPlugin;\n+export = Plugin;", "additions": 3, "deletions": 0 }, { "filename": "packages/vue-server-renderer/package.json"...
nodejs/node
60,807
test: fix debug test crashes caused by sea tests
When we compile for debug on Windows we have the tests crashing with the error log shown below. The root cause of the issue is that when the SEA tests are probing for parallel execution they call `context.GetVm('none', 'none')`. This call results with trying to use `Release\node.exe` that is not created for debug-onl...
null
e825de8e02c29d8ec7a081da338c07f5ab329101
null
low
[ { "filename": "test/sea/testcfg.py", "patch": "@@ -5,7 +5,15 @@\n def GetConfiguration(context, root):\n # We don't use arch-specific out folder in Node.js; use none/none to auto\n # detect release mode from GetVm and get the path to the executable.\n- vm = context.GetVm('none', 'none')\n+ try:\n+ ...
huggingface/transformers
39,654
Enable xpu allocator on caching_allocator_warmup
Fix #39627
95faabf0a6cd845f4c5548697e288a79e424b096
8db4d791618d396dba72742534ac456e5b9b5318
6
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -6021,19 +6021,22 @@ def caching_allocator_warmup(model: PreTrainedModel, expanded_device_map: dict,\n \n # This will kick off the caching allocator to avoid having to Malloc afterwards\n for device, byte_count in total_byte_count.item...
electron/electron
48,962
test: add `view.getBounds|setBounds` tests
Backport of #48936 See that PR for details. Notes: none
null
fd1db6a8b69dc95858ce5143be6e90f2ce61153c
null
low
[ { "filename": "spec/api-view-spec.ts", "patch": "@@ -92,4 +92,46 @@ describe('View', () => {\n expect(v.getVisible()).to.be.false();\n });\n });\n+\n+ describe('view.getBounds|setBounds', () => {\n+ it('defaults to 0,0,0,0', () => {\n+ const v = new View();\n+ expect(v.getBounds())...
ggml-org/llama.cpp
19,433
Add a build target to generate ROCm artifacts using ROCm 7.2
This builds the following targets: * gfx1151 * gfx1150 * gfx1200 * gfx1201 * gfx1100 * gfx1101 * gfx908 * gfx90a * gfx942
null
f75c4e8bf52ea480ece07fd3d9a292f1d7f04bc5
null
low
[ { "filename": ".github/workflows/release.yml", "patch": "@@ -516,6 +516,102 @@ jobs:\n path: llama-bin-win-sycl-x64.zip\n name: llama-bin-win-sycl-x64.zip\n \n+ ubuntu-22-rocm:\n+ runs-on: ubuntu-22.04\n+\n+ strategy:\n+ matrix:\n+ include:\n+ - ROCM_VERSION: ...
electron/electron
48,954
build: correct uploader copy for tar files
Backport of #48953 See that PR for details. Notes: none
4c042506fee4016a949112cd3f7d570182b325f3
fb62a5873ad968be4b4f4ab2ddb6b085dbce9a8f
5
medium
[ { "filename": "script/lib/config.py", "patch": "@@ -51,3 +51,12 @@ def get_zip_name(name, version, suffix=''):\n if suffix:\n zip_name += '-' + suffix\n return zip_name + '.zip'\n+\n+def get_tar_name(name, version, suffix=''):\n+ arch = get_target_arch()\n+ if arch == 'arm':\n+ arch += 'v7l'\n+...
electron/electron
48,953
build: correct uploader copy for tar files
#### Description of Change dSYMs for tar.xz are currently being copied by the uploader utilities and being renamed to .zip files. This PR clears up that rename and keeps the proper extension to avoid any unexpected issues on decompression for the end user. #### Checklist <!-- Remove items that do not apply. For ...
c896ab80fe8ad39eb87d5d4107b94f1d9afa22d4
b66bf5db0c1e6d84dc8845424549751a80d858f1
2
medium
[ { "filename": "script/lib/config.py", "patch": "@@ -51,3 +51,12 @@ def get_zip_name(name, version, suffix=''):\n if suffix:\n zip_name += '-' + suffix\n return zip_name + '.zip'\n+\n+def get_tar_name(name, version, suffix=''):\n+ arch = get_target_arch()\n+ if arch == 'arm':\n+ arch += 'v7l'\n+...
vercel/next.js
87,289
bundle analyzer: prevent flashes and stuck empty canvases on resize
This fixes a bug where resizing the bundle analyzer window could cause the canvas to briefly or permanently empty and be a white rectangle. This: - Uses `useLayoutEffect` to synchronously respond to React re-renders by rerendering the canvas content - ~Assigns a `key` to the canvas React node~ - Groups the related...
ec85895d749b418f05bd4dd529afd34dd360a709
684fb730714baea20d3437f1e64bba6b41328bc6
25
medium
[ { "filename": "apps/bundle-analyzer/components/treemap-visualizer.tsx", "patch": "@@ -2,7 +2,7 @@\n \n import { darken, lighten, readableColor } from 'polished'\n import type React from 'react'\n-import { useEffect, useMemo, useRef, useState } from 'react'\n+import { useEffect, useLayoutEffect, useMemo, use...
nodejs/node
60,684
util: safely inspect getter errors whose message throws
Fixes: #60683 - Handle errors whose getters throw - Include the full error (stack, message, etc.) respecting inspect options - Fix indentation when getter throws Previously, when a getter threw, only the message was output. Now `inspect` correctly outputs the full error according to the specified options. <!...
8dc2bddbd5d0a3a25147c824d81074ace8e4fb1b
ca5956cb7ab051be2a3ae6c0f99e5e446db40b9a
22
medium
[ { "filename": "lib/internal/util/inspect.js", "patch": "@@ -2544,9 +2544,9 @@ function formatProperty(ctx, value, recurseTimes, key, type, desc,\n if (ctx.getters && (ctx.getters === true ||\n (ctx.getters === 'get' && desc.set === undefined) ||\n (ctx.getters === 'set' && desc.set !...
vuejs/vue
6,274
perf: optimize the performance of hyphenate method.
Modify the regular to make the `replace` method call only once to optimize performance. <!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a bo...
null
14ee9e74bf68024fcb53c305b1f15c6aab6e89d3
null
low
[ { "filename": "src/shared/util.js", "patch": "@@ -157,12 +157,9 @@ export const capitalize = cached((str: string): string => {\n /**\n * Hyphenate a camelCase string.\n */\n-const hyphenateRE = /([^-])([A-Z])/g\n+const hyphenateRE = /\\B([A-Z])/g\n export const hyphenate = cached((str: string): string => ...
ollama/ollama
6,855
env.sh: cleanup unused RELEASE_IMAGE_REPO
`RELEASE_IMAGE_REPO` is not used in `env.sh`. It can be safely removed. (I noticed this while rebasing https://github.com/ollama/ollama/pull/5556)
null
b7bddeebc1ed267004c1f555fb48fa1d48a37303
null
low
[ { "filename": "scripts/env.sh", "patch": "@@ -5,7 +5,6 @@ export GOFLAGS=\"'-ldflags=-w -s \\\"-X=github.com/ollama/ollama/version.Version=$V\n # TODO - consider `docker buildx ls --format=json` to autodiscover platform capability\n PLATFORM=${PLATFORM:-\"linux/arm64,linux/amd64\"}\n DOCKER_ORG=${DOCKER_ORG...
electron/electron
48,947
fix: crash on windows when UTF-8 is in path
#### Description of Change Backport of https://github.com/electron/electron/pull/48898 In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings that `node_modules.cc` operates on from single-byte to wide strings. Unfortunately this means that `generic_path()` that the "fix: ensure TraverseParent ba...
a9ce0cdf523999a22d47be260e070044ebe1f7c6
40d65d5a9fc1166e80b86ae578d5f320ce603937
7
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -39,11 +39,11 @@ build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n chore_add_createexternalizabletwobytestring_to_globals.patch\n refactor_attach_cppgc_heap_on_v8_iso...
facebook/react
29,073
Fix ESLint and Prettier configs for React Compiler
Fixes the top-level ESLint and Prettier configs to ignore the compiler. For now the compiler has its own prettier and linting setup with different versions/configs.
null
c93c30f9d4c6339708636c3fbf9189acfe96443f
null
low
[ { "filename": ".eslintignore", "patch": "@@ -13,6 +13,9 @@ scripts/bench/benchmarks/**/*.js\n # React repository clone\n scripts/bench/remote-repo/\n \n+# Compiler uses its own lint setup\n+compiler/\n+\n packages/react-devtools-core/dist\n packages/react-devtools-extensions/chrome/build\n packages/react-de...
huggingface/transformers
42,847
Fix Gemma
# What does this PR do? Just stumbled upon this... No idea why this was there...
null
40dc11cd3eb4126652aa41ef8272525affd4a636
null
low
[ { "filename": "src/transformers/models/gemma/modeling_gemma.py", "patch": "@@ -410,16 +410,14 @@ def forward(\n if position_ids is None:\n position_ids = cache_position.unsqueeze(0)\n \n- # It may already have been prepared by e.g. `generate`\n- if not isinstance(causal_mas...
ollama/ollama
5,623
Update README.md with new terminal tool ParLlama
baa41be2aafbcb56a7e17710e23b885d2baa5adb
6a0c2ec50f796e547b6db8d17396a03d0105ffe4
1
high
[ { "filename": "README.md", "patch": "@@ -375,6 +375,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [tlm](https://github.com/yusufcanb/tlm)\n - [podman-ollama](https://github.com/ericcurtin/podman-ollama)\n - [gollama](https://github.com/sammcj/gollama)\n+- [ParLlama](https://github.c...
ggml-org/llama.cpp
19,587
hexagon : fix build release (#19444)
fixes: #19444 cc: @max-krasnyansky
null
ba3b9c8844aca35ecb40d31886686326f22d2214
null
low
[ { "filename": "CMakeLists.txt", "patch": "@@ -1,4 +1,4 @@\n-cmake_minimum_required(VERSION 3.14) # for add_link_options and implicit target directories.\n+cmake_minimum_required(VERSION 3.14...3.28) # for add_link_options and implicit target directories.\n project(\"llama.cpp\" C CXX)\n include(CheckInclude...
electron/electron
48,944
fix: crash on windows when UTF-8 is in path
#### Description of Change Backport of #48898 In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings that `node_modules.cc` operates on from single-byte to wide strings. Unfortunately this means that `generic_path()` that the "fix: ensure TraverseParent bails on resource path exit" patch was cal...
3495a3da69f800cab194d1884a513d3a2f7416fe
1936243ce126c04f13e5adf00f628ff99ee301e1
16
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -39,7 +39,6 @@ build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n chore_add_createexternalizabletwobytestring_to_globals.patch\n refactor_attach_cppgc_heap_on_v8_isola...
ollama/ollama
7,126
Add web management tool to Community Integrations
"Add web management tool to Community Integrations"
2157b1232e1b28448f2e09062d371aff46574fc3
baa41be2aafbcb56a7e17710e23b885d2baa5adb
1
high
[ { "filename": "README.md", "patch": "@@ -340,6 +340,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LLMChat](https://github.com/trendy-design/llmchat) (Privacy focused, 100% local, intuitive all-in-one chat interface)\n - [ARGO](https://github.com/xark-argo/argo) (Locally download an...
ggml-org/llama.cpp
19,765
common : merge qwen3-coder and nemotron nano 3 parsers
Users are experiencing several issues with Qwen3-Coder-Next. Until #18675 is merged in, this PR serves as a stop-gap by replacing the existing Qwen3-Coder parsing with the Nemotron Nano 3 PEG parsing variant already present. This PR also adds parallel tool calling and fixes JSON schema support. fixes #19382 fixe...
3dadc88b589ca43b8fca0e1beb22d4b78a09b4dd
94b0200a01a753eff5897dab9311f51a7bc1c62f
5
medium
[ { "filename": "common/chat-parser.cpp", "patch": "@@ -893,23 +893,6 @@ static void common_chat_parse_minimax_m2(common_chat_msg_parser & builder) {\n builder.consume_reasoning_with_xml_tool_calls(form, \"<think>\", \"</think>\");\n }\n \n-static void common_chat_parse_qwen3_coder_xml(common_chat_msg_par...
vercel/next.js
87,290
Cross link to the demo from the bundle analyzer
Drop some references so there is a plausible path to updating these in the future
null
1e1fd1ec02e572412433679bd97d7a2c14c2f8ec
null
low
[ { "filename": "apps/bundle-analyzer/README.md", "patch": "@@ -12,3 +12,9 @@ This package is not published to npm. Instead it's built and vendored into the m\n - 🔍 **Dependency Tracking**: View import chains and dependency relationships\n - 🎨 **Filter Controls**: Filter by environment (client/server) and f...
ollama/ollama
7,191
Add a new Golang library
🦜🪺 Parakeet is a GoLang library, made to simplify the development of small generative AI applications with Ollama 🦙.
155734e09ae066efe26bca19d015ead10ea9d99b
b4348bdd2562ce8025f8552954a3ea82f91e0d5b
1
high
[ { "filename": "README.md", "patch": "@@ -437,6 +437,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [High-level function abstraction in Go](https://gitlab.com/tozd/go/fun)\n - [Ollama PHP](https://github.com/ArdaGnsrn/ollama-php)\n - [Agents-Flex for Java](https://github.com/agents-fl...
electron/electron
48,957
build: fix unnecessary patch
Fix extra patch failure. Notes: none
6b797a84a8b61a00b964409aa05ed1902f61b60e
b62a97805adb7d29321a730c48662cca2b0e4049
2
medium
[ { "filename": "patches/v8/.patches", "patch": "@@ -1,2 +1 @@\n chore_allow_customizing_microtask_policy_per_context.patch\n-preserve_field_repr_in_property_array_extension.patch", "additions": 0, "deletions": 1 }, { "filename": "patches/v8/preserve_field_repr_in_property_array_extension.patc...
vuejs/vue
6,511
fix #6506: render SVGAElement inside a component correctly
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bugf...
null
89f0d29f2d541aa5a1ac9690258cd7c7ee576ef6
null
low
[ { "filename": "src/core/vdom/create-element.js", "patch": "@@ -91,7 +91,7 @@ export function _createElement (\n let vnode, ns\n if (typeof tag === 'string') {\n let Ctor\n- ns = config.getTagNamespace(tag)\n+ ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag)\n if (c...
nodejs/node
60,849
doc: mark module.register as active development
The async module customization hooks were moved to active development in #60302. This API should also be marked as active development. Refs: https://github.com/nodejs/node/pull/60302
null
ce29481a527ea8f2f88f6dc9a609829b34bd647c
null
low
[ { "filename": "doc/api/module.md", "patch": "@@ -193,7 +193,7 @@ changes:\n description: Add support for WHATWG URL instances.\n -->\n \n-> Stability: 1.2 - Release candidate\n+> Stability: 1.1 - Active development\n \n * `specifier` {string|URL} Customization hooks to be registered; this should be\n ...
vercel/next.js
87,292
bundle analyzer: remove geist font in favor of system ui fonts
This replaces Geist as a Google font in favor of using the preferred system ui font, falling back to the system sans serif font. The various weights of Geist contributed to an unnecessarily large size, impacting the size of the `next` npm package and the analyzer build output. This also removes the unused `styles/glo...
684fb730714baea20d3437f1e64bba6b41328bc6
754db28e523825e6347689f2c6c9664f44bbde98
2
medium
[ { "filename": "apps/bundle-analyzer/app/globals.css", "patch": "@@ -69,8 +69,8 @@\n }\n \n @theme inline {\n- --font-sans: 'Geist', 'Geist Fallback';\n- --font-mono: 'Geist Mono', 'Geist Mono Fallback';\n+ --font-sans: system-ui, sans-serif;\n+ --font-mono: ui-monospace, monospace;\n --color-backgroun...
ollama/ollama
5,381
Add Nosia to Community Integrations
### Summary This PR updates the README file to include a new link to the [Nosia](https://github.com/nosia-ai/nosia) project in Ollama Community Integrations. ### Changes - README.md: Added a new link to the Nosia project ### Integration Nosia is a platform that allows you to run an AI model on your own d...
7fbcd55da303d71111641f2315d73eafbbcbb456
fb2c9594e0591417e750195205ddf8ec3d5c7158
1
high
[ { "filename": "README.md", "patch": "@@ -347,6 +347,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Reddit Rate](https://github.com/rapidarchitect/reddit_analyzer) (Search and Rate Reddit topics with a weighted summation)\n - [OpenTalkGpt](https://github.com/adarshM84/OpenTalkGpt)\n ...
facebook/react
27,703
Add a regression test for an infinite suspense + Fix
Add a regression test for the [minimal repro](https://codesandbox.io/s/react-18-suspense-state-never-resolving-bug-hmlny5?file=/src/App.js) from @kassens And includes the fix from @acdlite: > This is another place we special-case Retry lanes to opt them out of expiration. The reason is we rely on time slicing to...
null
f193213d29e7fabf68b21951c4b96701aeaecbf8
null
low
[ { "filename": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -423,7 +423,9 @@ export function markStarvedLanesAsExpired(\n // We exclude retry lanes because those must always be time sliced, in order\n // to unwrap uncached promises.\n // TODO: Write a test for this\n- let lanes = pe...
ollama/ollama
5,633
Update README.md >> Extension & Plugins :Terraform AWS Ollama & Open WebUI
A Terraform module to deploy on AWS a ready-to-use Ollama service, together with its front end Open WebUI service.
37711578a29f86cedcd100fad5c12f4f3277f8b9
2157b1232e1b28448f2e09062d371aff46574fc3
1
high
[ { "filename": "README.md", "patch": "@@ -485,6 +485,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Discord-Ollama Chat Bot](https://github.com/kevinthedang/discord-ollama) (Generalized TypeScript Discord Bot w/ Tuning Documentation)\n - [Discord AI chat/moderation bot](https://githu...
vuejs/vue
6,344
fix($vdom): Don't replace input for text-like type change, fix #6313
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
d4d553ced75d8c73e75b85cec398be4b09f6f669
f76d16ed9507d4c2a90243ea3d77ccf00df29346
18
medium
[ { "filename": "src/core/vdom/patch.js", "patch": "@@ -6,8 +6,6 @@\n *\n * modified by Evan You (@yyx990803)\n *\n-\n-/*\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n@@ -17,6 +15,7 @@ import config from '../config'\n ...
huggingface/transformers
42,820
[`T5Gemma2`] Fix bidirectional mask for encoder
Wrong `is_causal` flag causes unexpected behavior where when we shortcut mask creation (all True) we trigger SDPA's `is_causal=True` behavior.
null
33c948e494ecbfe5237000e9c8c1cc4b1fc848e6
null
low
[ { "filename": "src/transformers/models/t5gemma2/configuration_t5gemma2.py", "patch": "@@ -32,9 +32,9 @@\n \n class T5Gemma2TextConfig(PreTrainedConfig):\n r\"\"\"\n- This is the configuration class to store the configuration of a [`T5Gemma2TextModel`]. It is used to instantiate an T5Gemma2Text\n- ...
ollama/ollama
5,587
Update README.md
fb2c9594e0591417e750195205ddf8ec3d5c7158
37711578a29f86cedcd100fad5c12f4f3277f8b9
1
high
[ { "filename": "README.md", "patch": "@@ -315,6 +315,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Shinkai Desktop](https://github.com/dcSpark/shinkai-apps) (Two click install Local AI using Ollama + Files + RAG)\n - [AiLama](https://github.com/zeyoyt/ailama) (A Discord User App tha...
huggingface/transformers
42,766
[saving] Simplify general logic
# What does this PR do? As per the title
64a7cc82a681803d6bdc9e96a1a212cebc5655d7
e6b9d061472afc4ee376573789cd44b0180827f3
2
medium
[ { "filename": "src/transformers/integrations/accelerate.py", "patch": "@@ -554,6 +554,32 @@ def offload_weight(weight: torch.Tensor, weight_name: str, offload_folder: str |\n return offload_index\n \n \n+def load_offloaded_parameter(model: \"PreTrainedModel\", param_name: str) -> torch.Tensor:\n+ \"\...
ggml-org/llama.cpp
18,936
support Glm4MoeLite
Support for `Glm4MoeLiteForCausalLM`, which seems to be just a renamed version of DeepseekV3 with some code moved around. Thanks to @ngxson for the help. ref: - 🤗 [zai-org/GLM-4.7-Flash](https://huggingface.co/zai-org/GLM-4.7-Flash) - 🤗 [config.json](https://huggingface.co/zai-org/GLM-4.7-Flash/raw/main/config.j...
null
1706a6d7c68fc54374b0807324079b2c6ebf674a
null
low
[ { "filename": "convert_hf_to_gguf.py", "patch": "@@ -1078,6 +1078,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"b3d1dd861f1d4c5c0d2569ce36baf3f90fe8a102db3de50dd71ff860d91be3df\":\n # ref: https://huggingface.co/aari1995/German_Semantic_V3\n res = \"ji...
electron/electron
48,788
fix: enable wasm trap handlers in all Node.js processes
#### Description of Change Found while investigating https://github.com/microsoft/vscode/issues/273191 Since https://github.com/electron/electron/pull/47186 we had accidentally disabled V8 trap handlers in browser and utility process. This incurs performance cost when executing wasm due to inlined bound checks. ...
null
ca0b46b4130a8b48ab0b402ea16efe1ce655044f
null
low
[ { "filename": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,6 +62,7 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/bas...
facebook/react
31,346
[compiler] Collect temporaries and optional chains from inner functions
Recursively collect identifier / property loads and optional chains from inner functions. This PR is in preparation for #31200 Previously, we only did this in `collectHoistablePropertyLoads` to understand hoistable property loads from inner functions. 1. collectTemporariesSidemap 2. collectOptionalChainSidemap 3. col...
e7e269b7265ec94929a53f4d402037261c87cf44
c3570b158d087eb4e3ee5748c4bd9360045c8a26
10
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -8,7 +8,6 @@ import {\n Set_union,\n getOrInsertDefault,\n } from '../Utils/utils';\n-import {collectOptionalChainSidemap} from './CollectOptionalChainDependencies';\n import {\n BasicB...
ollama/ollama
5,981
Add Spring AI library reference
Spring AI provides full support for Ollama API including Tools and OpenAI API.
b4348bdd2562ce8025f8552954a3ea82f91e0d5b
7fbcd55da303d71111641f2315d73eafbbcbb456
1
high
[ { "filename": "README.md", "patch": "@@ -402,6 +402,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LangChain](https://python.langchain.com/docs/integrations/llms/ollama) and [LangChain.js](https://js.langchain.com/docs/integrations/chat/ollama/) with [example](https://js.langchain.c...
ggml-org/llama.cpp
18,708
fix text spacing in print_info
In the `print_info:` output during model loading, there was a space missing after `rope_yarn_log_mul`: ```txt print_info: n_ctx_orig_yarn = 131072 print_info: rope_yarn_log_mul= 0.0000 print_info: rope_finetuned = unknown ``` Now it's fixed: ```txt print_info: n_ctx_orig_yarn = 131072 print_info: ro...
60591f01d433f3fc7603d5273fbe361bd05a3507
6e36299b472b284c008b6ae85cb475f10e4de69b
1
medium
[ { "filename": "src/llama-model.cpp", "patch": "@@ -7211,59 +7211,59 @@ void llama_model::print_info() const {\n };\n \n // hparams\n- LLAMA_LOG_INFO(\"%s: arch = %s\\n\", __func__, arch_name().c_str());\n- LLAMA_LOG_INFO(\"%s: vocab_only = %d\\n\", __func__, hparams.v...
nodejs/node
60,819
deps: patch V8 to 14.3.127.16
This is an automated patch update of V8 to 14.3.127.16.
null
bfc729cf197f732483ac6ad264fc9e289f47aa1e
null
low
[ { "filename": "deps/v8/include/v8-version.h", "patch": "@@ -11,7 +11,7 @@\n #define V8_MAJOR_VERSION 14\n #define V8_MINOR_VERSION 3\n #define V8_BUILD_NUMBER 127\n-#define V8_PATCH_LEVEL 14\n+#define V8_PATCH_LEVEL 16\n \n // Use 1 for candidates and 0 otherwise.\n // (Boolean macro values are not supporte...
ollama/ollama
6,503
add integration: py-gpt
Add integration: PyGPT - AI desktop assistant for Linux, Windows, and Mac with support for models provided through Ollama.
883d80e0972df1f12a881fe1ba742c361f64e5e7
155734e09ae066efe26bca19d015ead10ea9d99b
1
high
[ { "filename": "README.md", "patch": "@@ -324,6 +324,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LLMStack](https://github.com/trypromptly/LLMStack) (No-code multi-agent framework to build LLM agents and workflows)\n - [BoltAI for Mac](https://boltai.com) (AI Chat Client for Mac)\n...
vercel/next.js
86,751
[test] Don't use `request.allHeaders()` in sync `page.on()` callbacks
Alternative for #86740. This should avoid running into these issues: ``` request.allHeaders: Target page, context or browser has been closed ``` The sync `headers()` method is sufficient for these use cases: > Note that this method does not return security-related headers, including cookie-related ones. Y...
null
3352f9ee9342b40aaded91c340e7e11650aa4867
null
low
[ { "filename": "test/e2e/app-dir/app-basepath/index.test.ts", "patch": "@@ -75,22 +75,8 @@ describe('app dir - basepath', () => {\n let rscRequests = []\n const browser = await next.browser(path, {\n beforePageLoad(page) {\n- page.on('request', async (request) => {\n- ...
facebook/react
31,570
[compiler] repro for type inference + control flow bug
Repro for bug in our type inference system. We currently propagate inferred types through control flow / potential type guards. Note that this is inconsistent with both [Flow](https://flow.org/try/#1N4Igxg9gdgZglgcxALlAIwIZoKYBsD6uEEAztvhgE6UYCe+JADpdhgCYowa5kA0I2KAFcAtiRQAXSkOz9sADwxgJ+NPTbYuQ3BMnTZA+Y2yU4IwRO4A6SFB...
0f3c62b4667f62bf36485079ab242dba8e54917c
e33b13795dd25eba780c97b17cf7deee7f21a3e5
8
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-type-inference-control-flow.expect.md", "patch": "@@ -0,0 +1,114 @@\n+\n+## Input\n+\n+```javascript\n+import {arrayPush, CONST_NUMBER0, mutate} from 'shared-runtime';\n+\n+/**\n+ * Repro for bug in our type inf...
vuejs/vue
6,220
fix($compiler): Allow using array value with array v-model in checkboxes, fix #6219
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
null
d6e6f1deb180a4f47e94496724623b9e6d8e08b3
null
low
[ { "filename": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$el.checked){$$i<0&&(${value}=$$a...
ollama/ollama
7,093
Adding reference to Promptery (Ollama client) to README.md
Added link and minimal description for Promptery (https://github.com/promptery/promptery)
e4c9f75b2326deea746cdf72ffb0c7531be8235e
883d80e0972df1f12a881fe1ba742c361f64e5e7
1
high
[ { "filename": "README.md", "patch": "@@ -338,6 +338,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LLMChat](https://github.com/trendy-design/llmchat) (Privacy focused, 100% local, intuitive all-in-one chat interface)\n - [ARGO](https://github.com/xark-argo/argo) (Locally download an...
vercel/next.js
87,267
bundle analyzer: remove custom output option
This functionality was added late in #87258 but was broken as we needed to pass this along to the Rust side. We'd also need to be able to write to arbitrary absolute paths there, so let's punt on it. Test Plan: e2e tests
e52159b12d611d2605a0ad4a6ee621b3f5f6af01
634cfd3312bfd82e9b01f7ff04cb9dfb28debee7
3
medium
[ { "filename": "packages/next/src/bin/next.ts", "patch": "@@ -213,8 +213,8 @@ program\n .option('--no-mangling', 'Disables mangling.')\n .option('--profile', 'Enables production profiling for React.')\n .option(\n- '-o, --output [path]',\n- 'Only write analysis files to disk. Does not start the s...
vuejs/vue
6,478
perf: deep clone slot vnodes on re-render
avoid unnecessary assignment. <!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (...
0529040c17b8632032a43d142aac88386f6b4a1f
e65e6cdb3ec9c88ef684cdad50920be3b79d938b
2
high
[ { "filename": "src/core/vdom/vnode.js", "patch": "@@ -95,8 +95,8 @@ export function cloneVNode (vnode: VNode, deep?: boolean): VNode {\n cloned.key = vnode.key\n cloned.isComment = vnode.isComment\n cloned.isCloned = true\n- if (deep) {\n- cloned.children = vnode.children && cloneVNodes(vnode.chil...
facebook/react
31,665
Revert "Replace deprecated dependency in `eslint-plugin-react-compiler`"
Reverts facebook/react#31629 `@babel/plugin-proposal-private-methods` is not compatible with `@babel/traverse` versions < 7.25 (see https://github.com/babel/babel/issues/16851). Internally we have partners that use a less modern babel version, and we expect this to be an issue for older codebases in OSS as well.
7670501b0dc1a97983058b5217a205b62e2094a1
b9b510df2a2ab45387c8d302930bc4a14f1450f5
5
medium
[ { "filename": "compiler/packages/eslint-plugin-react-compiler/package.json", "patch": "@@ -13,7 +13,7 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.24.4\",\n \"@babel/parser\": \"^7.24.4\",\n- \"@babel/plugin-transform-private-methods\": \"^7.25.9\",\n+ \"@babel/plugin-proposal-private-me...
huggingface/transformers
42,720
Add inputs_to_logits_ratio to LasrCTCConfig
# What does this PR do? This PR adds inputs_to_logits_ratio to LasrCTCConfig so that LasrForCTC can be used in an ASR pipeline with chunked decoding. ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [x] Did you read the [contributor gu...
null
65dc261512cbdb1ee72b88ae5b222f2605aad8e5
null
low
[ { "filename": "src/transformers/models/lasr/configuration_lasr.py", "patch": "@@ -240,5 +240,9 @@ def from_encoder_config(cls, encoder_config: LasrEncoderConfig, **kwargs):\n \n return cls(encoder_config=encoder_config.to_dict(), **kwargs)\n \n+ @property\n+ def inputs_to_logits_ratio(self):\n...
vuejs/vue
6,374
[weex] Remove legacy api and wrap IFFE for appCode
**This PR only affects the Weex platform.** + [x] Remove `__weex_require_module__` api, use `weex.requireModule` instead. The tast case also has been changed. + [x] Wrap IFFE and mock the `global` variable for js bundle. (https://github.com/alibaba/weex/pull/1626) + [x] return the instance in `createInstance`.
f975fac2a8657590dcc23ea8ccae791d125bc935
0dc27dcdec72c1c2e12fb49fb95dceca45e84115
1
high
[ { "filename": "src/platforms/weex/entry-framework.js", "patch": "@@ -104,6 +104,8 @@ export function createInstance (\n \n // Send `createFinish` signal to native.\n instance.document.taskCenter.send('dom', { action: 'createFinish' }, [])\n+\n+ return instance\n }\n \n /**", "additions": 2, "de...
facebook/react
32,597
[compiler][ez] Stop bailing out early for hoisted gated functions
Some code movement for the next PR --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32597). * #32598 * __->__ #32597
f457d0b4c6dd70c10acb9c93c7d01c80d8e23b92
93b61fc4ecb34abec2b55c206f34ed22dd340b71
3
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts", "patch": "@@ -8,6 +8,7 @@\n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n import {PluginOptions} from './Options';\n+import {CompilerError} from '../CompilerError';\n \n export function ins...
electron/electron
48,898
fix: crash on windows when UTF-8 is in path
#### Description of Change In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings that `node_modules.cc` operates on from single-byte to wide strings. Unfortunately this means that `generic_path()` that the "fix: ensure TraverseParent bails on resource path exit" patch was calling was no longer a sa...
a22511a196ce5e2793687dddbdd3fd4f6d20b22b
b9d3f1526510d5bac8de48333f2eb0f63d8126b8
25
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -26,7 +26,6 @@ build_allow_unbundling_of_node_js_dependencies.patch\n build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creat...
ggml-org/llama.cpp
18,267
add `LLAMA_ARG_OVERRIDE_TENSOR` env var for `-ot` arg
This PR makes it so that `-ot` / `--override-tensor` can be controlled by a new environment variable `LLAMA_ARG_OVERRIDE_TENSOR`. *Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR*
null
10355dc7d0d854c474d49610de16fde9c6679cf7
null
low
[ { "filename": "common/arg.cpp", "patch": "@@ -2087,7 +2087,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n \"override tensor buffer type\", [](common_params & params, const std::string & value) {\n parse_tensor_buffer_overrides(value, params.tensor...
nodejs/node
60,846
src: simply uint32 to string as it must not fail
`v8::Uint32::ToString` does not return an empty local handle. V8 internal [`NumberToString`](https://github.com/nodejs/node/blob/fc203b36f4930968f978a8d3c5248efc46a81595/deps/v8/src/heap/factory-base.cc#L1066) does not return an empty handle. It should be safe to assert in `node::Uint32ToString` that this function retu...
null
430db0d310ea4249b09020981f2f435a4a30fc0a
null
low
[ { "filename": "src/node_contextify.cc", "patch": "@@ -85,7 +85,6 @@ using v8::ScriptCompiler;\n using v8::ScriptOrigin;\n using v8::String;\n using v8::Symbol;\n-using v8::Uint32;\n using v8::UnboundScript;\n using v8::Value;\n \n@@ -109,15 +108,6 @@ using v8::Value;\n // For every `set` of a global propert...
huggingface/transformers
42,825
Simplify dtype instantiation
# What does this PR do? As per the title. Cleanu-up a bit after https://github.com/huggingface/transformers/pull/42805 and in general
6217adc6c8f0be7b5374e6a46129ad2214e4c6ed
64a7cc82a681803d6bdc9e96a1a212cebc5655d7
9
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -233,23 +233,28 @@ def set_zero3_state():\n _is_ds_init_called = False\n \n \n-def restore_default_dtype(func):\n+@contextmanager\n+def local_torch_dtype(dtype: torch.dtype, model_class_name: str | None = None):\n \"\"\"\n- Deco...
ollama/ollama
4,648
Update README.md with node-red-contrib-ollama
Update README.md with node-red-contrib-ollama in the Extensions & Plugins section
f5ec7cc87281e77db80022ef4658188f12584555
e4c9f75b2326deea746cdf72ffb0c7531be8235e
1
high
[ { "filename": "README.md", "patch": "@@ -479,6 +479,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Discord-Ollama Chat Bot](https://github.com/kevinthedang/discord-ollama) (Generalized TypeScript Discord Bot w/ Tuning Documentation)\n - [Discord AI chat/moderation bot](https://githu...
ollama/ollama
5,679
Add LLPhant to README.md
LLPhant is a PHP library that wraps many LLM services and it supports Ollama. https://github.com/theodo-group/LLPhant?tab=readme-ov-file#ollama
431075fcbbd1f93c0e39730b3beba98f6bfd6d51
811bafba8243fbc246470ea4b4fbd07bf04d1564
1
high
[ { "filename": "README.md", "patch": "@@ -402,6 +402,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LangChainGo](https://github.com/tmc/langchaingo/) with [example](https://github.com/tmc/langchaingo/tree/main/examples/ollama-completion-example)\n - [LangChain4j](https://github.com/l...
vercel/next.js
87,279
test: fix actions deployment tests
Fixes a few failing deployment tests that weren't validated when landed last week. - next.cliOutput is not available when deployed because it's part of runtime logs - status code changes on Vercel because POSTing to a static 404 page is treated differently.
null
ca831cfccccd16c83b4af1cc61b06615fd5ec264
null
low
[ { "filename": "test/e2e/app-dir/actions-unrecognized/actions-unrecognized.test.ts", "patch": "@@ -82,7 +82,7 @@ describe('unrecognized server actions', () => {\n )\n }\n \n- it('should 404 when POSTing a urlencoded action to a nonexistent page', async () => {\n+ it('should error when POSTing a urlen...
ollama/ollama
6,459
Add autogpt integration to list of community integrations
AutoGPT now supports building agents using Ollama 🥳. Updating Ollama's readme so people are aware of yet another way to use Ollama within their apps!
c4f27225acd196d0cba3957419834de393b4ecd0
431075fcbbd1f93c0e39730b3beba98f6bfd6d51
1
high
[ { "filename": "README.md", "patch": "@@ -323,6 +323,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LLMStack](https://github.com/trypromptly/LLMStack) (No-code multi-agent framework to build LLM agents and workflows)\n - [BoltAI for Mac](https://boltai.com) (AI Chat Client for Mac)\n...
vuejs/vue
6,213
fix #6209, selected option not updated properly under IE11
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
c70addf7d1a8e820ed80b6ab14aace5aa7b604c5
f40da5dbf2f01b417a7487d15b43cfd3aeb02a8f
30
medium
[ { "filename": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -22,14 +22,7 @@ if (isIE9) {\n export default {\n inserted (el, binding, vnode) {\n if (vnode.tag === 'select') {\n- const cb = () => {\n- setSelected(el, binding, vnode.context)\n- }\n- cb()\n- /* i...
electron/electron
48,926
fix: devtools crashing on Linux in detach mode
Backport of #48600 See that PR for details. Notes: Fixed an issue where calling `webContents.openDevTools({ mode: 'detach' })` would cause a crash on Wayland.
null
b32853b8aadfc68ef5ace8e47eb30d1686e9c24c
null
low
[ { "filename": "shell/browser/ui/views/electron_views_delegate.cc", "patch": "@@ -8,6 +8,7 @@\n \n #include \"ui/views/widget/desktop_aura/desktop_native_widget_aura.h\"\n #include \"ui/views/widget/native_widget_aura.h\"\n+#include \"ui/views/window/default_frame_view.h\"\n \n #if BUILDFLAG(IS_LINUX)\n #inc...
nodejs/node
60,848
doc: restore REPLACEME on assert change
The change was semver-major and didn't land on v25.x Refs: https://github.com/nodejs/node/pull/60774 <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/...
null
0177491df2f724e6e15bffb81e749fac4877577d
null
low
[ { "filename": "doc/api/assert.md", "patch": "@@ -342,7 +342,7 @@ An alias of [`assert.ok()`][].\n <!-- YAML\n added: v0.1.21\n changes:\n- - version: v25.1.0\n+ - version: REPLACEME\n pr-url: https://github.com/nodejs/node/pull/58849\n description: Message may now be a `printf`-like format string ...
ollama/ollama
5,575
Update README.md
I have created an easy to use GUI in python that would make a great addition to the Community Integrations Web & Desktop section. - [Ollama-Kis](https://github.com/elearningshow/ollama-kis) (A simple easy to use GUI with sample custom LLM for Drivers Education)
b7aa5ee06c6b4eb3725aaaa5fa7de4a7ce4bd412
c4f27225acd196d0cba3957419834de393b4ecd0
1
high
[ { "filename": "README.md", "patch": "@@ -314,6 +314,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Shinkai Desktop](https://github.com/dcSpark/shinkai-apps) (Two click install Local AI using Ollama + Files + RAG)\n - [AiLama](https://github.com/zeyoyt/ailama) (A Discord User App tha...
huggingface/transformers
42,835
Fix a typo in MoE models
# What does this PR do? As per title, reported by glm-authors. Can be tested with `tests/models/deepseek_v3/test_modeling_deepseek_v3.py::DeepseekV3IntegrationTest::test_compile_static_cache`, not failing with mismatch shape anymore
null
37426b27bf51fb4cc9f7f7645a61d1b5dd28f20f
null
low
[ { "filename": "src/transformers/models/deepseek_v3/modeling_deepseek_v3.py", "patch": "@@ -157,7 +157,7 @@ def __init__(self, config):\n super().__init__()\n self.num_experts = config.num_local_experts\n self.hidden_dim = config.hidden_size\n- self.intermediate_dim = config.in...
facebook/react
32,764
Mark shouldStartViewTransition as true when there's an enter animation
Typically we mark the name of things that might animate in the snapshot phase. At the same time we track that should call startViewTransition too. However, we don't do this for "enter" since they're only marked later. Leading to having just an "enter" not to animate unless there's at least another update too. This t...
e0c99c4ea1cae566ad8040180cf180ae058cb8bf
4280563b04898baad423dc7d0f8b0dfea3b1797a
4
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js", "patch": "@@ -67,6 +67,20 @@ export function trackAppearingViewTransition(\n appearingViewTransitions.set(name, state);\n }\n \n+export function trackEnterViewTransitions(placement: Fiber): void {\n+ if (\n+ placement.ta...
ggml-org/llama.cpp
19,317
cleanup `llama-quantize --help` output
More pleasant formatting for the output of `llama-quantize --help`. Before this PR: <img width="1280" height="803" alt="Screenshot 2026-02-03 at 10 34 37 PM" src="https://github.com/user-attachments/assets/696422e0-1a24-473b-98c1-00d874c82b21" /> --- After this PR: <img width="1280" height="803" alt="Scr...
null
5999b50eb00972732b69c519121dda1361f56eb3
null
low
[ { "filename": "tools/quantize/quantize.cpp", "patch": "@@ -119,27 +119,48 @@ static bool try_parse_ftype(const std::string & ftype_str_in, llama_ftype & ftyp\n [[noreturn]]\n static void usage(const char * executable) {\n printf(\"usage: %s [--help] [--allow-requantize] [--leave-output-tensor] [--pure] ...
ollama/ollama
5,412
Update README.md: Add Ollama-GUI to web & desktop
Hi, ollama-gui is a very simple client, implemented using the built-in Python tkinter library, with no additional dependencies. Provide with the simplest possible visual Ollama interface. Repository: https://github.com/chyok/ollama-gui Screenshots(current version): ![ollama-gui-1 2 0](https://github.com/user-a...
3f87f71755910c1c1a2c260aa23a48cea58c942e
b7aa5ee06c6b4eb3725aaaa5fa7de4a7ce4bd412
1
high
[ { "filename": "README.md", "patch": "@@ -331,6 +331,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [ConfiChat](https://github.com/1runeberg/confichat) (Lightweight, standalone, multi-platform, and privacy focused LLM chat interface with optional encryption)\n - [Archyve](https://gith...
facebook/react
32,761
Add "auto" class to mean the built-in should run
Stacked on https://github.com/facebook/react/pull/32734 In React a ViewTransition class of `"none"` doesn't just mean that it has no class but also that it has no ViewTransition name. The default (`null | undefined`) means that it has no specific class but should run with the default built-in animation. This adds th...
e0c99c4ea1cae566ad8040180cf180ae058cb8bf
fceb0f80bc729d061bcb5031801cfc824adc07a9
1
high
[ { "filename": "packages/react-reconciler/src/ReactFiberViewTransitionComponent.js", "patch": "@@ -21,10 +21,14 @@ import {getIsHydrating} from './ReactFiberHydrationContext';\n import {getTreeId} from './ReactFiberTreeContext';\n \n export type ViewTransitionClassPerType = {\n- [transitionType: 'default' |...
ollama/ollama
4,877
Update README.md to add Shinkai Desktop
Adding Shinkai Desktop to the list of Apps using Ollama (opensource), free and a two click install! no docker required
20623cec13890f015cf02d707fb66a710b808a61
3f87f71755910c1c1a2c260aa23a48cea58c942e
1
high
[ { "filename": "README.md", "patch": "@@ -311,6 +311,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Olpaka](https://github.com/Otacon/olpaka) (User-friendly Flutter Web App for Ollama)\n - [OllamaSpring](https://github.com/CrazyNeil/OllamaSpring) (Ollama Client for macOS)\n - [LLocal...
facebook/react
32,734
Rename <ViewTransition className="..."> to <ViewTransition default="...">
It was always confusing that this is not a CSS class but a view-transition-class. The `className` sticks out a bit among its siblings `enter`, `exit`, `update` and `share`. The idea is that the most specific definition override is the class name that gets applied and this prop is really just the fallback, catch-all ...
a5297ece6217f5495cbe38ba58f928b2697b0f99
e0c99c4ea1cae566ad8040180cf180ae058cb8bf
1
medium
[ { "filename": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -33,7 +33,7 @@ const b = (\n function Component() {\n return (\n <ViewTransition\n- className={\n+ default={\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p c...
vercel/next.js
87,269
Ensure constructor for `useSearchParams` can be imported for `instanceof` checks
Fixes https://github.com/vercel/next.js/issues/86501 Closes https://github.com/vercel/next.js/pull/86649 The same constructor is relevant for `instanceof` checks. Previously `useSearchParams() instanceof ReadonlyURLSearchParams` lead to hydration mismatches.
null
dc6914336acd1671023bb523d988189eaca08526
null
low
[ { "filename": "packages/next/src/client/components/navigation-devtools.ts", "patch": "@@ -2,14 +2,14 @@ import type { FlightRouterState } from '../../shared/lib/app-router-types'\n import type { Params } from '../../server/request/params'\n import {\n createDevToolsInstrumentedPromise,\n+ ReadonlyURLSear...
nodejs/node
60,775
build: fix OpenSSL version parsing for OpenSSL < 3
OpenSSL versions before 3.0.0 do not define - `OPENSSL_VERSION_MAJOR` - `OPENSSL_VERSION_MINOR` - `OPENSSL_VERSION_PATCH` in `openssl/opensslv.h`. For these versions, `OPENSSL_VERSION_NUMBER` is a literal which we can parse directly. --- Noticed this in, e.g. https://ci.nodejs.org/job/node-test-commit-linux...
eb6cb5b8270bf55c53f22d1867c654c1d56e601f
07711379728708fd25de2d13c2d0cb78ddecbc4c
8
medium
[ { "filename": "configure.py", "patch": "@@ -1246,7 +1246,8 @@ def get_openssl_version(o):\n \"\"\"Parse OpenSSL version from opensslv.h header file.\n \n Returns the version as a number matching OPENSSL_VERSION_NUMBER format:\n- 0xMNN00PPSL where M=major, NN=minor, PP=patch, S=status(0xf=release,0x0=pr...
electron/electron
48,942
fix: crash on windows when UTF-8 is in path
Backport of #48898 See that PR for details. Notes: fix crash on windows when UTF-8 is in path
8bb0f146ea7c46fa29302e4d9bcdef97324bad7e
57bbcd5233c5d72ec9fd938bdf5e19a915e40751
16
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -26,7 +26,6 @@ build_allow_unbundling_of_node_js_dependencies.patch\n build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creat...
vuejs/vue
6,369
fix(transition): consider async placeholder as valid child to return, fix #6256
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
null
a43d66743be2bd62b2398090663e41eeaf0dc75f
null
low
[ { "filename": "src/core/vdom/helpers/get-first-component-child.js", "patch": "@@ -1,12 +1,13 @@\n /* @flow */\n \n import { isDef } from 'shared/util'\n+import { isAsyncPlaceholder } from './is-async-placeholder'\n \n export function getFirstComponentChild (children: ?Array<VNode>): ?VNode {\n if (Array.i...
ollama/ollama
7,770
Add Orbiton to the README.md file
Orbiton is a configuration-free text editor and IDE that can use Ollama for tab-completion.
ecf41eed0595fb031f1addc179f6abb86d8405f8
c5e238e8e53fe26a056854c94bac20377d3185b2
8
medium
[ { "filename": "README.md", "patch": "@@ -368,6 +368,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [vim-intelligence-bridge](https://github.com/pepo-ec/vim-intelligence-bridge) Simple interaction of \"Ollama\" with the Vim editor\n - [SwollamaCLI](https://github.com/marcusziade/Swoll...
electron/electron
48,952
fix: handle tar.xz files in uploaders, add to breaking changes
Backport of #48941 See that PR for details. Notes: Fixed an error on debug symbol upload by moving dsym.zip to use tar.xz compression.
fa764f73286b16dcf8415d2d116f20630c4c1ccd
4c042506fee4016a949112cd3f7d570182b325f3
7
medium
[ { "filename": "docs/breaking-changes.md", "patch": "@@ -20,6 +20,11 @@ Using the `clipboard` API directly in the renderer process is deprecated.\n If you want to call this API from a renderer process, place the API call in\n your preload script and expose it using the [contextBridge](https://www.electronjs....
ollama/ollama
6,945
Update README.md - Library - Haverscript
This PR adds a link to Haverscript. Haverscript uses classical functional programming techniques to provide a composable interface for interacting with ollama-hosted LLMs.
7e9209175188c639817d149fb6a51e8db82631d5
0e5f31a86d960ca5d585a14d5e69e7173c276f35
1
high
[ { "filename": "README.md", "patch": "@@ -428,6 +428,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [High-level function abstraction in Go](https://gitlab.com/tozd/go/fun)\n - [Ollama PHP](https://github.com/ArdaGnsrn/ollama-php)\n - [Agents-Flex for Java](https://github.com/agents-fl...
facebook/react
32,752
Warn for duplicate ViewTransition names
This adds early logging when two ViewTransitions with the same name are mounted at the same time. Whether they're part of a View Transition or not. This lets us include the owner stack of each one. I do two logs so that you can get the stack trace of each one of the duplicates. It currently only logs once for eac...
f9e1b16098f2ff4ed483285219b07066525796b6
8ac25e5201579c65d115d91c211ac719a235d982
1
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -109,6 +109,7 @@ import {\n ForceClientRender,\n DidCapture,\n AffectedParentLayout,\n+ ViewTransitionNamedStatic,\n } from './ReactFiberFlags';\n import {\n commitStartTime,\n@@ -254,6 +255,10 @@ import {\n pushM...
ggml-org/llama.cpp
19,526
add `--dry-run` option to `llama-quantize`
This PR adds a new `--dry-run` option to `llama-quantize`. This option calculates the size of each tensor in the target type without actually performing quantization, and prints the final quantization size in the same way that `llama-quantize` does currently. Example command: ```sh llama-quantize --dry-run gemma...
null
492bc319782b1f13f302911f4c73437382cc8bb9
null
low
[ { "filename": "include/llama.h", "patch": "@@ -389,6 +389,7 @@ extern \"C\" {\n bool only_copy; // only copy tensors - ftype, allow_requantize and quantize_output_tensor are ignored\n bool pure; // quantize all tensors to the default type\n ...
huggingface/transformers
42,761
Fix xpu output check for Ministral3 tests
Fix xpu output check for Ministral3 tests
null
c24b51dd78b947517bd23b70ce0717f3a6d0107f
null
low
[ { "filename": "tests/models/ministral3/test_modeling_ministral3.py", "patch": "@@ -21,8 +21,10 @@\n \n from transformers import AutoTokenizer, Mistral3ForConditionalGeneration, is_torch_available\n from transformers.testing_utils import (\n+ Expectations,\n backend_empty_cache,\n cleanup,\n+ r...
electron/electron
48,941
fix: handle tar.xz files in uploaders, add to breaking changes
#### Description of Change Fast follow to #48930, this PR also handles the new .zip -> tar.xz format in the uploader scripts, and also adds a callout to breaking changes. #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] PR description included and stakehold...
27727dbe0abab78b3686ecc77dd3d3108c157c1d
c896ab80fe8ad39eb87d5d4107b94f1d9afa22d4
12
medium
[ { "filename": "docs/breaking-changes.md", "patch": "@@ -20,6 +20,11 @@ Using the `clipboard` API directly in the renderer process is deprecated.\n If you want to call this API from a renderer process, place the API call in\n your preload script and expose it using the [contextBridge](https://www.electronjs....
ollama/ollama
7,064
Update README.md, Terminal app "bb7"
Introducing "bb7", an advanced chat bot designed for versatile interactions. Equipped with TTS (Text-to-Speech) capabilities, bb7 enables seamless voice conversations with users. It also supports local Retrieval-Augmented Generation (RAG), allowing for efficient document-based queries and responses, even without cloud ...
6a89dcf848b1d041c7c9959dfc46c8c9b037df89
7e9209175188c639817d149fb6a51e8db82631d5
2
high
[ { "filename": "README.md", "patch": "@@ -367,6 +367,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ollama eBook Summary](https://github.com/cognitivetech/ollama-ebook-summary/)\n - [Ollama Mixture of Experts (MOE) in 50 lines of code](https://github.com/rapidarchitect/ollama_moe)\n ...
vercel/next.js
87,252
[turbopack] Break ties using a counter instead of node index
This should ensure that if priorities are ambiguous we revert to a BFS order BFS is better than DFS for the `fixed point` traversals since we are generally propogating information 'down' the graph so to the extent we can we should visit all r-deps first. BFS approximates this.
null
ea1df5f2893771ef49d935cf2bb6803989feec74
null
low
[ { "filename": "turbopack/crates/turbopack-core/src/module_graph/mod.rs", "patch": "@@ -1451,10 +1451,17 @@ impl ModuleGraphRef {\n );\n }\n \n+ let mut visit_order = 0usize;\n+ let mut order = || {\n+ let order = visit_order;\n+ visit_order += 1;\n+ ...