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,889
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
null
f1ddf6e632ff5f6375400f8685912381349f6726
null
low
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -189,15 +189,15 @@\n \"unrecognized server actions should 404 when POSTing a non-server-action request to a nonexistent page\",\n \"unrecognized server actions should 404 when POSTing a server action with an unrecognized id to a...
facebook/react
32,774
Warn for using a React owned node as a Container if it also has text content
The problem with setting both `children` or `dangerouslySetInnerHTML` and also using a ref on a DOM node to either manually append children or using it as a Container for `createRoot` or `createPortal` is that it's ambiguous which children should win. Ideally you use one of the four options to control children. Meaning...
0b1a9e90c5d5b6a4633c225c9100af69f53752c8
e5dd82a79dd41c9df8d903ca7ab7b3a977bc3371
3
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactDOMComponentTree.js", "patch": "@@ -211,7 +211,7 @@ export function getNodeFromInstance(inst: Fiber): Instance | TextInstance {\n }\n \n export function getFiberCurrentPropsFromNode(\n- node: Instance | TextInstance | SuspenseInstance,\n+ node: Co...
ollama/ollama
7,695
cmd: print location of model after pushing
After a user pushes their model it is not clear what to do next. Add a link to the output of ollama push that tells the user where their model can now be found. ```bash ❯ ollama push brxce/test retrieving manifest pushing 66002b78c70a... 100% ▕█████████████████████████████████████████████████████████████████████...
7b5585b9cbc5f803583ebd6a9627c563521c8970
a210ec74d29ee718bca9b3c192e0a93cf86cbf21
11
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -39,6 +39,7 @@ import (\n \t\"github.com/ollama/ollama/parser\"\n \t\"github.com/ollama/ollama/progress\"\n \t\"github.com/ollama/ollama/server\"\n+\t\"github.com/ollama/ollama/types/model\"\n \t\"github.com/ollama/ollama/version\"\n )\n \n@@ -558,6 +559,8 @@ func Pu...
nodejs/node
60,879
test: use `assert.match` for variable-based regexp tests
These cases can't be linted without type parsing, but we may as well change them alongside the others. Refs: #60832
null
6274eb78fb6ee0c216885c1f88d1b5acbf399dc4
null
low
[ { "filename": "test/parallel/test-max-old-space-size-percentage.js", "patch": "@@ -41,7 +41,7 @@ invalidPercentages.forEach((input) => {\n `--max-old-space-size-percentage=${input[0]}`,\n ], { stdio: ['pipe', 'pipe', 'pipe'] });\n assert.notStrictEqual(result.status, 0, `Expected non-zero exit for i...
huggingface/transformers
39,411
set document_question_answering pipeline _load_tokenizer to True
Hi @Rocketknight1 . The document-question-answering pipeline requires a tokenizer in the preprocessing step. script: [impira/layoutlm-document-qa](https://huggingface.co/impira/layoutlm-document-qa) ```python from transformers import pipeline nlp = pipeline( "document-question-answering", model="impir...
3d8be20cd2f76aa03d3f42808f2c9b36c94608b3
c4d41567fa4ed03123580d4168c25a0a328119d1
10
medium
[ { "filename": "src/transformers/pipelines/document_question_answering.py", "patch": "@@ -138,7 +138,7 @@ class DocumentQuestionAnsweringPipeline(ChunkPipeline):\n _load_processor = False\n _load_image_processor = None\n _load_feature_extractor = None\n- _load_tokenizer = False\n+ _load_tok...
facebook/react
32,788
Get rid of the directional gesture options
Stacked on #32786. `startGestureTransition` doesn't have a concept of two directions. It's just a start and end range now.
0a7cf20b220a9f719e06fd8a12dfde3ab029c651
8b2046d0ce379e083b4f5678598c2af9d507f507
2
medium
[ { "filename": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -38,9 +38,15 @@ export default function SwipeRecognizer({\n () => {\n gesture(direction);\n },\n- {\n- range: [0, direction === 'left' || direction === 'up' ? 100 : 0, 100],\n- }\n+ ...
facebook/react
32,790
Adjust range start/end based on the duration and delay of the animation
When different animations in a View Transition have different durations, we shouldn't stretch them out to run the full range of swipe. Because then they wouldn't line up the same way as when played using plain time. This adjusts the range start/end to be what it would've been when played by time. Except since we are...
0a7cf20b220a9f719e06fd8a12dfde3ab029c651
d20c2802b4a2a316424d8cea995354156037a77c
1
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1880,6 +1880,7 @@ function animateGesture(\n // keyframe. Otherwise it applies to every keyframe.\n moveOldFrameIntoViewport(keyframes[0]);\n }\n+ // TODO: Reverse the reverse if the original direction is...
ggml-org/llama.cpp
19,824
tests : fix typos in comments in test-backend-sampler [no ci]
null
d8aeb65ceed4e0a6ff8395e719facd5ed706c64d
null
low
[ { "filename": "tests/test-backend-sampler.cpp", "patch": "@@ -361,7 +361,7 @@ static void test_backend_temp_sampling(const test_params & params) {\n GGML_ASSERT(false && \"Failed to decode token\");\n }\n \n- // Verfify sequence 0\n+ // Verify sequence 0\n {\n ...
vuejs/vue
6,622
WIP: implement Weex native directive compiler for <recycle-list>
+ [x] `v-bind` & `:` + [x] `v-if` + [x] `v-else` + [x] `v-else-if` + [x] `v-for` + [ ] `v-on` & `@`
null
1e41d5143f63bfbee820e8623defc4f4ad294aea
null
low
[ { "filename": "src/core/vdom/helpers/update-listeners.js", "patch": "@@ -1,13 +1,15 @@\n /* @flow */\n \n import { warn } from 'core/util/index'\n-import { cached, isUndef } from 'shared/util'\n+import { cached, isUndef, isPlainObject } from 'shared/util'\n \n const normalizeEvent = cached((name: string): {...
vercel/next.js
87,888
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
null
8b41bf65f803ee88f8ce8203f1f44656936cef38
null
low
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -1080,13 +1080,14 @@\n \"server-components-hmr-cache node runtime in after() should not use cached fetch calls for intentional refresh requests\",\n \"server-components-hmr-cache node runtime in after() should use cached fetch cal...
facebook/react
7
Missed a link in README.md
Whenever you have a spare moment =]
a341f778ae277bf4636c75ceaadf83f203388b26
ff1c2ab703af8ac4514ea9eabaa59215e7dffec8
5
medium
[ { "filename": "README.md", "patch": "@@ -28,7 +28,7 @@ React.renderComponent(\n \n This example will render \"Hello John\" into a container on the page.\n \n-You'll notice that we used an XML-like syntax; [we call it JSX](http://facebook.github.io/docs/syntax.html). JSX is not required to use React, but it ...
nodejs/node
60,873
doc: show the use of string expressions in the SQLTagStore example
Slight edit to the example shown for the `database.createTagStore` API. Showing the get query with a string instead of a number to demonstrate correct usage of the template literals in combination with string expressions. ### Reason for this change: Because strings in SQL queries are usually enclosed in quotation...
null
d0c102495a5958d2cce1b42ed9cd45eddbafac7f
null
low
[ { "filename": "doc/api/sqlite.md", "patch": "@@ -550,8 +550,8 @@ sql.run`INSERT INTO users VALUES (1, 'Alice')`;\n sql.run`INSERT INTO users VALUES (2, 'Bob')`;\n \n // Using the 'get' method to retrieve a single row.\n-const id = 1;\n-const user = sql.get`SELECT * FROM users WHERE id = ${id}`;\n+const name...
ollama/ollama
3,591
examples: Update langchain-python-simple
* remove deprecated predict command, use invoke instead * improve input handling
null
cfb1ddd6fc2a5ca755f02add26239781c77c2199
null
low
[ { "filename": "examples/langchain-python-simple/main.py", "patch": "@@ -1,6 +1,6 @@\n from langchain.llms import Ollama\n \n-input = input(\"What is your question?\")\n+input = input(\"What is your question?\\n> \")\n llm = Ollama(model=\"llama3.2\")\n-res = llm.predict(input)\n+res = llm.invoke(input)\n pr...
huggingface/transformers
39,164
enable static cache on TP model
The TP model usually needs torch.compile to get speed-up, but the static cache failed on running TP model. This PR will check the tp size and then allocate the correct cache shape. Reproduce error: `torchrun --standalone --nproc-per-node 2 tp_hf.py` ```python import torch import torch.distributed as dist from t...
5fb8bb3e1a897bb46a709e51fb393412e9a15ea8
aff7df8436dde04762170d3d0fbe906c7216d6f2
29
medium
[ { "filename": "src/transformers/cache_utils.py", "patch": "@@ -1098,6 +1098,10 @@ class StaticCache(Cache):\n Mapping between the layers and its device. This is required when you are manually initializing the cache\n and the model is split between different gpus. You can know which l...
ollama/ollama
4,303
add project description
3440ffb37b0a02251f83d532639c629aaab3fc75
3987acd7ec2825d359fa148662d4d88afe4a2476
2
high
[ { "filename": "README.md", "patch": "@@ -298,7 +298,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [AnythingLLM (Docker + MacOs/Windows/Linux native app)](https://github.com/Mintplex-Labs/anything-llm)\n - [Ollama Basic Chat: Uses HyperDiv Reactive UI](https://github.com/rapidarchite...
ggml-org/llama.cpp
19,823
model-conversion : merge inspect-org-model.py with tensor-info.py
This commit replaces/merges the inspect-org-model.py script with the contents tensor-info.py script. The merged script has also been updated to also print tensor sizes which was the only thing that was not done before (by tensor-info.py that is). The motivation for this is that tensor-info.py does not load the tenso...
null
72b44c0d212d53acd49b3fb344979e4adb2ade32
null
low
[ { "filename": "examples/model-conversion/Makefile", "patch": "@@ -77,7 +77,10 @@ causal-verify-embeddings: causal-run-original-embeddings causal-run-converted-em\n \t@./scripts/causal/compare-embeddings-logits.sh\n \n causal-inspect-original-model:\n-\t@./scripts/utils/inspect-org-model.py\n+\t@./scripts/ut...
nodejs/node
58,313
http2: deprecate priority
Ref https://github.com/nodejs/node/pull/58293 and https://github.com/nodejs/node/pull/57269.
ba6651ab4f42da883526bb2bf9e9999f578fa7c5
41ab185d0f2414c307aec06b8a0152e33192aff4
9
medium
[ { "filename": "doc/api/deprecations.md", "patch": "@@ -3935,10 +3935,25 @@ The `node:_stream_duplex`, `node:_stream_passthrough`, `node:_stream_readable`,\n `node:_stream_wrap` and `node:_stream_writable` modules are deprecated as they should be considered\n an internal nodejs implementation rather than a p...
electron/electron
48,991
fix: handle empty event scenario in ipc callbacks
Backport of #48987 See that PR for details. Notes: fix crash when creating event object for ipc events
null
d1d6befcf16662c6af0f2f3d4d7060f3e8e65aba
null
low
[ { "filename": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate...
vuejs/vue
6,627
Improve #6041, Migrate to CircleCI 2.0
<!-- 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
a5939032de5f85e1994d2ecb5f8905c545a9e769
null
low
[ { "filename": ".circleci/config.yml", "patch": "@@ -0,0 +1,83 @@\n+version: 2\n+\n+defaults: &defaults\n+ working_directory: ~/project/vue\n+ docker:\n+ - image: circleci/node:6-browsers\n+\n+jobs:\n+ install:\n+ <<: *defaults\n+ steps:\n+ - checkout\n+ - restore_cache:\n+ key...
vercel/next.js
87,838
misc: fix type check log for CI envs
this fixes the case where we would not show the typescritp check duration in a CI/non interactive env <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for ...
null
942eb14d7c82886b1f896713e6629108669b3105
null
low
[ { "filename": "packages/next/src/build/type-check.ts", "patch": "@@ -136,12 +136,12 @@ export async function startTypeChecking({\n \n if (typeCheckingSpinner) {\n typeCheckingSpinner.stop()\n-\n- createSpinner(\n- `Finished TypeScript${ignoreTypeScriptErrors ? ' config validation' : ''...
ggml-org/llama.cpp
19,356
ggml-cpu: arm64: q5_K repack gemm and gemv (and generic) implementations (dotprod)
This PR extends https://github.com/ggml-org/llama.cpp/pull/18860 for DOTPROD devices. PR contents: - New generics for q5_K_8x4 - New repack implementations for ARM - Templated generic impl Same methodology for testing -> llama-cli output, outputs of gemm and gemvs and perplexity to double check prompt processi...
b908baf1825b1a89afef87b09e22c32af2ca6548
bc160d3582d5552ee1c2db810f3f6401d5a0a0a4
17
medium
[ { "filename": "ggml/src/ggml-cpu/arch-fallback.h", "patch": "@@ -42,6 +42,7 @@\n #define ggml_gemv_q2_K_8x8_q8_K_generic ggml_gemv_q2_K_8x8_q8_K\n #define ggml_gemv_q4_K_8x4_q8_K_generic ggml_gemv_q4_K_8x4_q8_K\n #define ggml_gemv_q4_K_8x8_q8_K_generic ggml_gemv_q4_K_8x8_q8_K\n+#define ggml_gemv_q5_K_8x4_q8...
facebook/react
32,795
Remove v19 beta specific issue template
This was a template for the 19 beta. Since 19 has been stable for a while now, we can clean this up. Any bug report for React 19 should use the standard bug report template.
null
a7fa8702ee0fc4c04f2d2ff9404e4f626877c113
null
low
[ { "filename": ".github/ISSUE_TEMPLATE/19.md", "patch": "@@ -1,18 +0,0 @@\n----\n-name: \"⚛React 19 beta issue\"\n-about: Report a issue with React 19 beta.\n-title: '[React 19]'\n-labels: 'React 19'\n-\n----\n-\n-\n-## Summary\n-\n-<!--\n- Please provide a CodeSandbox (https://codesandbox.io/s/new), a link...
vuejs/vue
6,618
Set jsDelivr default file
<!-- 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...
94512f3e8cee4030a1096121700ed49afab48073
a9b6bc42fdafd87a0ac1b61644aae1b427c58ea0
4
medium
[ { "filename": "package.json", "patch": "@@ -5,6 +5,7 @@\n \"main\": \"dist/vue.runtime.common.js\",\n \"module\": \"dist/vue.runtime.esm.js\",\n \"unpkg\": \"dist/vue.js\",\n+ \"jsdelivr\": \"dist/vue.js\",\n \"typings\": \"types/index.d.ts\",\n \"files\": [\n \"src\",", "additions": 1, ...
huggingface/transformers
39,246
enable xpu on kv-cache and hqq doc
Enable xpu on kv-cache and hqq doc. The previous quantized kv-cache usage is out-of-date, I have updated it and verified it on both A100 and XPU.
null
14cba7ad33279d18e42857251e56c944560dbe18
null
low
[ { "filename": "docs/source/en/kv_cache.md", "patch": "@@ -44,7 +44,7 @@ import torch\n from transformers import AutoTokenizer, AutoModelForCausalLM\n \n tokenizer = AutoTokenizer.from_pretrained(\"meta-llama/Llama-2-7b-chat-hf\")\n-model = AutoModelForCausalLM.from_pretrained(\"meta-llama/Llama-2-7b-chat-hf...
facebook/react
32,772
Mark the root as animating if any Portal mutates or resizes
Portals and `<ViewTransition>` are tricky because they leave the React tree. You might think of a Portal's container conceptually as also being part of a React tree but that's not quite how they're modeled today. They're more like their own roots. So instead, of trying to find a conceptual place in the React tree we tr...
4280563b04898baad423dc7d0f8b0dfea3b1797a
95671b4eb3ceb51278a2ba959667da04f0b09809
11
medium
[ { "filename": "fixtures/view-transition/src/components/Page.css", "patch": "@@ -20,4 +20,11 @@\n border: 0px;\n border-radius: 5px;\n padding: 10px;\n+}\n+\n+.portal {\n+ position: fixed;\n+ top: 10px;\n+ left: 360px;\n+ border: 1px solid #ccc;\n }\n\\ No newline at end of file", "additions": ...
ollama/ollama
7,819
Bring ollama `fileType`s into alignment with llama.cpp.
Fixes #7816
null
fda1e6b563a4ac5d3fd40f2fe393911c5b79141e
null
low
[ { "filename": "llm/filetype.go", "patch": "@@ -32,9 +32,10 @@ const (\n \tfileTypeIQ1_S\n \tfileTypeIQ4_NL\n \tfileTypeIQ3_S\n+\tfileTypeIQ3_M\n \tfileTypeIQ2_S\n-\tfileTypeIQ4_XS\n \tfileTypeIQ2_M\n+\tfileTypeIQ4_XS\n \tfileTypeIQ1_M\n \tfileTypeBF16\n \n@@ -93,6 +94,8 @@ func ParseFileType(s string) (file...
electron/electron
48,987
fix: handle empty event scenario in ipc callbacks
#### Description of Change Regression from https://github.com/electron/electron/pull/48161 Don't have a reliable repro, but possible fix for the following crash ``` Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Code...
null
530be28bc570a1d18d3c6a59ac7553638620a0f6
null
low
[ { "filename": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate...
nodejs/node
60,842
deps: update corepack to 0.34.5
This is an automated update of corepack to 0.34.5.
null
6a1a3ba045ad7d8d46ca443c5bb73b172d6828c3
null
low
[ { "filename": "deps/corepack/CHANGELOG.md", "patch": "@@ -1,5 +1,13 @@\n # Changelog\n \n+## [0.34.5](https://github.com/nodejs/corepack/compare/v0.34.4...v0.34.5) (2025-11-24)\n+\n+\n+### Bug Fixes\n+\n+* **pnpm:** fix bin path for v11 ([#776](https://github.com/nodejs/corepack/issues/776)) ([0c8048a](http...
huggingface/transformers
39,070
fix caching_allocator_warmup with tie weights
### Motivation The test `tests/quantization/finegrained_fp8/test_fp8.py::FP8QuantizerTest::test_quantized_model_multi_accelerator` failed with ``` > self.assertTrue(set(quantized_model.hf_device_map.values()) == {0, 1})tests/quantization/finegrained_fp8/test_fp8.py:206: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _...
d53518c5f2dd7ada022ff5b725c684c9ed89cb44
06c4a4d499aeb213c558d6fb59adf864a6062dad
3
high
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -5843,7 +5843,12 @@ def caching_allocator_warmup(model: PreTrainedModel, expanded_device_map: dict,\n else None\n )\n total_byte_count = defaultdict(lambda: 0)\n+ tied_param_names = _get_tied_weight_keys(model)\n for par...
ollama/ollama
7,818
Update README.md
Description added for link
a820d2b2673f7f8035e3a2a6f93c83af465f841c
3440ffb37b0a02251f83d532639c629aaab3fc75
1
high
[ { "filename": "README.md", "patch": "@@ -351,7 +351,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Perfect Memory AI](https://www.perfectmemory.ai/) (Productivity AI assists personalized by what you have seen on your screen, heard and said in the meetings)\n - [Hexabot](https://gith...
nodejs/node
60,881
doc: replace column with columnNumber in example of `util.getCallSites`
`column` is deprecated in favor of `columnNumber`. Refs: https://github.com/nodejs/node/pull/56584 <!-- 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/nodej...
7643c2a076a7f9e6262ef1813ec01f46c994f46b
6a80d0558a421010051861fafc7c2b75d5c1cb92
4
medium
[ { "filename": "doc/api/util.md", "patch": "@@ -576,7 +576,7 @@ function exampleFunction() {\n console.log(`Function Name: ${callSite.functionName}`);\n console.log(`Script Name: ${callSite.scriptName}`);\n console.log(`Line Number: ${callSite.lineNumber}`);\n- console.log(`Column Number: ${ca...
ollama/ollama
7,811
Add Observability section and OpenLIT in README
Adding OpenLIT to the README as an integration. Did not find a proper category so added `Observability`
bb52abfa559a4734f6fab4bc1b86ff8da66f19c1
a820d2b2673f7f8035e3a2a6f93c83af465f841c
2
high
[ { "filename": "README.md", "patch": "@@ -514,3 +514,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n ### Supported backends\n \n - [llama.cpp](https://github.com/ggerganov/llama.cpp) project founded by Georgi Gerganov.\n+\n+### Observability\n+\n+- [OpenLIT](https://github.com/openlit/op...
vuejs/vue
6,530
fix: add `inject` option in functional component options type
<!-- 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] Othe...
null
1baa0a7884cfa147df7623a34ee277f7d39c7a21
null
low
[ { "filename": "types/options.d.ts", "patch": "@@ -47,7 +47,7 @@ export interface ComponentOptions<V extends Vue> {\n filters?: { [key: string]: Function };\n \n provide?: Object | (() => Object);\n- inject?: { [key: string]: string | symbol } | Array<string>;\n+ inject?: { [key: string]: string | symb...
ggml-org/llama.cpp
15,579
fix mtmd ios build
Potential fix for https://github.com/ggml-org/llama.cpp/issues/15578
null
8ce3ff1d91245e158d98d8062cd64b0dd98dcfe3
null
low
[ { "filename": "tools/mtmd/CMakeLists.txt", "patch": "@@ -55,6 +55,8 @@ add_executable(llama-qwen2vl-cli deprecation-warning.cpp)\n set(TARGET llama-mtmd-cli)\n add_executable (${TARGET} mtmd-cli.cpp)\n set_target_properties (${TARGET} PROPERTIES OUTPUT_NAME llama-mtmd-cli)\n-install ...
vercel/next.js
87,316
Turbopack: In CI only persist at the end
### What? Usually we persist the database every 2 minutes inside of `next build`, so you can continue from a partial build. But in CI that doesn't make sense, so this changes it to only persist on shutdown.
null
0a21e7dd753649b6e300d6b8ec83963d5a4ae1eb
null
low
[ { "filename": "crates/napi/src/next_api/turbopack_ctx.rs", "patch": "@@ -204,6 +204,8 @@ pub fn create_turbo_tasks(\n BackendOptions {\n storage_mode: Some(if std::env::var(\"TURBO_ENGINE_READ_ONLY\").is_ok() {\n turbo_tasks_backend::StorageMode::ReadOnly\n+ ...
ollama/ollama
6,627
Add preliminary support for riscv64
math32 adds riscv64 support at v1.11.0, which is backward-compatible upgrade Tested on Bananapi F3 Also runs `go mod tidy` Fixes #4378
597072ef1b4a569150a90ea7f1924d90a8649db2
2ebdb54fb3012142a56ad9bee58298d0892f4c1a
10
medium
[ { "filename": "go.mod", "patch": "@@ -29,7 +29,7 @@ require (\n \tgithub.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect\n \tgithub.com/bytedance/sonic/loader v0.1.1 // indirect\n \tgithub.com/chewxy/hm v1.0.0 // indirect\n-\tgithub.com/chewxy/math32 v1.10.1 // indirect\n+\tgithub.c...
huggingface/transformers
39,117
update bnb ground truth
The previous ground truth was generated by ipex backend, we should update it since bnb is going to use sycl/triton backend.
2100ee654569d323bfb77266cd3a75070abfda97
db2f5354439f887f4ae0a46fb3f4a6dd4bec3b45
25
medium
[ { "filename": "tests/quantization/bnb/test_4bit.py", "patch": "@@ -27,6 +27,7 @@\n AutoTokenizer,\n BitsAndBytesConfig,\n pipeline,\n+ set_seed,\n )\n from transformers.models.opt.modeling_opt import OPTAttention\n from transformers.testing_utils import (\n@@ -111,6 +112,8 @@ class Base4bitTe...
facebook/react
32,781
Add changelog for 19.1.0
null
d726d692ed896c34fc320f633f07699a415381fa
null
low
[ { "filename": "CHANGELOG.md", "patch": "@@ -1,3 +1,47 @@\n+## 19.1.0 (March 28, 2025)\n+\n+### Owner Stack\n+* An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stack, which ...
ollama/ollama
4,118
Add ChatGPTBox and RWKV-Runner to community integrations
Integrating Tutorial: ChatGPTBox: https://github.com/josStorer/chatGPTBox/issues/616#issuecomment-1975186467 RWKV-Runner: ![image](https://github.com/ollama/ollama/assets/13366013/e9a26e7b-3571-487a-aaea-6d5d88989a46)
78f779a3230dca950aca5701bad365322561540b
bb52abfa559a4734f6fab4bc1b86ff8da66f19c1
2
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...
electron/electron
48,992
fix: handle empty event scenario in ipc callbacks
Backport of #48987 See that PR for details. Notes: fix crash when creating event object for ipc events
null
00646c9db66a229931cac7ac4b87e0957ba00356
null
low
[ { "filename": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate...
nodejs/node
60,875
doc: correct spelling in BUILDING.md
Really just testing another github-bot dependency update and making sure it still labels new PRs. But this is a legit fix too. <!-- 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 ...
null
e42c6c899d85b279832a7b72c3229b779ca31633
null
low
[ { "filename": "BUILDING.md", "patch": "@@ -443,7 +443,7 @@ tools/test.py parallel/test-stream-* # The test/ prefix can be omitted\n tools/test.py \"test/parallel/test-stream-*\"\n ```\n \n-The whildcard `*` can be used in any part of the path. For example, to run all tests\n+The wildcard `*` can be used in...
vuejs/vue
6,467
fix #6284: avoid iterating non-observable arrays
<!-- 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
aa820cba37b69772868c9cdb69235c424e23f529
null
low
[ { "filename": "src/core/observer/index.js", "patch": "@@ -157,7 +157,7 @@ export function defineReactive (\n if (childOb) {\n childOb.dep.depend()\n }\n- if (Array.isArray(value)) {\n+ if (Array.isArray(value) && Object.isExtensible(value)) {\n dependArray(v...
facebook/react
32,780
[compiler][snap] Fix test filter + watch mode
Accidentally broke this when migrating our test runner to use the bundled build https://github.com/facebook/react/pull/32758 The fix is pretty simple. File watcher should listen for changes in `packages/babel-plugin-react-compiler` instead of `cwd`, which is now `packages/snap`.
33999c43177e13580730c2fad94a77f4b0e08ef2
deb7859bb01831b68615c5e5416174eb4b4e0d58
12
medium
[ { "filename": "compiler/packages/snap/src/runner-watch.ts", "patch": "@@ -146,7 +146,7 @@ function subscribeFilterFile(\n state: RunnerState,\n onChange: (state: RunnerState) => void,\n ) {\n- watcher.subscribe(process.cwd(), async (err, events) => {\n+ watcher.subscribe(PROJECT_ROOT, async (err, even...
ggml-org/llama.cpp
18,862
llama : remove write/read of output ids/logits/embeddings
This commit removes the write/read of output ids, logits and embeddings from the llama context state.
null
2b6dfe824de8600c061ef91ce5cc5c307f97112c
null
low
[ { "filename": "common/common.cpp", "patch": "@@ -1760,3 +1760,65 @@ float lr_opt::get_lr(float epoch) const {\n LOG_INF(\"epoch %.2g lr=%.2g\\n\", epoch, r);\n return r;\n }\n+\n+bool common_replay_last_token(struct llama_context * ctx, llama_token last_token, int32_t pos) {\n+ llama_batch batch ...
vercel/next.js
87,443
fix: Change Dockerfile.bun to use group/useradd instead of addgroup/user
<!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm pr...
null
2446efeaa631e3262c714c72695d7db63d20b283
null
low
[ { "filename": "examples/with-docker/Dockerfile.bun", "patch": "@@ -37,8 +37,8 @@ ENV NODE_ENV=production \\\n PORT=3000 \\\n HOSTNAME=\"0.0.0.0\"\n \n-RUN addgroup --system --gid 1001 nodejs && \\\n- adduser --system --uid 1001 nextjs\n+RUN groupadd --system --gid 1001 nodejs && \\\n+ useradd ...
electron/electron
47,316
feat: context bridge support VideoFrame
#### Description of Change Add `VideoFrame` support for contextBridge. Split from #46811 #### Release Notes Notes: none
7a13c6f175c71afc1329a923896c3e7cc28d7905
095e622a6a694a5e309cfaa0e1d2e5c0c7dd8964
10
medium
[ { "filename": "docs/api/context-bridge.md", "patch": "@@ -157,6 +157,7 @@ has been included below for completeness:\n | [Cloneable Types](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm) | Simple | ✅ | ✅ | See the linked document on cloneable types |\n | `Element`...
huggingface/transformers
38,929
Enable XPU doc
Hi @SunMarc . This PR enables XPU torchao example in the doc, and also fixed a minor bug on the doc. Please review it. Thanks!
null
03db2700abf84971351c7374a548a9d4fc156916
null
low
[ { "filename": "docs/source/en/chat_templating_multimodal.md", "patch": "@@ -56,7 +56,7 @@ Create a [`ImageTextToTextPipeline`] and pass the chat to it. For large models,\n import torch\n from transformers import pipeline\n \n-pipeline = pipeline(\"image-text-to-text\", model=\"llava-hf/llava-onevision-qwen2...
vuejs/vue
6,346
Exclude not enumerable keys of inject object
<!-- 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...
f477ecdbbb1a86ffcf4508ab0f7351277a649a7e
3ee62fd59e20030dd63c08c2390e803d034928fe
19
medium
[ { "filename": "src/core/instance/inject.js", "patch": "@@ -41,7 +41,9 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n // inject is :any because flow is not smart enough to figure out cached\n const result = Object.create(null)\n const keys = hasSymbol\n- ? Refle...
ollama/ollama
6,910
OpenAI: accept additional headers to fix CORS error
Related to #4879 #4388 A few days ago, they introduced additional request header `X-Stainless-Retry-Count` in OpenAI JavaScript library in v4.63.0 and CORS problem is back again. https://github.com/openai/openai-node/pull/1087 https://github.com/openai/openai-node/blob/master/CHANGELOG.md#4630-2024-09-20 So we ...
null
31cb1ca9e567fac7f940d041d9c5f45032dd8972
null
low
[ { "filename": "server/routes.go", "patch": "@@ -1141,7 +1141,7 @@ func (s *Server) GenerateRoutes() http.Handler {\n \tconfig.AllowWildcard = true\n \tconfig.AllowBrowserExtensions = true\n \tconfig.AllowHeaders = []string{\"Authorization\", \"Content-Type\", \"User-Agent\", \"Accept\", \"X-Requested-With\"...
ggml-org/llama.cpp
19,783
cli : provide model with text filename
Provide model with text filename when using `/read`, helps it contextualize the contents, use the `FIM_FILE_SEP` token if it exists. Tested with various models with and without `FIM_SEP`, all acknowledging file name and type inferred from extension and path. Also adds `FIM_PAD` and `FIM_REPO` tokens to server con...
null
e8e261699a2a93b60f307d92aa788e47b6b2ebd7
null
low
[ { "filename": "tools/cli/cli.cpp", "patch": "@@ -380,6 +380,15 @@ int main(int argc, char ** argv) {\n console::error(\"file does not exist or cannot be opened: '%s'\\n\", fname.c_str());\n continue;\n }\n+ if (inf.fim_sep_token != LLAMA_TOKEN_NULL) {\n...
ollama/ollama
7,438
Add Powershell Community Tool
Added powershai, a powershell module with ollama support
25c9339e2d9cea413f2cb1b616e84dab89b81e59
78f779a3230dca950aca5701bad365322561540b
6
medium
[ { "filename": "README.md", "patch": "@@ -392,6 +392,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [bb7](https://github.com/drunkwcodes/bb7)\n - [SwollamaCLI](https://github.com/marcusziade/Swollama) bundled with the Swollama Swift package. [Demo](https://github.com/marcusziade/Swoll...
electron/electron
47,614
feat: add `app.isHardwareAccelerationEnabled()`
#### Description of Change This PR adds `app.isHardwareAccelerationEnabled()`, which can be used to determine whether hardware acceleration has been disabled either on the machine or via `app.disableHardwareAcceleration()`. #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x...
e766d378e1b22ce7ea656a1c0bae0e431bbf5b4d
b389377c6341870bb270a37178e811a1ce7baf37
16
medium
[ { "filename": "docs/api/app.md", "patch": "@@ -1215,6 +1215,13 @@ Disables hardware acceleration for current app.\n \n This method can only be called before app is ready.\n \n+### `app.isHardwareAccelerationEnabled()`\n+\n+Returns `boolean` - whether hardware acceleration is currently disabled.\n+\n+ > [!NO...
nodejs/node
55,275
util: add fast path for Latin1 decoding
I added a fast path for Latin1 (windows-1252) decoding to improve performance. This change avoids using the slower ICU-based decoding for Latin1 and instead utilizes a direct approach, similar to the fast path implemented for UTF-8. https://github.com/nodejs/performance/issues/178
null
20bcaa081be2a573474564966b492969e692571f
null
low
[ { "filename": "benchmark/util/text-decoder.js", "patch": "@@ -3,7 +3,7 @@\n const common = require('../common.js');\n \n const bench = common.createBenchmark(main, {\n- encoding: ['utf-8', 'latin1', 'iso-8859-3'],\n+ encoding: ['utf-8', 'windows-1252', 'iso-8859-3'],\n ignoreBOM: [0, 1],\n fatal: [0, ...
facebook/react
32,778
[release] Don't lookup build-info.json when updating version numbers
From what we can see, `build-info.json` is a vestigal file that we were previously including in builds but are no longer since 2022 (see https://github.com/facebook/react/pull/23257, which removes `build-info.json` which would have broken scripts/release/build-release-locally-commands/add-build-info-json.js). Since t...
null
1825990c5608f0ab0c1475b4292218a508a171c9
null
low
[ { "filename": "scripts/release/prepare-release-from-npm-commands/update-stable-version-numbers.js", "patch": "@@ -114,20 +114,6 @@ const run = async ({cwd, packages, version, ci}, versionsMap) => {\n clear();\n \n if (packages.includes('react')) {\n- // A separate \"React version\" is used for the em...
electron/electron
48,978
build: add header for SetStackDumpFirstChanceCallback in renderer client
#### Description of Change Fast follow to 48973, partially reverts #48860 . Adds the missing header for SetStackDumpFirstChanceCallback for release builds. #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [ ] PR description included and stakeholders cc'd - [ ]...
71be38f87f4f064b5f5e0ac1f6820645b07dc7f7
38090935117398fd4a619feda8f02940f11e6ac6
1
high
[ { "filename": "shell/renderer/electron_renderer_client.cc", "patch": "@@ -9,6 +9,7 @@\n #include \"base/base_switches.h\"\n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/debug/stack_trace.h\"\n #include \"content/public/renderer/render_frame.h\"\n #include \"ne...
vercel/next.js
87,703
fix(examples): resolve hydration mismatch in blog-starter
## What? Add `suppressHydrationWarning` to the `<html>` element in the blog-starter example. ## Why? The ThemeSwitcher script runs before React hydration and adds `dark` class and `data-mode` attribute to the `<html>` element, causing a hydration mismatch error. ## How? Add `suppressHydrationWarning` to the `<html>` ...
null
c68d18c507a278079581f54b13b2c98c79dc8374
null
low
[ { "filename": "examples/blog-starter/src/app/layout.tsx", "patch": "@@ -23,7 +23,7 @@ export default function RootLayout({\n children: React.ReactNode;\n }>) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" suppressHydrationWarning>\n <head>\n <link\n rel=\"apple-tou...
electron/electron
48,981
build: add header for SetStackDumpFirstChanceCallback in renderer client
Backport of #48978 See that PR for details. Notes: none
e8e41a28dd51d4fb84a36af4be66f61adc581fec
bb9c867f236f7148630379665628618eb4baed94
1
high
[ { "filename": "shell/renderer/electron_renderer_client.cc", "patch": "@@ -9,6 +9,7 @@\n #include \"base/base_switches.h\"\n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/debug/stack_trace.h\"\n #include \"content/public/renderer/render_frame.h\"\n #include \"ne...
ollama/ollama
7,805
runner.go: Fix deadlock with many concurrent requests
If there are no avilable slots for new sequences then a request will not be added to the processing queue but will continue on to wait for a response that never comes. Besides never giving a response to the request, this prevents the model from being unloaded due to the outstanding request. To prevent this, there ar...
b85520bfb9c9dd92056ecded55bf8c4cfd28088f
3478b2cf14c3fa2661c03f7fd5764a63a496293a
3
medium
[ { "filename": "llama/runner/runner.go", "patch": "@@ -300,6 +300,7 @@ func (s *Server) removeSequence(seqIndex int, reason string) {\n \tclose(seq.embedding)\n \tseq.cache.InUse = false\n \ts.seqs[seqIndex] = nil\n+\ts.seqsSem.Release(1)\n }\n \n func (s *Server) run(ctx context.Context) {\n@@ -649,7 +650,7...
electron/electron
48,980
build: add header for SetStackDumpFirstChanceCallback in renderer client
Backport of #48978 See that PR for details. Notes: none
eecca2cb199b481a891f83f6dfb946fb4849e4b9
d9c33a951a81ba778908b8d8b562e9249641b2e7
2
high
[ { "filename": "shell/renderer/electron_renderer_client.cc", "patch": "@@ -9,6 +9,7 @@\n #include \"base/base_switches.h\"\n #include \"base/command_line.h\"\n #include \"base/containers/contains.h\"\n+#include \"base/debug/stack_trace.h\"\n #include \"content/public/renderer/render_frame.h\"\n #include \"ne...
huggingface/transformers
42,139
update torchao doc
Update torchao doc for CPU and XPU based on https://github.com/pytorch/ao/issues/3300. Hi @stevhliu @SunMarc , would you please review the PR? Thanks!
null
f9e668abf363f5ca1b153d1db29556e074bda71c
null
low
[ { "filename": "docs/source/en/quantization/torchao.md", "patch": "@@ -329,7 +329,7 @@ from torchao.dtypes import Int4XPULayout\n from torchao.quantization.quant_primitives import ZeroPointDomain\n \n \n-quant_config = Int4WeightOnlyConfig(group_size=128, layout=Int4XPULayout(), zero_point_domain=ZeroPointDo...
vuejs/vue
6,573
fix typo
correct "a input" to "an input" <!-- 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?**...
null
3f42562de766a90f35ffa9a9efd1234814ad390c
null
low
[ { "filename": "dist/vue.js", "patch": "@@ -83,7 +83,7 @@ function toString (val) {\n }\n \n /**\n- * Convert a input value to a number for persistence.\n+ * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\n function toNumber (val) {", "addi...
ollama/ollama
7,785
server: remove out of date anonymous access check
In the past the ollama.com server would return a JWT that contained information about the user being authenticated. This was used to return different error messages to the user. This is no longer possible since the token used to authenticate does not contain information about the user anymore. Removing this code that n...
d88972ea48cfec20ebba6e0a86a825fca3ecb193
7b5585b9cbc5f803583ebd6a9627c563521c8970
3
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -19,7 +19,6 @@ import (\n \t\"os\"\n \t\"os/signal\"\n \t\"path/filepath\"\n-\t\"regexp\"\n \t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n@@ -35,14 +34,11 @@ import (\n \t\"golang.org/x/term\"\n \n \t\"github.com/ollama/ollama/api\"\n-\t\"github.com/ollama/ollama/au...
vercel/next.js
87,638
fix: correct quotes in dev script filter in package.json
### What? Fixes a pnpm workspace resolution error where the `dev` script attempted to filter `@next/bundle-analyzer-ui`, which is not defined as a workspace package, resulting in: `No package found with name '@next/bundle-analyzer-ui' in workspace` ### Why? When running `pnpm dev`, Turbo tries to resolve all ...
26cde2120ac741bbd3fed5f9d6ffa9569ceda3fd
c2001edd618aa61942271e1c9a5f9d8d1043888d
16
medium
[ { "filename": "package.json", "patch": "@@ -11,7 +11,7 @@\n \"clean\": \"lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'\",\n \"build\": \"turbo run build --remote-cache-timeout 60 --summarize true\",\n \"lerna\": \"lerna\",\n- \"dev\": \"tu...
ggml-org/llama.cpp
19,785
jinja: correct stats for tojson and string filters
Target fix https://github.com/ggml-org/llama.cpp/pull/18675 @pwilkin please give this a try (see the added test case for more info)
null
5452d736f80efae2062d60e9392ad9225ac227ba
null
low
[ { "filename": "common/jinja/runtime.cpp", "patch": "@@ -85,7 +85,7 @@ value identifier::execute_impl(context & ctx) {\n auto builtins = global_builtins();\n if (!it->is_undefined()) {\n if (ctx.is_get_stats) {\n- it->stats.used = true;\n+ value_t::stats_t::mark_used(it)...
vuejs/vue
6,577
fix: update packages readme links which point to 404
<!-- 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...
f323719f20d2e2e8f61c60a07080bbfa8b7c0273
1a19c418b1e71f39d2095d60de59fcd650719523
10
medium
[ { "filename": "packages/vue-server-renderer/README.md", "patch": "@@ -1,6 +1,6 @@\n # vue-server-renderer\n \n-> This package is auto-generated. For pull requests please see [src/entries/web-server-renderer.js](https://github.com/vuejs/vue/blob/dev/src/platforms/web/server-renderer.js).\n+> This package is ...
facebook/react
32,777
[release] Also split the onlyPackages param
I missed this the last time. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32777). * #32778 * __->__ #32777
null
1de32a5e75fe96ac3c1b728a117010e11673f6ed
null
low
[ { "filename": "scripts/release/prepare-release-from-npm-commands/parse-params.js", "patch": "@@ -56,6 +56,7 @@ module.exports = () => {\n const params = commandLineArgs(paramDefinitions);\n \n splitCommaParams(params.skipPackages);\n+ splitCommaParams(params.onlyPackages);\n \n return params;\n };", ...
vercel/next.js
87,637
Turbopack: Symlink handling follow-up
### What? * Run symlink glob tests with windows too * make link content os specific before comparing it with the old value
a3048c637116e3ef8c1468cbd19adb25a62a3720
faf81965b1386c01a513dd52f72e3460e876b8a0
4
medium
[ { "filename": "packages/next/src/build/utils.ts", "patch": "@@ -1276,7 +1276,7 @@ export async function copyTracedFiles(\n await fs.symlink(symlink, fileOutputPath)\n } catch (err: any) {\n // Windows doesn't support creating symlinks without elevated privileges, unle...
nodejs/node
60,806
test: fix embedtest in debug windows
When we run the embedding tests compiled for Windows debug it crashes with the error that you can see below. The crash happens when the code tries to create a snapshot that causes a GC run. At that moment the `v8::Isolate` is not locked to our thread and as a result debug-only V8 check causes the crash. This PR ex...
null
768f3ba32a3719070d1376341243e4cdf2383436
null
low
[ { "filename": "test/embedding/embedtest.cc", "patch": "@@ -210,23 +210,23 @@ int RunNodeInstance(MultiIsolatePlatform* platform,\n return 1;\n \n exit_code = node::SpinEventLoop(env).FromMaybe(1);\n- }\n-\n- if (!snapshot_blob_path.empty() && is_building_snapshot) {\n- snapshot = setup->Creat...
electron/electron
48,976
fix: revert enabling WASM trap handlers in all Node.js processes
Backport of #48973 See that PR for details. Notes: Fixed an issue where some apps would throw an exception on launch.
018876adde050dd9e93b0068f1830c3b91e3360f
e8e41a28dd51d4fb84a36af4be66f61adc581fec
28
medium
[ { "filename": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,7 +62,6 @@\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...
huggingface/transformers
41,556
fix check inputs for text2text pipeline
The pipeline should check generation_config before checking inputs. ```python import torch from transformers import pipeline, AutoTokenizer model_id = "sshleifer/distilbart-cnn-12-6" tokenizer = AutoTokenizer.from_pretrained(model_id) generator = pipeline( "summarization", model=model_id, tokeniz...
null
143acfe2ceb06b2bc39c2c59412949cfc4c8ed08
null
low
[ { "filename": "src/transformers/pipelines/text2text_generation.py", "patch": "@@ -194,17 +194,13 @@ def preprocess(self, inputs, truncation=TruncationStrategy.DO_NOT_TRUNCATE, **kw\n \n def _forward(self, model_inputs, **generate_kwargs):\n in_b, input_length = model_inputs[\"input_ids\"].shape\...
ollama/ollama
7,782
tests: fix max queue integration test
This had fallen out of sync with the envconfig behavior, where max queue default was not zero.
null
f0a351810c496d6ead14b3d3a9d4d536c4ae772a
null
low
[ { "filename": "integration/max_queue_test.go", "patch": "@@ -16,7 +16,6 @@ import (\n \t\"github.com/stretchr/testify/require\"\n \n \t\"github.com/ollama/ollama/api\"\n-\t\"github.com/ollama/ollama/envconfig\"\n )\n \n func TestMaxQueue(t *testing.T) {\n@@ -27,12 +26,8 @@ func TestMaxQueue(t *testing.T) {\...
ggml-org/llama.cpp
19,805
common : fix improper trimming in XML parser on complete message
Fix courtesy of @julio75012. Although his use case has already been fixed, I'm submitting this PR to address other models that exhibit similar behavior. The issue is that the XML parser trims partially matched tags. The reason `>` was trimmed from Seed-OSS is because `tool_sep = >`, and the reason a trailing `"` is ...
null
ed4837891d3a142d8806c3879afb5752f1254e98
null
low
[ { "filename": "common/chat-parser-xml-toolcall.cpp", "patch": "@@ -803,7 +803,7 @@ inline void parse_msg_with_xml_tool_calls(common_chat_msg_parser & builder, cons\n }\n \n // remove potential partial suffix\n- if (builder.pos() == builder.input().size()) {\n+ if (builder.pos()...
vuejs/vue
6,549
Fixed typo in changelog section
<!-- 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
b77a298cf3d20691a3b32eb8d7f62d2a67a430ae
null
low
[ { "filename": "README.md", "patch": "@@ -109,7 +109,7 @@ Please make sure to read the [Contributing Guide](https://github.com/vuejs/vue/b\n \n ## Changelog\n \n-Details changes for each release are documented in the [release notes](https://github.com/vuejs/vue/releases).\n+Detailed changes for each release ...
nodejs/node
60,867
doc: update debuglog examples to use 'foo-bar' instead of 'foo'
This is an example of a code error in a document,the `log` result is `FOO-BAR 3257: hi there, it's foo-bar [2333]`, so the `debuglog` string identifying is `foo-bar`.
bed8e2aa7480fa612599cb66b5741a01276d868e
7643c2a076a7f9e6262ef1813ec01f46c994f46b
29
medium
[ { "filename": "doc/api/util.md", "patch": "@@ -135,14 +135,14 @@ The `section` supports wildcard also:\n \n ```mjs\n import { debuglog } from 'node:util';\n-const log = debuglog('foo');\n+const log = debuglog('foo-bar');\n \n log('hi there, it\\'s foo-bar [%d]', 2333);\n ```\n \n ```cjs\n const { debuglog }...
vercel/next.js
87,606
Turbopack: Create junction points instead of symlinks on Windows
Next 16.1 changed Turbopack's external packaging to use symlinks. Symlinks require elevated privileges on Windows if "Developer Mode" is not enabled. We can work around this by using junction points, which are mostly equivalent, but: - They only work with directories. - They can only point to absolute paths, not rela...
null
a3048c637116e3ef8c1468cbd19adb25a62a3720
null
low
[ { "filename": "packages/next/src/build/utils.ts", "patch": "@@ -1274,9 +1274,29 @@ export async function copyTracedFiles(\n if (symlink) {\n try {\n await fs.symlink(symlink, fileOutputPath)\n- } catch (e: any) {\n- if (e.code !== 'EEXIST') {\n- ...
facebook/react
28,259
Add enableServerComponentKeys to NEXT_MAJOR
2bc7d336ae7db689699baeb1fffc2c03d8753ffe
5c08662301d99d1305e164c701fe8e4da1bc526c
25
medium
[ { "filename": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -15,8 +15,6 @@\n \n export const enableComponentStackLocations = true;\n \n-export const enableServerComponentKeys = __EXPERIMENTAL__;\n-\n // -----------------------------------------------------------------------------\n // Killswitch\n //...
huggingface/transformers
41,499
fix bnb model loading
```python from transformers import pipeline pipe = pipeline("text-generation", model="hugging-quants/Meta-Llama-3.1-8B-Instruct-BNB-NF4") ``` Before this PR: ``` Traceback (most recent call last): File "/home/jiqing/transformers/src/transformers/pipelines/base.py", line 262, in load_model model = mode...
b44d91570fb4a5cf8a58150c7935a4edde82e27f
ac7777be1675a46a4355142f6f48bf641e069bfb
20
medium
[ { "filename": "src/transformers/quantizers/auto.py", "patch": "@@ -126,6 +126,12 @@ def from_dict(cls, quantization_config_dict: dict):\n \"The model's quantization config from the arguments has no `quant_method` attribute. Make sure that the model has been correctly quantized\"\n ...
electron/electron
48,973
fix: revert enabling WASM trap handlers in all Node.js processes
#### Description of Change Addresses https://github.com/electron/electron/issues/48956 Looking into the dmp file stacktrace attached to the above issue, the wasm trap handlers appear to be crashing shortly after app launch. This PR reverts the change while we investigate and find a forward fix. This reverts co...
null
71be38f87f4f064b5f5e0ac1f6820645b07dc7f7
null
low
[ { "filename": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,7 +62,6 @@\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...
ollama/ollama
7,783
logs: explain client aborts better
Users get confused by "Failed to acquire semaphore" error="context canceled" messages in the logs, which are actually clients giving up. While there could be a legitimate hang bug in the system, sometimes this is just short client timeouts with an overloaded system, so this should help users understand what's going on...
null
b85520bfb9c9dd92056ecded55bf8c4cfd28088f
null
low
[ { "filename": "llama/runner/runner.go", "patch": "@@ -651,7 +651,11 @@ func (s *Server) completion(w http.ResponseWriter, r *http.Request) {\n \n \t// Ensure that a place to put the sequence is available\n \tif err := s.seqsSem.Acquire(r.Context(), 1); err != nil {\n-\t\tslog.Error(\"Failed to acquire semap...
ggml-org/llama.cpp
19,773
server : merge contiguous Responses input items into a single assistant message
The Responses API endpoint constructs separate chat completion messages for each input item, except for reasoning. This causes problems with many chat templates that expect content, reasoning, and tool calls to appear in a single assistant message. This PR merges contiguous assistant inputs into a single message bef...
c5897995a726dc9ebdafd91d4cd552b95f4ac199
34ec1c3f182712302f55deca023e465a18a4897c
22
medium
[ { "filename": "tools/server/server-common.cpp", "patch": "@@ -1105,6 +1105,8 @@ json convert_responses_to_chatcmpl(const json & response_body) {\n };\n \n for (json item : input_value) {\n+ bool merge_prev = !chatcmpl_messages.empty() && chatcmpl_messages.back().value(\"role\", \"...
ollama/ollama
6,931
Added Local Multimodal AI Chat link to README.md
Ollama-based LLM Chat with support for multiple features, including PDF RAG, voice chat, image-based interactions, and integration with OpenAI.
84b3e07f1be8f7ed6c76d15d75efc358b382b2af
25c9339e2d9cea413f2cb1b616e84dab89b81e59
2
high
[ { "filename": "README.md", "patch": "@@ -338,6 +338,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [crewAI with Mesop](https://github.com/rapidarchitect/ollama-crew-mesop) (Mesop Web Interface to run crewAI with Ollama)\n - [Tkinter-based client](https://github.com/chyok/ollama-gui) ...
electron/electron
48,975
fix: revert enabling WASM trap handlers in all Node.js processes
Backport of #48973 See that PR for details. Notes: Fixed an issue where some apps would throw an exception on launch.
d62c3245670e7e70a584de576658a0efdef4b9f8
eecca2cb199b481a891f83f6dfb946fb4849e4b9
14
medium
[ { "filename": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,7 +62,6 @@\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...
vuejs/vue
6,477
add EsModuleComponent definition
<!-- 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
0b2929a3d69eb39c188112d2ccd18c2b8fde155c
null
low
[ { "filename": "types/options.d.ts", "patch": "@@ -6,10 +6,15 @@ type Constructor = {\n }\n \n export type Component = typeof Vue | ComponentOptions<Vue> | FunctionalComponentOptions;\n+\n+interface EsModuleComponent {\n+ default: Component\n+}\n+\n export type AsyncComponent = (\n resolve: (component: Co...
nodejs/node
60,863
build: enable maglev for Linux on s390x
maglev was enabled by default for Linux on s390x in upstream V8 in 13.1 by http://crrev.com/c/5899453. Marking as semver-major for consistency with https://github.com/nodejs/node/pull/51360. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEA...
null
3c92ee1008a30edaefd1e4b87e62b14edafd114f
null
low
[ { "filename": "configure.py", "patch": "@@ -55,7 +55,7 @@\n valid_mips_float_abi = ('soft', 'hard')\n valid_intl_modes = ('none', 'small-icu', 'full-icu', 'system-icu')\n icu_versions = json.loads((tools_path / 'icu' / 'icu_versions.json').read_text(encoding='utf-8'))\n-maglev_enabled_architectures = ('x64'...
facebook/react
28,673
Revert "Remove zoom from special cases list"
Reverts facebook/react#26631 This got specced: https://github.com/w3c/csswg-drafts/pull/9699 I left msZoom because it seems plausible someone will still be using it for backwards compat.
f24cf4a1af4e677dd85fce66001eee42b75b1cf7
19c7c2929be68f87cfa6b7947c4ab9ffc5608e48
30
medium
[ { "filename": "packages/react-dom-bindings/src/shared/isUnitlessNumber.js", "patch": "@@ -46,6 +46,7 @@ const unitlessNumbers = new Set([\n 'tabSize',\n 'widows',\n 'zIndex',\n+ 'zoom',\n 'fillOpacity', // SVG-related properties\n 'floodOpacity',\n 'stopOpacity',\n@@ -60,6 +61,7 @@ const unitle...
huggingface/transformers
40,638
fix pipeline dtype
The dtype in the pipeline does not work if I don't pass device_map. To reproduce the error: ```python from transformers import pipeline import torch image_to_text = pipeline( "image-feature-extraction", model="google/vit-base-patch16-224-in21k", dtype=torch.bfloat16, ) print(ima...
null
f2416b4fd2bff6eacb9f655be8f5c56be65ddb84
null
low
[ { "filename": "src/transformers/pipelines/__init__.py", "patch": "@@ -995,29 +995,29 @@ def pipeline(\n )\n model_kwargs[\"device_map\"] = device_map\n \n- # BC for the `torch_dtype` argument\n- if (torch_dtype := kwargs.get(\"torch_dtype\")) is not None:\n+ # BC for the...
vercel/next.js
87,325
bundle analyzer: remove uncompressed toggle, stabilize top bar ui
This: - Removes the uncompressed/compressed toggle in favor of just using compressed sizes when sizing treemap nodes - Fixes the width of the client/server and file type triggers so that they don't reflow horizontally when their content changes Fixes PACK-6295 Fixes PACK-6298
39c6cbb208f20ea7b1318e05906528d590040df3
71f9a8c65c00d048f0592ae764c0fb6e1d7d8354
27
medium
[ { "filename": "apps/bundle-analyzer/app/page.tsx", "patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import type React from 'react'\n-import { SizeMode } from '@/lib/treemap-layout'\n \n import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n@@ -25,9 +24,8 @@ import { AnalyzeData, Modu...
vuejs/vue
6,450
close #6447: fix type checking for primitive wrapper objects
<!-- 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...
8fc6bc882708a725693b50a55f56cfde653ee48d
679cd1fef448989bf645313c391e4134ecd9f593
16
medium
[ { "filename": "src/core/util/props.js", "patch": "@@ -145,7 +145,12 @@ function assertType (value: any, type: Function): {\n let valid\n const expectedType = getType(type)\n if (simpleCheckRE.test(expectedType)) {\n- valid = typeof value === expectedType.toLowerCase()\n+ const t = typeof value\n...
ggml-org/llama.cpp
19,804
Fix wrong cli-argument in documentation
The CLI option does not exist, as described in #19786. Closes #19786
null
cacc371f99fb3b5b431d3fa89ac0c752bbd62a3b
null
low
[ { "filename": "tools/server/webui/README.md", "patch": "@@ -101,7 +101,7 @@ In a separate terminal, start the backend server:\n ./llama-server -m model.gguf\n \n # Multi-model (ROUTER mode)\n-./llama-server --model-store /path/to/models\n+./llama-server --models-dir /path/to/models\n ```\n \n ### 3. Start D...
facebook/react
28,306
Enable disableJavaScriptURLs for RN
This is DOM only
14fd9630ee04387f4361da289393234e2b7d93b6
4867a3365e9d2f19c795463caa5a6294c2915269
3
medium
[ { "filename": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -44,7 +44,7 @@ export const enableBinaryFlight = true;\n export const enableTaint = true;\n export const enablePostpone = false;\n export const debugRenderPhaseSideEffectsForStrictMode = __DEV__;\n-export const disableJavaScr...
ollama/ollama
7,310
Update google/uuid module
Also, simplify `uuid.New().String()` with `uuid.NewString()`.
null
597072ef1b4a569150a90ea7f1924d90a8649db2
null
low
[ { "filename": "app/store/store.go", "patch": "@@ -64,7 +64,7 @@ func initStore() {\n \t\tslog.Debug(fmt.Sprintf(\"unexpected error searching for store: %s\", err))\n \t}\n \tslog.Debug(\"initializing new store\")\n-\tstore.ID = uuid.New().String()\n+\tstore.ID = uuid.NewString()\n \twriteStore(getStorePath(...
ollama/ollama
7,325
added ollamarama-matrix to community integrations
422d52858cbb2f6ed9151b46cb35479179e5bcc3
84b3e07f1be8f7ed6c76d15d75efc358b382b2af
1
high
[ { "filename": "README.md", "patch": "@@ -344,6 +344,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Web management](https://github.com/lemonit-eric-mao/ollama-web-management) (Web management page)\n - [Promptery](https://github.com/promptery/promptery) (desktop client for Ollama.)\n ...
electron/electron
48,961
test: add `view.getBounds|setBounds` tests
Backport of #48936 See that PR for details. Notes: none
null
08b5ef556c5ea73219c46504abd99b6e645a1a20
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
28,436
Make enableClientRenderFallbackOnText dynamic
66c8346401d271588e4c400921c5dab5478fc623
239d06e2b8b0f2dabd6bc154e5f24d594ac5840d
6
medium
[ { "filename": "packages/shared/forks/ReactFeatureFlags.www-dynamic.js", "patch": "@@ -30,7 +30,7 @@ export const enableUseDeferredValueInitialArg = __VARIANT__;\n export const enableRenderableContext = __VARIANT__;\n export const useModernStrictMode = __VARIANT__;\n export const enableRefAsProp = __VARIANT_...
ollama/ollama
5,191
Adding introduction of x-cmd/ollama module
Introducing x-cmd/ollama module in the README page. This is the demo: https://www.x-cmd.com/mod/ollama Thank you.
723f285813f504375f0e6be6c76edfbaaabd961f
422d52858cbb2f6ed9151b46cb35479179e5bcc3
1
high
[ { "filename": "README.md", "patch": "@@ -386,6 +386,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 ...
nodejs/node
60,855
doc: fix typos in changelogs
I know we can't fix the parts that are commit messages, but I believe the rest of the text is editable. Am I misremembering? (Full disclosure: I'm actually just opening this to make sure the github-bot updates worked. But we might as well fix the typos anyway.) <!-- Before submitting a pull request, please read:...
null
01d5a38a6097a2d7423fc436ad8c96d8e4e0c3fe
null
low
[ { "filename": "doc/changelogs/CHANGELOG_V12.md", "patch": "@@ -1883,7 +1883,7 @@ consumption.\n #### Increase of the default server headers timeout\n \n The default value of `server.headersTimeout` for `http` and `https` servers was\n-increased from `40000` to `60000` (60 seconds). This to accomodate for sy...
ggml-org/llama.cpp
19,803
model: Add Kanana-2 model support
*Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR* This PR adds support for following Kanana-2 model family: - [kakaocorp/kanana-2-30b-a3b-instruct-2601](https://huggingface.co/kakaocorp/kanana-2-30b-a3b-instruct-2601) - [kaka...
237958db339300bdd8028608cc08b2ba2685ec33
ae2368e74eb2c280629ce6cf80edb88d72d23495
18
medium
[ { "filename": "convert_hf_to_gguf.py", "patch": "@@ -1274,6 +1274,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"b4b8ca1f9769494fbd956ebc4c249de6131fb277a4a3345a7a92c7dd7a55808d\":\n # ref: https://huggingface.co/jdopensource/JoyAI-LLM-Flash\n res = \"j...
facebook/react
28,430
[RN] Move unifiedSyncLane back to dynamic
This surfaced a bug because it wasn't on everywhere, moving back to dynamic while we investigate the bug
aaa4acb1280fcda398defb805db47a8623df6c0f
98b8359f656ef714cc44828d7bfd2409ca16b9b3
1
medium
[ { "filename": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js", "patch": "@@ -26,6 +26,7 @@ export const enableDeferRootSchedulingToMicrotask = __VARIANT__;\n export const enableUseRefAccessWarning = __VARIANT__;\n export const passChildrenWhenCloningPersistedNodes = __VARIANT__;\n export cons...
ggml-org/llama.cpp
19,808
ci : fix rocm archive name
cont: #19784 Sigh, forgot one. :(
e877ad8bd9e2f147d8f8244511b852cdade27953
9f0684f003f0feae3436293d9d9686f190105729
2
high
[ { "filename": ".github/workflows/release.yml", "patch": "@@ -604,7 +604,7 @@ jobs:\n id: pack_artifacts\n run: |\n cp LICENSE ./build/bin/\n- tar -czvf llama-bin-ubuntu-rocm-${{ matrix.ROCM_VERSION }}-${{ matrix.build }}.tar.gz --transform \"s,./,llama-${{ steps.tag.output...
vuejs/vue
6,414
singleAttrAssign regular expression subpattern
Why cancel the subpattern when defining singleAttrAssign and then add subpattern when joining the strings... weather it's necessary... <!-- 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 ...
null
31d3ec62ceb40da4375c10c5bd02a7a8fee9fcc7
null
low
[ { "filename": "src/compiler/parser/html-parser.js", "patch": "@@ -14,7 +14,7 @@ import { isNonPhrasingTag } from 'web/compiler/util'\n \n // Regular Expressions for parsing tags and attributes\n const singleAttrIdentifier = /([^\\s\"'<>/=]+)/\n-const singleAttrAssign = /(?:=)/\n+const singleAttrAssign = /(=...