repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
huggingface/transformers | 2ca506ca1db3a20ef0d74b989edface7aecdef80 | 5426947e3aa2272439b7b25684a5dad5db0f096a | Fix chat schema tests (#41793)
* Fix chat schema tests
* make fixup | [
{
"path": "src/transformers/utils/chat_parsing_utils.py",
"patch": "@@ -55,7 +55,7 @@ def recursive_parse(\n return None\n \n # If not, we have to do a little parsing. First, set some vars and do basic validation\n- node_type = node_schema[\"type\"]\n+ node_type = node_schema.get(\"type\")... | 2025-10-22T15:00:49 |
vuejs/vue | 3209f6f517a4fa44c563cd7cc048fa29be1bc930 | be076173d059e52517b8e079d6948c22e49b9a2d | remove parent/ref elm references when destroying instance, fix memory leak (fix vue-router#1279) | [
{
"path": "src/core/instance/lifecycle.js",
"patch": "@@ -119,15 +119,18 @@ export function lifecycleMixin (Vue: Class<Component>) {\n }\n // call the last hook...\n vm._isDestroyed = true\n+ // invoke destroy hooks on current rendered tree\n+ vm.__patch__(vm._vnode, null)\n+ // fire de... | 2017-03-27T01:49:05 |
ggml-org/llama.cpp | 2b9bd9bf4e759c05db629ec1c391dc8aeaa71887 | 59fc1ec8e83b14354c1a3a8acf8c5c2cbf9af42f | sycl: add ROLL operation support (#16665)
* sycl: add ROLL operation support
- Implement ggml_sycl_roll function for F32 tensors
- Add multi-axis roll operation with SYCL kernel
- Support all 4 tensor dimensions with proper shift normalization
- Add roll.cpp and roll.hpp to SYCL backend
- Update backend dispatch and ... | [
{
"path": "ggml/src/ggml-sycl/backend.hpp",
"patch": "@@ -32,6 +32,7 @@\n #include \"pad.hpp\"\n #include \"quantize.hpp\"\n #include \"quants.hpp\"\n+#include \"roll.hpp\"\n #include \"rope.hpp\"\n #include \"set_rows.hpp\"\n #include \"softmax.hpp\"",
"additions": 1,
"deletions": 0,
"language"... | 2025-10-27T01:20:24 |
huggingface/transformers | 5426947e3aa2272439b7b25684a5dad5db0f096a | 93671b4444414b01ea034bd64614856644297a66 | fix type annotation typo in docstring (#41788) | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -319,7 +319,7 @@ class Trainer:\n `torch.Generator` for the randomization that must be identical on all processes (and the Trainer will\n manually set the seed of this `generator` at each epoch) or have a `set_epoch()` method that... | 2025-10-22T13:58:18 |
denoland/deno | 501c6592c9268291b2d6e5479a2f4498f12807f0 | 1c4204cc254671da16e777b13a9ae2bdcf268bad | fix(ext/node): emit error event for worker with missing main module (#32062)
Fixes `test-worker-esm-missing-main.js` test
---------
Signed-off-by: Divy <dj.srivastava23@gmail.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/node/ops/worker_threads.rs",
"patch": "@@ -86,21 +86,17 @@ pub fn op_worker_threads_filename<TSys: ExtNodeSys + 'static>(\n let path = ensure_read_permission(state, Cow::Borrowed(path))\n .map_err(WorkerThreadsFilenameError::Permission)?;\n let sys = state.borrow::<TSys>();\n- ... | 2026-02-07T15:07:13 |
ggml-org/llama.cpp | 59fc1ec8e83b14354c1a3a8acf8c5c2cbf9af42f | 75d33b9302f84a5b89f82205d2bcd8def5a64e0a | sycl: add REPEAT_BACK operation support (#16734)
* SYCL repeat_back v1 — add core op + switch case
* Implement repeat_back SYCL operation and minor fixes
* Update ggml/src/ggml-sycl/repeat_back.cpp
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* Update ggml/src/ggml-sycl/repeat_back.hpp
Co-author... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -48,6 +48,7 @@\n #include \"ggml-sycl/set.hpp\"\n #include \"ggml-sycl/sycl_hw.hpp\"\n #include \"ggml-sycl/getrows.hpp\"\n+#include \"ggml-sycl/repeat_back.hpp\"\n #include \"ggml-sycl/quantize.hpp\"\n #include \"ggml.h\"\n \n@@ -2615,6 +2616,10 @@... | 2025-10-27T01:19:50 |
vuejs/vue | be076173d059e52517b8e079d6948c22e49b9a2d | 8a518c1efdcf48576135bf8fd2f8aa1950e8ec76 | fix a typo (#5284) | [
{
"path": "src/core/vdom/create-component.js",
"patch": "@@ -296,7 +296,7 @@ function extractProps (data: VNodeData, Ctor: Class<Component>, tag?: string): ?\n ) {\n tip(\n `Prop \"${keyInLowerCase}\" is passed to component ` +\n- `${formatComponentName(tag || Ctor)}... | 2017-03-25T14:36:00 |
huggingface/transformers | 93671b4444414b01ea034bd64614856644297a66 | 18a3349a9f953b2d9ca34c03558b2de201f9a0e9 | Swap columns and rows of the grid layout in LFM2-VL (#41755)
* swap columns and rows of the grid layout
* update integration tests
* fix the test case
* revert batched test change | [
{
"path": "src/transformers/models/lfm2_vl/image_processing_lfm2_vl_fast.py",
"patch": "@@ -391,7 +391,7 @@ def resize_and_split(\n \n # Big image will be cropped into patches and small images are just resized\n if is_image_large and do_image_splitting:\n- images, num_rows, num_co... | 2025-10-22T12:52:06 |
ollama/ollama | 434a6f9d46aef19d50306adc6e7cba20538db989 | 84725ec7e3195e0d9ef2dece5ff4f8d8db5fb472 | return last error | [
{
"path": "server/download.go",
"patch": "@@ -149,9 +149,10 @@ func (b *blobDownload) run(ctx context.Context, requestURL *url.URL, opts *Regis\n \n \t\ti := i\n \t\tg.Go(func() error {\n+\t\t\tvar err error\n \t\t\tfor try := 0; try < maxRetries; try++ {\n \t\t\t\tw := io.NewOffsetWriter(file, part.StartsA... | 2023-11-03T23:49:51 |
vuejs/vue | f4630d0105a80473d48dcfe35a7eaefe6f1a9b36 | 5222f06a2ce537d3ad19ba70f27770aceb5d8c69 | treat <input> with different types as different nodes (fix #5266) | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -34,15 +34,26 @@ function isTrue (v) {\n return v === true\n }\n \n-function sameVnode (vnode1, vnode2) {\n+function sameVnode (a, b) {\n return (\n- vnode1.key === vnode2.key &&\n- vnode1.tag === vnode2.tag &&\n- vnode1.isComment === vnode2.isCo... | 2017-03-24T03:54:52 |
ggml-org/llama.cpp | bbac6a26b2bd7f7c1f0831cb1e7b52734c66673b | 73a48c9790d320476b3e5ef75bda09f2f8269e6e | ggml: fix cuda kernel launch configuration for k_compute_batched_ptrs to support large batch (#16744)
* fix k_compute_batched_ptrs
* add backend ops test
* Update ggml/src/ggml-cuda/ggml-cuda.cu
Co-authored-by: Johannes Gäßler <johannesg@5d6.de>
* reduce the batch size
---------
Co-authored-by: Johannes Gäßler <... | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -1957,8 +1957,15 @@ static void ggml_cuda_mul_mat_batched_cublas_impl(ggml_backend_cuda_context & ct\n \n size_t src1_stride_size = sizeof(cuda_t);\n \n- dim3 block_dims(ne13, ne12);\n- k_compute_batched_ptrs<<<1, block_dims, 0,... | 2025-10-26T18:13:31 |
huggingface/transformers | e9f241bf89bb0638709d61a046c39b4dc5d8c714 | 7cd1d2b66ca118ea032d517ddb3ec31543354177 | [quantization] fix compressed_tensors tests (#41780)
fixing tests | [
{
"path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py",
"patch": "@@ -85,7 +85,11 @@ def _has_nested_attr(obj, attr_path):\n )\n else:\n self.assertTrue(\n- torch.a... | 2025-10-22T10:37:07 |
ollama/ollama | fe5a8724443edcee92e1c44ce9b11ad4586531be | d39709260f29a8a556430b9edcb0ec5c33213595 | fix upload | [
{
"path": "server/images.go",
"patch": "@@ -1188,15 +1188,19 @@ func makeRequestWithRetry(ctx context.Context, method string, requestURL *url.UR\n \n \t\t\tregOpts.Token = token\n \t\t\tif body != nil {\n-\t\t\t\tif _, err := body.Seek(0, io.SeekStart); err != nil {\n-\t\t\t\t\treturn nil, err\n-\t\t\t\t}\n... | 2023-11-02T20:22:42 |
ggml-org/llama.cpp | 3cfa9c3f125763305b4226bc032f1954f08990dc | 5d195f17bc60eacc15cfb929f9403cf29ccdf419 | vulkan: deduplicate Microsoft Direct3D12 devices (#16689)
* fix: deduplicate and deprioritize Microsoft Direct3D12 vulkan devices from the `vulkan-dozen` driver
* style: indent
* fix: decrease priority
* fix: switch to `||` | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -4733,7 +4733,14 @@ static void ggml_vk_instance_init() {\n vk::PhysicalDeviceIDProperties old_id;\n old_props.pNext = &old_id;\n devices[k].getProperties2(&old_props);\n- ... | 2025-10-26T04:37:38 |
vuejs/vue | 70db229a49e0d541a66caa1eccba41768d0b486a | 23a058ed13e7faa667ada2b96e242eb7488b601c | handle v-model on password input field on ie9 (fix #5250) (#5253) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -28,7 +28,7 @@ export default {\n if (isIE || isEdge) {\n setTimeout(cb, 0)\n }\n- } else if (vnode.tag === 'textarea' || el.type === 'text') {\n+ } else if (vnode.tag === 'textarea' || el.type === 'text' || el... | 2017-03-23T04:00:44 |
huggingface/transformers | 7cd1d2b66ca118ea032d517ddb3ec31543354177 | 48a36c96da1148e4fbb28b23b233c05ccf2516db | [v5] Delete legacy chat template saving (#41648)
* delete lagcy chat template saving
* fix tests
* fix qwen audio | [
{
"path": "src/transformers/processing_utils.py",
"patch": "@@ -772,8 +772,6 @@ def save_pretrained(self, save_directory, push_to_hub: bool = False, **kwargs):\n kwargs (`dict[str, Any]`, *optional*):\n Additional key word arguments passed along to the [`~utils.PushToHubMixin.pus... | 2025-10-22T09:40:55 |
denoland/deno | 84339a857ff49edbd4db464399fd832b7795ed1f | 6d18b1bb18b26870be026bf0d3c552b70e8702dc | fix(ext/node): unref child_process stdio streams by default (#32071)
With this fix, Pipe.unref() also propagates to the stream in
`[kStreamBaseField]`, so esbuild's unref calls reach the StreamResource
and the event loop can exit properly. | [
{
"path": "ext/node/polyfills/internal_binding/pipe_wrap.ts",
"patch": "@@ -416,12 +416,20 @@ export class Pipe extends ConnectionWrap {\n if (this.#listener) {\n this.#listener.ref();\n }\n+ const stream = this[kStreamBaseField];\n+ if (stream && typeof stream.ref === \"function\") {\n+... | 2026-02-06T13:03:06 |
vuejs/vue | 23a058ed13e7faa667ada2b96e242eb7488b601c | 7dea9f1eb266a3c3ef4d55adb1ff74ea0db70a36 | fix(inject): change warn message when trying to mutate an injected value (#5243) | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -34,9 +34,9 @@ export function initInjections (vm: Component) {\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, source._provided[provideKey], () => {\n warn(\n- `Avoid mutating a... | 2017-03-21T12:26:22 |
ggml-org/llama.cpp | 5d195f17bc60eacc15cfb929f9403cf29ccdf419 | 226f295f4dd92ad714533adc5497afed5fa88bb8 | convert : handle mmproj filename/path properly (#16760)
* convert: handle mmproj model output filename properly
* remove redundant commits
* Add model_type to gguf utility
* Use mmproj- prefix instead of suffix
* Apply CISC suggestion
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
---------
Co-a... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1497,6 +1497,17 @@ def get_audio_config(self) -> dict[str, Any] | None:\n def set_type(self):\n self.gguf_writer.add_type(gguf.GGUFType.MMPROJ)\n \n+ def prepare_metadata(self, vocab_only: bool):\n+ super().prepare_metadata(vocab_only=vo... | 2025-10-25T18:41:36 |
huggingface/transformers | 48a36c96da1148e4fbb28b23b233c05ccf2516db | 9a273028038bea9601be52985dfb969f0877ab59 | fix: Gemma 3 weights conversion vision and multimodal projector paths (#41767)
fix: Gemma 3 vision and multimodal projector paths | [
{
"path": "src/transformers/models/gemma3/convert_gemma3_weights.py",
"patch": "@@ -447,7 +447,7 @@ def convert_transformer_weights(\n return zip([], [])\n else:\n raise ValueError(f\"Unexpected member, {prop}, in Embedder.\")\n- elif path.startswith(f\"{_TRANSFORMER_EMBED... | 2025-10-22T09:38:56 |
denoland/deno | 22b7401bb499c5dae4cfe231301aafba34264a41 | cc6422dc6605424a3d32a4c39071f5e894bc6578 | fix: support loading `npm:` and `jsr:` specifiers in required ES modules (#31974) | [
{
"path": "Cargo.lock",
"patch": "@@ -1905,9 +1905,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.383.0\"\n+version = \"0.385.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ee60c193b9e93726558e20dca14b36db7fccfebdf4479271e834e52709d101c... | 2026-02-06T01:18:18 |
ggml-org/llama.cpp | 55945d2ef51b93821d4b6f4a9b994393344a90db | 0bcb40b48c6fc6f17ba9672625e526ab2574344b | ggml: fix CUDA grid launch condition for large block_nums.y in binbcast (#16742)
* Fix CUDA grid launch condition for large block_nums.y
* add backend ops test
* reduce test repetitions | [
{
"path": "ggml/src/ggml-cuda/binbcast.cu",
"patch": "@@ -272,7 +272,7 @@ static void launch_bin_bcast_pack(const ggml_tensor * src0, const ggml_tensor *\n const uint3 ne12 = init_fastdiv_values((uint32_t) cne1[2]);\n const uint3 ne13 = init_fastdiv_values((uint32_t) cne1[3]);\n \n- i... | 2025-10-24T19:39:37 |
ollama/ollama | c4cc738cbfd1cc0481aac9626c34c7b604c7e7fd | 2c6189f4fe5c3a00454c7fe6a6e42c4d98a144a4 | fix log | [
{
"path": "server/upload.go",
"patch": "@@ -104,7 +104,7 @@ func (b *blobUpload) Prepare(ctx context.Context, requestURL *url.URL, opts *Reg\n \t\toffset += size\n \t}\n \n-\tlog.Printf(\"uploading %s in %d %s part(s)\", b.Digest[7:19], len(b.Parts), format.HumanBytes(size))\n+\tlog.Printf(\"uploading %s in... | 2023-11-02T00:18:03 |
vuejs/vue | 7dea9f1eb266a3c3ef4d55adb1ff74ea0db70a36 | 4c4a2ab65f6dde0802c7d0ee7fd3200c45316488 | fix provide isn't reactive with a single array (#5229)
* fix provide isn't reactive with a single array - Fix #5223
* add warning when injections has been modified | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -1,6 +1,8 @@\n /* @flow */\n \n import { hasSymbol } from 'core/util/env'\n+import { warn } from '../util/index'\n+import { defineReactive } from '../observer/index'\n \n export function initProvide (vm: Component) {\n const provide = vm.$options.provi... | 2017-03-21T07:22:32 |
huggingface/transformers | 9a273028038bea9601be52985dfb969f0877ab59 | 4f8781f84f41c289df4863940f088f4823084443 | Fix CUDA index out of bounds for q_idx in VLM token type masking for Gemma3, PaliGemma, and example modular (#41757)
* Fix CUDA index out of bounds for q_idx in Gemma3 token type masking
* Fix CUDA index out of bounds for q_idx in modular modeling_new_task_model
* Revert "Fix CUDA index out of bounds for q_idx in Ge... | [
{
"path": "examples/modular-transformers/modeling_new_task_model.py",
"patch": "@@ -125,15 +125,23 @@ def inner_mask(batch_idx: int, head_idx: int, q_idx: int, kv_idx: int) -> bool:\n # If it's 1 for both query and key/value, we are in an image block\n # NOTE: static cache shape goes beyond ... | 2025-10-22T09:29:47 |
denoland/deno | cc6422dc6605424a3d32a4c39071f5e894bc6578 | cb0b84c4dedf600db7089018b28f4b43ec996a3e | fix(ext/node): fix 'test-worker-process-{argv,env}.js' tests (#32065)
Done with @claude | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -49,16 +49,16 @@ const {\n encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n- JSONParse,\n- JSONStringify,\n NumberIsFinite,\n ObjectHasOwn,\n+ ObjectKeys,\n ObjectPrototypeIsPrototypeOf,\n PromiseReject,\n PromiseResolv... | 2026-02-05T23:56:54 |
ggml-org/llama.cpp | 69e9ff010309a1155d704cf9320bdb3aaf4160ca | 5a91109a5d7dab5d7adc40bedb397ede99a705b1 | webui: support q URL parameter (#16728)
* webui: support q URL parameter
Fixes #16722
I’ve checked that it works with Firefox’s AI tools
* webui: apply suggestions from code review
Co-authored-by: Aleksander Grygier <aleksander.grygier@gmail.com>
* chore: update webui static build
---------
Co-authored-by: Aleks... | [
{
"path": "tools/server/webui/src/routes/+page.svelte",
"patch": "@@ -2,13 +2,21 @@\n \timport { ChatScreen } from '$lib/components/app';\n \timport { chatStore, isInitialized } from '$lib/stores/chat.svelte';\n \timport { onMount } from 'svelte';\n+\timport { page } from '$app/state';\n+\n+\tlet qParam = $... | 2025-10-24T12:10:29 |
huggingface/transformers | a8cece13e29057fc9712543402d73e78796b306d | 2e67a9b602a8aa5fcf9f82e25b4e331f3328976c | Fix bark after #41445 (#41645)
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "src/transformers/models/bark/modeling_bark.py",
"patch": "@@ -1318,7 +1318,7 @@ def generate(\n output sound according to specific predefined voice.\n \"\"\"\n )\n-class BarkModel(BarkPreTrainedModel):\n+class BarkModel(BarkPreTrainedModel, GenerationMixin):\n config: BarkConfig\n \n ... | 2025-10-22T07:21:45 |
denoland/deno | cb0b84c4dedf600db7089018b28f4b43ec996a3e | 42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7 | fix(ext/otel): use correct severity for `console.trace` (#32068)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "ext/telemetry/lib.rs",
"patch": "@@ -1277,7 +1277,8 @@ fn op_otel_log<'s>(\n ..=0 => Severity::Debug,\n 1 => Severity::Info,\n 2 => Severity::Warn,\n- 3.. => Severity::Error,\n+ 3 | 5.. => Severity::Error,\n+ 4 => Severity::Trace,\n };\n \n let mut log_record = LogRecord:... | 2026-02-05T23:25:36 |
vuejs/vue | 4c4a2ab65f6dde0802c7d0ee7fd3200c45316488 | e733e5cee8585fdf4a0c0e5e77e7816befa24ad4 | trigger event after reassigned state - Fix #5191 (#5233) | [
{
"path": "src/core/observer/scheduler.js",
"patch": "@@ -69,10 +69,14 @@ function flushSchedulerQueue () {\n }\n }\n \n+ // reset scheduler before updated hook called\n+ const oldQueue = queue.slice()\n+ resetSchedulerState()\n+\n // call updated hooks\n- index = queue.length\n+ index = oldQue... | 2017-03-21T07:20:57 |
ggml-org/llama.cpp | f8f071faddf32ea09f4234edb6e809b380a9ee26 | 0bf47a1dbba4d36f2aff4e8c34b06210ba34e688 | convert : handle pre-quantized models (#14810)
* convert : begin handling pre-quantized models
* convert : fix conversion from FP8 for Deepseek-V3.1-Base | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -90,10 +90,8 @@ class ModelBase:\n use_temp_file: bool\n lazy: bool\n dry_run: bool\n- part_names: list[str]\n- is_safetensors: bool\n hparams: dict[str, Any]\n- tensor_names: set[str] | None\n+ model_tensors: dict[str, Callable[[],... | 2025-10-23T20:31:41 |
ollama/ollama | bf6786bb398d81ed482e9cd3176fd629787edabc | ad88799411f2e928e09085ec8885fc84c2e9e4f1 | fix tautology | [
{
"path": "cmd/cmd.go",
"patch": "@@ -102,16 +102,14 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \tname := args[0]\n \t// check if the model exists on the server\n \t_, err = client.Show(context.Background(), &api.ShowRequest{Name: name})\n-\tif err != nil {\n-\t\tvar statusError api.Sta... | 2023-11-01T03:49:48 |
huggingface/transformers | 264cce9e0a2930afed7b346e84f9359839443b63 | 3f2db2c205efcee683e80e5390e01323e4bf37ea | Chat response parsing (#40894)
* Initial commit
* Adding more tests, bugfixes, starting tool tests
* Add support for JSON parsers and some tool tests
* stash commit
* stash commit
* stash commit
* stash commit
* stash commit
* Fix cohere schema, fix a lot of the recursive parser code
* GPT-OSS passing too!
*... | [
{
"path": "docs/source/en/_toctree.yml",
"patch": "@@ -88,6 +88,8 @@\n title: Tool use\n - local: chat_templating_writing\n title: Writing a chat template\n+ - local: chat_response_parsing\n+ title: Response parsing\n title: Chat with models\n - sections:\n - local: serving... | 2025-10-21T16:26:18 |
denoland/deno | 42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7 | 5afc23e70d382be37938c4be69b422d7a8b7d1e1 | fix(ext/node): validate execArgv and NODE_OPTIONS in worker_threads (#32066)
Fixes `test-worker-execargv-invalid.js` test
---------
Signed-off-by: Divy <dj.srivastava23@gmail.com> | [
{
"path": "ext/node/polyfills/internal/errors.ts",
"patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_INVALID_EXEC_ARGV\n * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen... | 2026-02-05T18:09:03 |
vuejs/vue | e733e5cee8585fdf4a0c0e5e77e7816befa24ad4 | 84856a3a767084fa5b93a85ea5e75720f84d370e | fix SSR v-show render. (#5224)
* fix SSR v-show bug. v-show info needs to be merged from parent to child component
* improve variable name
* update test case
* update test case | [
{
"path": "src/server/render.js",
"patch": "@@ -144,6 +144,22 @@ function hasAncestorData (node: VNode) {\n return parentNode && (parentNode.data || hasAncestorData(parentNode))\n }\n \n+function getVShowDirectiveInfo (node: VNode): ?VNodeDirective {\n+ let dir: VNodeDirective\n+ let tmp\n+\n+ while (n... | 2017-03-21T01:50:26 |
ggml-org/llama.cpp | dd62dcfab97e420949519fd0eac9fca7bf97e635 | d0660f237a5c31771a3d6d1030ebe3e0c409ba92 | convert : Make mistral-common dependency optional (#16738)
* Make mistral-common dependency optional
* Fix typing | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -29,12 +29,29 @@\n sys.path.insert(1, str(Path(__file__).parent / 'gguf-py'))\n import gguf\n from gguf.vocab import MistralTokenizerType, MistralVocab\n-from mistral_common.tokens.tokenizers.base import TokenizerVersion\n-from mistral_common.tokens.tokeni... | 2025-10-23T13:54:46 |
huggingface/transformers | 1d651c749e0a89743025211b9211e87908018c70 | f39355ec23ce701b642f71c9df183c18989332eb | Modernize CLIP modeling code (#41546)
* stranded
* update modular
* modularities
* update
* fx broken
* fx stillb roken
* update
* missed this
* fix metaclip | [
{
"path": "src/transformers/models/clip/modeling_clip.py",
"patch": "@@ -26,7 +26,17 @@\n from ...modeling_layers import GradientCheckpointingLayer\n from ...modeling_outputs import BaseModelOutput, BaseModelOutputWithPooling, ImageClassifierOutput\n from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, Pr... | 2025-10-21T14:04:43 |
ggml-org/llama.cpp | d0660f237a5c31771a3d6d1030ebe3e0c409ba92 | fe6a9882acf5c02f96624ed8f80144100d7006cb | mtmd-cli : allow using --jinja (#16718)
* mtmd-cli : allow using --jinja
* support -sys
* implement chat_history
* fix clear memory
* rm -sys support, added TODO | [
{
"path": "common/arg.cpp",
"patch": "@@ -3435,7 +3435,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n [](common_params & params) {\n params.use_jinja = true;\n }\n- ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_MAIN}).set_env(\"LL... | 2025-10-23T13:00:49 |
denoland/deno | 5afc23e70d382be37938c4be69b422d7a8b7d1e1 | 0baa1a65746e97dd030e291f65c3013b936b0462 | fix(ext/node): emit error event for worker_threads terminal errors (#32052) | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -246,6 +246,16 @@ class NodeWorker extends EventEmitter {\n switch (type) {\n case 1: { // TerminalError\n this.#status = \"CLOSED\";\n+ if (this.listenerCount(\"error\") > 0) {\n+ const err = new Erro... | 2026-02-05T12:09:45 |
vuejs/vue | 59a372229b014de8cd610973f9428da63e2d72cc | 26f196780cf4846522dd48db512389c8840f8366 | also catch error in data() (close #5198) | [
{
"path": "src/core/instance/state.js",
"patch": "@@ -7,18 +7,19 @@ import {\n set,\n del,\n observe,\n- defineReactive,\n- observerState\n+ observerState,\n+ defineReactive\n } from '../observer/index'\n \n import {\n warn,\n+ bind,\n+ noop,\n hasOwn,\n isReserved,\n- isPlainObject,\n- ... | 2017-03-17T03:46:37 |
ollama/ollama | 874bb31986ad723487c95fed12a0c3c8a70f4e8e | f9a42811248620106adea733ab3713f631c84ae5 | Fix conversion command for gptneox (#948) | [
{
"path": "docs/import.md",
"patch": "@@ -185,7 +185,7 @@ python convert.py <path to model directory>\n python convert-falcon-hf-to-gguf.py <path to model directory>\n \n # GPTNeoXForCausalLM\n-python convert-falcon-hf-to-gguf.py <path to model directory>\n+python convert-gptneox-hf-to-gguf.py <path to mode... | 2023-10-30T18:34:29 |
vuejs/vue | 26f196780cf4846522dd48db512389c8840f8366 | 29445153e37a3bf973ce10594fcc7cced4707686 | always use uid when calling performance.mark (fix #5209) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -14,14 +14,18 @@ let uid = 0\n \n export function initMixin (Vue: Class<Component>) {\n Vue.prototype._init = function (options?: Object) {\n+ const vm: Component = this\n+ // a uid\n+ vm._uid = uid++\n+\n /* istanbul ignore if */\n+ let ... | 2017-03-17T03:37:17 |
ollama/ollama | f7856a57ebd87f473842d458d5e077ffab5fa47f | 8d03bd7b54c69d3aee3a07020ff4fe828faf988e | fix: private gpt example was broken due to changes in chroma
Signed-off-by: Matt Williams <m@technovangelist.com> | [
{
"path": "examples/langchain-python-rag-privategpt/constants.py",
"patch": "@@ -6,7 +6,7 @@\n \n # Define the Chroma settings\n CHROMA_SETTINGS = Settings(\n- chroma_db_impl='duckdb+parquet',\n+ # chroma_db_impl='duckdb+parquet',\n persist_directory=PERSIST_DIRECTORY,\n anonym... | 2023-10-30T17:56:25 |
denoland/deno | 0baa1a65746e97dd030e291f65c3013b936b0462 | f7cb82042ad14573ceb1dac261607f7a5ff764c4 | fix(ext/node): add `worker.cpuUsage([prev])` API (#32050) | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -4,6 +4,7 @@\n import { core, internals, primordials } from \"ext:core/mod.js\";\n import {\n op_create_worker,\n+ op_host_get_worker_cpu_usage,\n op_host_post_message,\n op_host_recv_ctrl,\n op_host_recv_message,\n@@ -25,6 +26,12 @@ im... | 2026-02-05T12:09:13 |
denoland/deno | f7cb82042ad14573ceb1dac261607f7a5ff764c4 | 83d7b0c5ec1248d6af17bd73f061bce576e96e64 | fix(ext/node): propagate worker exit code from process.exit() (#32061)
Enables `test-worker-esm-exit.js` test
---------
Signed-off-by: Divy <dj.srivastava23@gmail.com> | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -249,7 +249,7 @@ class NodeWorker extends EventEmitter {\n this.#status = \"CLOSED\";\n if (!this.#exited) {\n this.#exited = true;\n- this.emit(\"exit\", 0);\n+ this.emit(\"exit\", data ?? 0... | 2026-02-05T09:05:17 |
vuejs/vue | 45e273fa02623de480aa8a92f4d002f500d8c09d | d185dd294c99fc01fd6521201f3362ba41e75060 | fix perf measure regression for nested components of the same name (fix #5181) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -16,7 +16,7 @@ export function initMixin (Vue: Class<Component>) {\n Vue.prototype._init = function (options?: Object) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n- mark('init')\... | 2017-03-13T15:06:03 |
ollama/ollama | 9ec16f0f037720bb36681cb7534c078c6285c976 | 57a58db1b0cfb253de31724e756f23bde9a61650 | fix formatting when exiting `ollama run` | [
{
"path": "cmd/cmd.go",
"patch": "@@ -561,6 +561,7 @@ func generateInteractive(cmd *cobra.Command, model string) error {\n \t\tline, err := scanner.Readline()\n \t\tswitch {\n \t\tcase errors.Is(err, io.EOF):\n+\t\t\tfmt.Println()\n \t\t\treturn nil\n \t\tcase errors.Is(err, readline.ErrInterrupt):\n \t\t\t... | 2023-10-28T04:26:23 |
ggml-org/llama.cpp | 9de9672adb0f4ca4e39483ac3ffed52b3f70a55d | 63d2fc46e17a06be5b4b5823a5ada088317f1f0a | sycl: use async memory allocation to fix crashes during graph recording (#16644)
* sycl: use async memory allocation to fix graph recording failures
GGML_SYCL_DISABLE_GRAPHS=0 causes crashes because:
- Host waits are currently unsupported in graph recording mode.
- SYCL malloc / free calls are unsupported in grap... | [
{
"path": "ggml/src/ggml-sycl/ggml-sycl.cpp",
"patch": "@@ -30,6 +30,9 @@\n #include <regex>\n \n #include <sycl/sycl.hpp>\n+#if defined(GGML_SYCL_GRAPH) && SYCL_EXT_ONEAPI_ASYNC_MEMORY_ALLOC\n+# include <sycl/ext/oneapi/experimental/async_alloc/async_alloc.hpp>\n+#endif\n #include <sycl/half_type.hpp>\n... | 2025-10-23T01:05:15 |
huggingface/transformers | f39355ec23ce701b642f71c9df183c18989332eb | 5995435d96ace8bbf7f95623e5a7487990280fd1 | [v5] Remove deprecated tranformers.onnx (#41700)
* Remove deprecated tranformers.onnx
* Remove transformers.onnx related doc
* style
* shouldn't have been removed
* fix mismatch between metaclip2 modular en config file
* remove onnx config from not_doctested.txt
---------
Co-authored-by: Yih-Dar <2521628+ydshie... | [
{
"path": "docs/source/ar/serialization.md",
"patch": "@@ -32,7 +32,7 @@\n لتصدير نموذج 🤗 Transformers إلى ONNX، قم أولاً بتثبيت اعتماد إضافي:\n \n ```bash\n-pip install optimum[exporters]\n+pip install optimum-onnx\n ```\n \n للاطلاع على جميع المعامﻻت المتاحة، يرجى الرجوع إلى [وثائق 🤗 Optimum](https://hu... | 2025-10-21T13:22:41 |
vuejs/vue | c6ab2e06d418d171cda27bedf6864cffdaa7cac0 | 025e76312409b5e29f2023847b68ab03ce070625 | warn when template contains text outside root element (#5164)
* warn when template contains text outside root element
* fix warned flag
* make warn once a function | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -63,6 +63,13 @@ export function parse (\n let inPre = false\n let warned = false\n \n+ function warnOnce (msg) {\n+ if (!warned) {\n+ warned = true\n+ warn(msg)\n+ }\n+ }\n+\n function endPre (element) {\n // check pre state\... | 2017-03-13T07:42:46 |
denoland/deno | 83d7b0c5ec1248d6af17bd73f061bce576e96e64 | 2a46e203ddbbff5840cbb14ee2a77893c05bdb24 | fix(ext/node): Fix `.only` tests compatibilty (#32043)
Only tests in Node.js are filtered from running instead of erroring out.
This patch adds an option in Deno's test runner to skip santizing only
tests. | [
{
"path": "cli/js/40_test.js",
"patch": "@@ -314,6 +314,7 @@ function testInner(\n testDesc.location.lineNumber,\n testDesc.location.columnNumber,\n registerTestIdRetBufU8,\n+ testDesc.sanitizeOnly ?? true,\n );\n testDesc.id = registerTestIdRetBuf[0];\n testDesc.origin = cachedOrigin;"... | 2026-02-05T09:03:22 |
ollama/ollama | 474860961114c9255db80be88abe7a089eca679f | c0dcea1398792218e5faa3b4e6f6c9f7fa49dd21 | Don't quit ioloop on `NUL` character (#940)
* dont quit ioloop on 0 rune
* check for closed channel
* remove unused error on `Close()` | [
{
"path": "readline/buffer.go",
"patch": "@@ -45,7 +45,7 @@ func (b *Buffer) MoveLeft() {\n \t\tif b.Pos%b.LineWidth == 0 {\n \t\t\tfmt.Printf(CursorUp + CursorBOL + cursorRightN(b.Width))\n \t\t} else {\n-\t\t\tfmt.Printf(CursorLeft)\n+\t\t\tfmt.Print(CursorLeft)\n \t\t}\n \t\tb.Pos -= 1\n \t}\n@@ -78,7 +7... | 2023-10-28T03:01:48 |
ggml-org/llama.cpp | 63d2fc46e17a06be5b4b5823a5ada088317f1f0a | a2e0088d9242bd9e57f8b852b05a6e47843b5a45 | Add experimental ggml-hexagon backend for the Hexagon NPU (#16547)
* model: add support for extra bufs for all devices
* hexagon: add experimental ggml-hexagon backend for the Hexagon NPU
This commit introduces a new experimental backend `ggml-hexagon` with support for the Hexagon NPU.
Highlights:
- Supports Hexago... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -1305,6 +1305,81 @@ jobs:\n cd examples/llama.android\n ./gradlew build --no-daemon\n \n+ android-ndk-build:\n+ runs-on: ubuntu-latest\n+\n+ env:\n+ OPENCL_VERSION: 2025.07.22\n+\n+ strategy:\n+ matrix:\n+ i... | 2025-10-22T20:47:09 |
huggingface/transformers | 2383f3fcbbf53aef4bcef4ba2fcaaded789b964b | c4e88f78ca9d4d7467446836c290f568bde30f7e | Fix graphormer model compilation with Cython 3.1.4 (#41671)
Hitting this kind of error when running:
```
cython src/transformers/models/deprecated/graphormer/algos_graphormer.pyx
```
```
Error compiling Cython file:
------------------------------------------------------------
...
(nrows, ncols) = path.shape
... | [
{
"path": "src/transformers/models/deprecated/graphormer/algos_graphormer.pyx",
"patch": "@@ -85,8 +85,8 @@ def gen_edge_input(max_dist, path, edge_feat):\n cdef unsigned int n = nrows\n cdef unsigned int max_dist_copy = max_dist\n \n- path_copy = path.astype(long, order='C', casting='safe', copy... | 2025-10-21T12:02:23 |
vuejs/vue | 4d227b98d054aa64d361b957d8c4cdeaea18031a | a6e1ae0aac4ebf2c22d39cf6fe2d28623a373de1 | turn off perf timeline measuring by default + reduce its impact on dev time perf (fix #5174) | [
{
"path": "src/core/config.js",
"patch": "@@ -48,7 +48,7 @@ const config: Config = {\n /**\n * Whether to record perf\n */\n- performance: process.env.NODE_ENV !== 'production',\n+ performance: false,\n \n /**\n * Error handler for watcher errors",
"additions": 1,
"deletions": 1,
... | 2017-03-13T07:37:57 |
denoland/deno | f84c762373bb2248924781e6a907847e54880fba | 533c5058380616b1755f1b42fb3c9a4c37a52f1c | fix(ext/node): handle raw fd instead rid in isatty (#31912)
Previously, isatty(fd) was calling core.isTerminal(fd) which expected a Deno resource ID, but Node.js APIs pass raw OS file descriptors. For fd 0, 1, 2 (stdin/stdout/stderr) this happened to work because rid === fd, but it would fail for higher fds. | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -369,6 +369,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_package_imports_resolve<TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n+ ... | 2026-02-04T20:03:29 |
huggingface/transformers | ede7976cd2462ce868a0058c339c6b21baf7fc04 | ee3a1002e2a3a4b60b66a1f9b034fbbe00c60e87 | Fixed incorrect model_type for qwen2vl and qwen2.5vl when config is saved and loaded again (#41758)
* fixed incorrect model_type for qwen2vl and qwen2.5vl
* added tests | [
{
"path": "src/transformers/models/qwen2_5_vl/configuration_qwen2_5_vl.py",
"patch": "@@ -313,6 +313,8 @@ def __setattr__(self, key, value):\n \n def __getattribute__(self, key):\n if \"text_config\" in super().__getattribute__(\"__dict__\") and key not in [\n+ \"_name_or_path\",\n+ ... | 2025-10-21T10:54:58 |
ggml-org/llama.cpp | 9b9201f65a22c02cee8e300f58f480a588591227 | 19a5a3edfd306516cc419679d69d6435943b6816 | webui: introduce OpenAI-compatible model selector in JSON payload (#16562)
* webui: introduce OpenAI-compatible model selector in JSON payload
* webui: restore OpenAI-Compatible model source of truth and unify metadata capture
This change re-establishes a single, reliable source of truth for the active model:
fully ... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatForm/ChatFormActions.svelte",
"patch": "@@ -3,6 +3,8 @@\n \timport { Button } from '$lib/components/ui/button';\n \timport ChatFormActionFileAttachments from './ChatFormActionFileAttachments.svelte';\n \timport ChatFormActionRecord from './ChatFo... | 2025-10-22T14:58:23 |
vuejs/vue | a6e1ae0aac4ebf2c22d39cf6fe2d28623a373de1 | e7dfcc334d6f6513d2ed1cddfa28a08796e07df7 | v-bind object should have lower priority than explicit bindings (fix #5150) | [
{
"path": "src/core/instance/render-helpers/bind-object-props.js",
"patch": "@@ -22,14 +22,17 @@ export function bindObjectProps (\n if (Array.isArray(value)) {\n value = toObject(value)\n }\n+ let hash\n for (const key in value) {\n if (key === 'class' || key === 'sty... | 2017-03-10T08:04:43 |
denoland/deno | 533c5058380616b1755f1b42fb3c9a4c37a52f1c | 943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23 | feat(upgrade): add context to error messages for better troubleshooting (#32018)
Fixes denoland/deno#31995
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwancz... | [
{
"path": "cli/tools/upgrade.rs",
"patch": "@@ -484,7 +484,8 @@ pub async fn upgrade(\n let factory = CliFactory::from_flags(flags);\n let http_client_provider = factory.http_client_provider();\n let client = http_client_provider.get_or_create()?;\n- let current_exe_path = std::env::current_exe()?;\n... | 2026-02-04T18:42:26 |
huggingface/transformers | ee3a1002e2a3a4b60b66a1f9b034fbbe00c60e87 | 4e50b8459d981ddcbc9438e85cff8d83fe40a500 | [v5] Delete `videos` from image processing classes (#41607)
* delete
* why there were video tests in image file
* fix tests and copies
* docs and autto class | [
{
"path": "docs/source/en/model_doc/instructblipvideo.md",
"patch": "@@ -63,11 +63,6 @@ The attributes can be obtained from model config, as `model.config.num_query_tok\n [[autodoc]] InstructBlipVideoVideoProcessor\n - preprocess\n \n-## InstructBlipVideoImageProcessor\n-\n-[[autodoc]] InstructBlipVideo... | 2025-10-21T10:03:31 |
vuejs/vue | e7dfcc334d6f6513d2ed1cddfa28a08796e07df7 | 0b964c844034d12e20b367df4263f22b77ce93a8 | fix custom directive arg fall through (fix #5162) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -427,7 +427,7 @@ function processComponent (el) {\n \n function processAttrs (el) {\n const list = el.attrsList\n- let i, l, name, rawName, value, arg, modifiers, isProp\n+ let i, l, name, rawName, value, modifiers, isProp\n for (i = 0, l = list.l... | 2017-03-10T07:55:31 |
ggml-org/llama.cpp | d8eaa26e4d9228df3aa46a930db60c8eaab67c1b | 9285325ce0174631c3cd6121d56084adc4ef2d8f | tests : fix test-thread-safety when compiling with multiple backends (#16699)
* run one test per backend/device (even if it's the same device) | [
{
"path": "tests/test-thread-safety.cpp",
"patch": "@@ -3,6 +3,7 @@\n // - Creates n_parallel (--parallel) contexts per model\n // - Runs inference in parallel on each context\n \n+#include <array>\n #include <thread>\n #include <vector>\n #include <atomic>\n@@ -38,13 +39,14 @@ int main(int argc, char ** ar... | 2025-10-22T10:01:22 |
ollama/ollama | 5b2cf16397d302f97a079ec925adb0e81bcc2bd5 | deeac961bb78e53102d33497c210953123497bc4 | fix docker build annotations (#917) | [
{
"path": "readline/term_bsd.go",
"patch": "@@ -1,4 +1,4 @@\n-// go build darwin dragonfly freebsd netbsd openbsd\n+//go:build darwin || freebsd || netbsd || openbsd\n package readline\n \n import (",
"additions": 1,
"deletions": 1,
"language": "Go"
},
{
"path": "readline/term_linux.go",... | 2023-10-26T19:00:33 |
denoland/deno | 943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23 | 846c34e119d4c8600ff41f42446e3633c7bd3a75 | fix(ext/node): implement Symbol.asyncDispose for node Worker (#32051)
Fixes parallel/test-worker-dispose.mjs test | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -49,6 +49,7 @@ const {\n StringPrototypeStartsWith,\n StringPrototypeTrim,\n Symbol,\n+ SymbolAsyncDispose,\n SymbolFor,\n SymbolIterator,\n TypeError,\n@@ -339,6 +340,10 @@ class NodeWorker extends EventEmitter {\n return Promi... | 2026-02-04T17:10:05 |
huggingface/transformers | 6850ba853f4a41c843d47e954064b5919a946585 | bf0bce8d5fcbabcde86e63c2634e87ef8c2614dc | Small Fix for imports (#41411)
small fix | [
{
"path": "src/transformers/utils/import_utils.py",
"patch": "@@ -46,7 +46,9 @@\n \n def _is_package_available(pkg_name: str, return_version: bool = False) -> tuple[bool, str] | bool:\n \"\"\"Check if `pkg_name` exist, and optionally try to get its version\"\"\"\n- package_exists = importlib.util.fin... | 2025-10-20T15:21:04 |
vuejs/vue | 4964b253d0dac29578458b8f1fd9dced4828be0c | f9706dc288c33db168e91dc1f61310ede4a5ee66 | fix wrong order of generate modifier code (#5147)
* fix wrong order of generate modifier code
* add unit test of #5146
* Update events.js | [
{
"path": "src/compiler/codegen/events.js",
"patch": "@@ -63,10 +63,11 @@ function genHandler (\n : `function($event){${handler.value}}` // inline statement\n } else {\n let code = ''\n+ let genModifierCode = ''\n const keys = []\n for (const key in handler.modifiers) {\n if (mo... | 2017-03-10T01:42:14 |
ggml-org/llama.cpp | 9285325ce0174631c3cd6121d56084adc4ef2d8f | 03792ad93609fc67e41041c6347d9aa14e5e0d74 | CUDA: fix bug in topk-moe softmax (#16711) | [
{
"path": "ggml/src/ggml-cuda/topk-moe.cu",
"patch": "@@ -141,7 +141,7 @@ __launch_bounds__(4 * WARP_SIZE, 1) __global__ void topk_moe_cuda(const float *\n wt_sum = warp_reduce_sum(wt_sum);\n const float inv_sum = 1.0f / wt_sum;\n \n- for (int i = threadIdx.x; i < n_exper... | 2025-10-22T04:33:08 |
ollama/ollama | 910816a532ad993fca5163a0ddf8981624c5521a | deeac961bb78e53102d33497c210953123497bc4 | fix(download): no retry when out of space | [
{
"path": "server/download.go",
"patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n+\t\"syscall\"\n \t\"time\"\n \n \t\"golang.org/x/sync/errgroup\"\n@@ -158,7 +159,8 @@ func (b *blobDownload) run(ctx context.Context, requestURL *url.URL, opts *Regis\n \t\t\t\tw := io.New... | 2023-10-26T18:34:02 |
denoland/deno | 4f776721191a91d58845ded6a4236ca84f04cf22 | 60814fb3995f096bab2713f052e740b2049ef41d | fix: `deno info` npm subpath import (#32056)
Prevent circular redirects in the output of `deno info --json` | [
{
"path": "cli/tools/info.rs",
"patch": "@@ -345,8 +345,11 @@ fn add_npm_packages_to_json(\n .map(|path| format!(\"/{}\", path))\n .unwrap_or_default()\n );\n- redirects_to_add\n- .push((specifier.to_string(), new_specifier.clone()));\n+ ... | 2026-02-04T16:53:27 |
huggingface/transformers | 2cf8f833b08efecfce3a2d2f690d43f821eec7b6 | 517197f795e3b44229bdf226d4cddf5240cc644a | Fix documentation issues (#41726)
Fix more documentation issues
Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> | [
{
"path": "docs/source/en/executorch.md",
"patch": "@@ -18,7 +18,7 @@ rendered properly in your Markdown viewer.\n \n [ExecuTorch](https://pytorch.org/executorch/stable/index.html) runs PyTorch models on mobile and edge devices. Export your Transformers models to the ExecuTorch format with [Optimum ExecuTor... | 2025-10-20T13:31:02 |
ggml-org/llama.cpp | 51d1a8c997bd2629ef211a30208058ea87a30982 | 4926419c4d74a1cf724e7163d937eb72f36e7b26 | CUDA: better error for FA kernel with 0 occupancy (#16643) | [
{
"path": "ggml/src/ggml-cuda/fattn-common.cuh",
"patch": "@@ -895,6 +895,7 @@ void launch_fattn(\n const dim3 block_dim(warp_size, nwarps, 1);\n int max_blocks_per_sm = 1; // Max. number of active blocks limited by occupancy.\n CUDA_CHECK(cudaOccupancyMaxActiveBlocksPerMultiprocessor(&max_block... | 2025-10-21T13:27:53 |
ollama/ollama | 28c3f288e2fedbeaabc8b67f04371b743cb74f62 | deeac961bb78e53102d33497c210953123497bc4 | client: fix trailing slash | [
{
"path": "api/client.go",
"patch": "@@ -44,14 +44,24 @@ func checkError(resp *http.Response, body []byte) error {\n }\n \n func ClientFromEnvironment() (*Client, error) {\n+\tdefaultPort := \"11434\"\n+\n \tscheme, hostport, ok := strings.Cut(os.Getenv(\"OLLAMA_HOST\"), \"://\")\n-\tif !ok {\n+\tswitch {\n... | 2023-10-26T17:47:41 |
vuejs/vue | f9706dc288c33db168e91dc1f61310ede4a5ee66 | 8fca83d6b6e5b74a507c0b631ed5c09a36131ab1 | fix v-on unit test (#5144) | [
{
"path": "test/unit/features/directives/on.spec.js",
"patch": "@@ -1,11 +1,10 @@\n import Vue from 'vue'\n \n describe('Directive v-on', () => {\n- let vm, spy, spy2, el\n+ let vm, spy, el\n \n beforeEach(() => {\n spy = jasmine.createSpy()\n- spy2 = jasmine.createSpy()\n el = document.creat... | 2017-03-10T01:40:04 |
denoland/deno | 60814fb3995f096bab2713f052e740b2049ef41d | 4a9ae62b521f06b57b923e48a15113274cc897a6 | fix(node/crypto): randomBytes returns buffer with dedicated ArrayBuffer (#32048)
Fixes denoland/deno#32047
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
Co-authored-by: littledivy <34997667+lit... | [
{
"path": "ext/node/polyfills/internal/crypto/_randomBytes.ts",
"patch": "@@ -24,7 +24,7 @@ function generateRandomBytes(size: number) {\n );\n }\n \n- const bytes = Buffer.allocUnsafe(size);\n+ const bytes = Buffer.allocUnsafeSlow(size);\n \n //Work around for getRandomValues max generation\n i... | 2026-02-04T16:13:36 |
huggingface/transformers | 517197f795e3b44229bdf226d4cddf5240cc644a | 9d4ee18e25a33afe72c8ff81d589dc3bbb252eda | Update type hints in tokenization_utils.py to use | syntax (#41713)
* Update type hints to use | syntax for Union types
- Replace Union[str, os.PathLike] with str | os.PathLike
- Replace Optional[Union[str, dict]] with str | dict | None
- Keep Union for forward references like 'torch.dtype'
- Update imports to remove... | [
{
"path": "src/transformers/configuration_utils.py",
"patch": "@@ -390,7 +390,7 @@ def _attn_implementation(self):\n return self._attn_implementation_internal\n \n @_attn_implementation.setter\n- def _attn_implementation(self, value: Optional[Union[str, dict]]):\n+ def _attn_implementation... | 2025-10-20T13:24:16 |
ggml-org/llama.cpp | 6ea37f57391d27736c35cd3c20c1f990b7952b74 | fb349848f387f355450c3187556e71e6d32c145f | opencl: fix warnings and clean up profiling (#16688)
* opencl: remove unused headers, fix warnings
* opencl: clean up profiling, only keep kernel time | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -15,13 +15,12 @@\n \n #include <CL/cl.h>\n \n+#include <inttypes.h>\n #include <string.h>\n \n #include <cstddef>\n #include <cstdint>\n-#include <atomic>\n #include <fstream>\n-#include <limits>\n #include <vector>\n #include <string>\n #includ... | 2025-10-21T05:26:17 |
ollama/ollama | 49443e7da5138fe9d7fc6790b94119a6e1d1f971 | bb8464c0d2ad3221dd8586212b9c8f2f1b2a8a52 | fix typo in `README.md` | [
{
"path": "README.md",
"patch": "@@ -88,7 +88,7 @@ See the [guide](docs/import.md) on importing models for more information.\n \n ### Customize a prompt\n \n-Models from the Ollama library can be customized with a prompt. The example\n+Models from the Ollama library can be customized with a prompt. For exam... | 2023-10-25T23:19:21 |
vuejs/vue | 8fca83d6b6e5b74a507c0b631ed5c09a36131ab1 | 82bc8b7429d58efd517d1b064fbbf78eb888d85d | fix #5121: parse content in textarea as plaintext (#5143)
* fix #5121: parse content in textarea as plaintext
* update comment | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isScriptOrStyle = makeMap('script,style', true)\n+const isPlainTextElement = makeMap('script,style,textarea', true)\n const reCache =... | 2017-03-10T01:39:38 |
huggingface/transformers | ce4ffeeb6c39a9e7e2e62e23606d0b83b9a49b96 | cb6f03fce4d1f096982f222add598c9625bf9d79 | Fix typo in LFM-VL (#41742)
oops, remove untrelated commits | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -1941,7 +1941,7 @@ def _supports_default_dynamic_cache(cls) -> bool:\n \"minimax\",\n \"xlnet\",\n \"lfm2\",\n- \"lfm2-vl\",\n+ \"lfm2_vl\",\n ]\n ... | 2025-10-20T11:55:41 |
denoland/deno | 4a9ae62b521f06b57b923e48a15113274cc897a6 | 1b424993ce6e2fa5f7c89a691dd5d13f77977103 | fix: unstable_cron_socket_serve_reject flakiness caused by control socket coordination (#32053) | [
{
"path": "tests/specs/run/unstable_cron_socket_serve_reject/test_runner.js",
"patch": "@@ -23,8 +23,21 @@ const mainProcess = new Deno.Command(Deno.execPath(), {\n },\n }).spawn();\n \n-// Give Deno a moment to start and create its control socket\n-await new Promise((resolve) => setTimeout(resolve, 100))... | 2026-02-04T15:45:31 |
ollama/ollama | bb8464c0d2ad3221dd8586212b9c8f2f1b2a8a52 | daa5bb4473daf5f0b4a8cc60158bf80d1394d662 | update golang.org/x/net fixes CVE-2023-3978,CVE-2023-39325,CVE-2023-44487 (#855) | [
{
"path": "go.mod",
"patch": "@@ -39,12 +39,12 @@ require (\n \tgithub.com/twitchyliquid64/golang-asm v0.15.1 // indirect\n \tgithub.com/ugorji/go/codec v1.2.11 // indirect\n \tgolang.org/x/arch v0.3.0 // indirect\n-\tgolang.org/x/crypto v0.10.0\n+\tgolang.org/x/crypto v0.14.0\n \tgolang.org/x/exp v0.0.0-20... | 2023-10-25T23:17:24 |
ggml-org/llama.cpp | 6de8ed75196c7cd98c1f34bbf3a7452451ba8ac2 | 84bf3c677857279037adf67cdcfd89eaa4ca9281 | sycl : add PAD_REFLECT_D1 operator support (#16145)
* sycl: add PAD_REFLECT_D1 operator support
* docs(ops): regenerate docs/ops.md
* remove trailing whitespaces
* style: fix editorconfig issues — trim trailing spaces and normalize EOLs
* fix: move PAD_REFLECT_1D case outside of fall-through block | [
{
"path": "docs/ops.md",
"patch": "@@ -72,7 +72,7 @@ Legend:\n | OPT_STEP_SGD | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |\n | OUT_PROD | 🟡 | ❌ | 🟡 | 🟡 | ❌ | ❌ | 🟡 | ❌ | ❌ |\n | PAD | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | 🟡 | ✅ | ❌ |\n-| ... | 2025-10-20T22:21:12 |
vuejs/vue | e6f89c0e2d950729cbab601afb31032427600c5b | fc6f1810522a4bf8a9959e405274b02d71ec290c | error-detector code style tweak | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -2,17 +2,22 @@\n \n import { dirRE, onRE } from './parser/index'\n \n-// operators like typeof, instanceof and in are allowed\n+// these keywords should not appear inside expressions, but operators like\n+// typeof, instanceof and in are allowed\n con... | 2017-03-09T02:27:03 |
huggingface/transformers | cb6f03fce4d1f096982f222add598c9625bf9d79 | 8fc54209130d48d3df9a4b1f59fcdaed3a8e0f34 | Fix Qwen3-Omni inference when mixing video and image inputs in one batch (#41741)
* Fix qwen3omni inference when mixing video and image inputs in one batch
* Fix `router_aux_loss_coef`
---------
Co-authored-by: lvyuanjun.lyj <lvyuanjun.lyj@alibaba-inc.com> | [
{
"path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py",
"patch": "@@ -1723,8 +1723,9 @@ def forward(\n past_key_values=past_key_values,\n )\n \n- def _deepstack_process(self, hidden_states, visual_pos_masks, visual_embeds):\n- visual_pos_masks = visual_po... | 2025-10-20T11:35:02 |
ollama/ollama | b0c9cd0f3bc6b41b4053fe122192237fa8b68eae | 77f61c630135d90aff31b294fdb042ea1e4e9395 | fix metal assertion errors | [
{
"path": "llm/llama.cpp/generate_darwin_amd64.go",
"patch": "@@ -13,6 +13,7 @@ package llm\n \n //go:generate git submodule update --force gguf\n //go:generate git -C gguf apply ../patches/0001-update-default-log-target.patch\n+//go:generate git -C gguf apply ../patches/0001-metal-handle-ggml_scale-for-n-4... | 2023-10-24T07:32:36 |
denoland/deno | 1b424993ce6e2fa5f7c89a691dd5d13f77977103 | 12134b0c470607fe4483a6188c2b02b19ca5a2a0 | fix(audit): make 'Path' property more readable (#32049)
Makes report more readable by adding spaces in `Path` property.
Before:
```
╭ @denotest/with-vuln2 can steal crypto keys
│ Severity: critical
│ Package: @edenotest/with-vuln2
│ Vulnerable: <2.0.0
│ Patched: >=2.0.0
│ Path: @denotest/using-vuln>@den... | [
{
"path": "cli/tools/pm/audit.rs",
"patch": "@@ -404,7 +404,11 @@ mod npm {\n if let Some(finding) = adv.findings.first()\n && let Some(path) = finding.paths.first()\n {\n- _ = writeln!(stdout, \"│ {} {}\", colors::gray(\"Path:\"), path);\n+ let path_fmt = path\n+ ... | 2026-02-04T13:34:47 |
ggml-org/llama.cpp | 84bf3c677857279037adf67cdcfd89eaa4ca9281 | c9c1972e2c2cc6a771fcc145bfa138700179f961 | model : add BailingMoeV2 support (#16063)
* add BailingMoeV2 support
* update llm types
* undo
* undo
* update llm types
* add model collection link
* update
* almost working
* correct group selection and rename n_group_exp
* avoid large top_k and use argmax instead for now
if we had something like argmax2 t... | [
{
"path": "README.md",
"patch": "@@ -138,6 +138,7 @@ Instructions for adding support for new models: [HOWTO-add-model.md](docs/develo\n - [x] [Ling models](https://huggingface.co/collections/inclusionAI/ling-67c51c85b34a7ea0aba94c32)\n - [x] [LFM2 models](https://huggingface.co/collections/LiquidAI/lfm2-686... | 2025-10-20T19:38:20 |
vuejs/vue | fc6f1810522a4bf8a9959e405274b02d71ec290c | 9d3ceba25148b35838908ef6523e16f0be881b25 | fix weex model test | [
{
"path": "test/weex/compiler/v-model.spec.js",
"patch": "@@ -14,7 +14,7 @@ describe('compile v-model', () => {\n it('should compile other component with whole $event as the value', () => {\n const { render, staticRenderFns, errors } = compile(`<div><foo v-model=\"x\" /></div>`)\n expect(render).n... | 2017-03-08T08:00:35 |
huggingface/transformers | 307c5238546ba1675daabc46050c63ffde25f8e6 | 448c553ccbc75bd7e6c60596875b1822bc3f3871 | further improve `utils/check_bad_commit.py` (#41658) (#41690)
* fix
* Update utils/check_bad_commit.py
Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
* fix
* fix
* fix
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
Co-authored-by: Anton Vlasjuk <73884904+vasqu@user... | [
{
"path": ".github/workflows/check_failed_tests.yml",
"patch": "@@ -41,9 +41,14 @@ env:\n \n jobs:\n check_new_failures:\n- name: \" \"\n+ name: \"Find commits for new failing tests\"\n+ strategy:\n+ matrix:\n+ run_idx: [1]\n runs-on:\n group: aws-g5-4xlarge-cache\n+ outp... | 2025-10-17T21:07:00 |
denoland/deno | 12134b0c470607fe4483a6188c2b02b19ca5a2a0 | 9aca4f6c5331f0ced1ae1071211056608572932a | fix(ext/node): fix multiple node:zlib compatibility issues (#32039)
These fixes bring back number of failing `node:zlib` tests down to 8. | [
{
"path": "ext/node/ops/zlib/mod.rs",
"patch": "@@ -357,6 +357,22 @@ impl Zlib {\n Ok(zlib.err)\n }\n \n+ #[fast]\n+ pub fn params(\n+ &self,\n+ #[smi] level: i32,\n+ #[smi] strategy: i32,\n+ ) -> Result<(), ZlibError> {\n+ let mut zlib = self.inner.borrow_mut();\n+ let zlib = zlib.a... | 2026-02-04T11:57:41 |
ggml-org/llama.cpp | b617cfd2896edd592a36ebbc041817eb030a1005 | 79068501fac9a74cca7129a8e5a8281b410a853e | ggml-alloc : fix leak when reusing a tensor with a larger size (#16679) | [
{
"path": "ggml/src/ggml-alloc.c",
"patch": "@@ -598,6 +598,26 @@ static bool ggml_gallocr_is_allocated(ggml_gallocr_t galloc, struct ggml_tensor\n return t->data != NULL || ggml_gallocr_hash_get(galloc, t)->allocated;\n }\n \n+// free the extra space at the end if the new tensor is smaller\n+static voi... | 2025-10-20T12:53:50 |
vuejs/vue | 2e1e809467cb7f05173ab81fb4134fcec554c4a7 | 303824ea9c7614167ee6c5bd26c33b35ad6bf474 | fix prevent default unit test (#5127) | [
{
"path": "test/unit/features/directives/on.spec.js",
"patch": "@@ -86,15 +86,14 @@ describe('Directive v-on', () => {\n vm = new Vue({\n el,\n template: `\n- <div @click=\"bar\">\n- <div @click.stop=\"foo\"></div>\n- </div>\n+ <input type=\"checkbox\" ref=\"inp... | 2017-03-08T05:47:39 |
huggingface/transformers | ac815417784320cb17ed7d6b077dd19cb6854fa1 | e7592f25089bae648d3cebf7e0445a510e719eea | 🌐 [i18n-KO] Translated gemma3n.md to Korean (#40873)
* fix: manual edits
* Apply suggestions from code review
Apply suggestions from code review and make additional revisions
Co-authored-by: HyunSang Jang <tasker.dev103@gmail.com>
* Apply suggestions from code review
Apply suggestions from code review — upda... | [
{
"path": "docs/source/ko/_toctree.yml",
"patch": "@@ -1057,7 +1057,7 @@\n title: FLAVA\n - local: model_doc/gemma3\n title: Gemma3\n- - local: in_translation\n+ - local: model_doc/gemma3n\n title: Gemma3n\n - local: in_translation\n title: GIT",
"ad... | 2025-10-17T16:57:05 |
ggml-org/llama.cpp | 79068501fac9a74cca7129a8e5a8281b410a853e | 0e4a0cf2fae667d3efcf52f2f52398779d986b1d | Prevent premature submission on IME input (#16673)
* fix: Prevent premature submission on IME input
* chore: update webui static build
* refactor: Put IME completion checker in a helper function and add checking for `KeyboardEvent.eventKey === 229`
* chore: update webui static build
* chore: update webui static bu... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte",
"patch": "@@ -26,6 +26,7 @@\n \t\tMimeTypeImage,\n \t\tMimeTypeText\n \t} from '$lib/enums/files';\n+\timport { isIMEComposing } from '$lib/utils/is-ime-composing';\n \n \tinterface Props {\n \t\tclass?: string;\n@@ -97,7 +... | 2025-10-20T12:21:12 |
denoland/deno | 9aca4f6c5331f0ced1ae1071211056608572932a | 72b9709c7d70ed059d1afc45c68736e930de5266 | fix(ext/node): add hasColors() to process.stdout and process.stderr (#31985)
## Summary
- Adds `hasColors()` method to `process.stdout` and `process.stderr`
- Fixes Node.js compatibility issue where packages like Commander.js
check color support
Fixes #27278
## Changes
- Modified `ext/node/polyfills/_process/streams... | [
{
"path": "ext/node/polyfills/_process/streams.mjs",
"patch": "@@ -25,6 +25,7 @@ import { Duplex, Readable, Writable } from \"node:stream\";\n import * as io from \"ext:deno_io/12_io.js\";\n import { guessHandleType } from \"ext:deno_node/internal_binding/util.ts\";\n import { op_bootstrap_color_depth } fro... | 2026-02-04T10:48:08 |
huggingface/transformers | 7e204ad121e729cac59ea213356c68527cac0a7e | a15d77cd0c3e4c1d9f0a196da5996b735eead37e | [`Attn`] Allow dynamic causality in SDPA via Kwargs (#41692)
* is causal as kwarg
* Update src/transformers/integrations/sdpa_attention.py
Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com>
* fix comment
---------
Co-authored-by: Cyril Vallez <cyril.vallez@gmail.com> | [
{
"path": "src/transformers/integrations/flash_attention.py",
"patch": "@@ -34,6 +34,7 @@ def flash_attention_forward(\n scaling: Optional[float] = None,\n sliding_window: Optional[int] = None,\n softcap: Optional[float] = None,\n+ is_causal: Optional[bool] = None,\n **kwargs,\n ) -> tupl... | 2025-10-17T15:51:51 |
vuejs/vue | 303824ea9c7614167ee6c5bd26c33b35ad6bf474 | 41ef650f9db5143a39019f4f56441b24a61c2efc | default slot should use fallback content when it contains all whitespace nodes (fix #5097) | [
{
"path": "src/core/instance/render-helpers/resolve-slots.js",
"patch": "@@ -29,16 +29,17 @@ export function resolveSlots (\n defaultSlot.push(child)\n }\n }\n- // ignore single whitespace\n- if (defaultSlot.length && !(\n- defaultSlot.length === 1 &&\n- (defaultSlot[0].text === ' ' || d... | 2017-03-08T04:28:34 |
ggml-org/llama.cpp | 0e4a0cf2fae667d3efcf52f2f52398779d986b1d | 13f2cfad4170c096c51a02c24a6a158cb47f1480 | Import/Export UX improvements (#16619)
* webui : added download action (#13552)
* webui : import and export (for all conversations)
* webui : fixed download-format, import of one conversation
* webui : add ExportedConversations type for chat import/export
* feat: Update naming & order
* chore: Linting
* feat: Im... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatSettings/ChatSettingsDialog.svelte",
"patch": "@@ -9,9 +9,11 @@\n \t\tSun,\n \t\tMoon,\n \t\tChevronLeft,\n-\t\tChevronRight\n+\t\tChevronRight,\n+\t\tDatabase\n \t} from '@lucide/svelte';\n \timport { ChatSettingsFooter, ChatSettingsFields } fro... | 2025-10-20T11:29:14 |
denoland/deno | 72b9709c7d70ed059d1afc45c68736e930de5266 | b2690b072780c79e3584406f8f9891e201734f00 | fix(ext/node): implement Node worker BroadcastChannel ref/unref (#32036)
All except one test case in
`parallel/test-worker-broadcastchannel-wpt.js` passes. Node.js message
dispatch ordering is not same as the Web api as explained in this
comment:
```js
// Messages are delivered in port creation order.
// TODO(@jas... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -26,7 +26,10 @@ import {\n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import { EventEmitter } from \"node:events\";\n-import { BroadcastChannel } from \"ext:deno_web/... | 2026-02-04T10:43:35 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.