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
ollama/ollama
ba460802c20311ac9c90e6a750df2939a3defa9b
e54a3c7fcd3a66486c3946a7944f3d7ce2daff6c
examples: add more Go examples using the API (#3599) * examples: go-multimodal * examples: add go-pull-progress * examples: add go-chat * fix
[ { "path": "examples/go-chat/main.go", "patch": "@@ -0,0 +1,51 @@\n+package main\n+\n+import (\n+\t\"context\"\n+\t\"fmt\"\n+\t\"log\"\n+\n+\t\"github.com/ollama/ollama/api\"\n+)\n+\n+func main() {\n+\tclient, err := api.ClientFromEnvironment()\n+\tif err != nil {\n+\t\tlog.Fatal(err)\n+\t}\n+\n+\tmessages :...
2024-04-15T22:34:54
denoland/deno
0ee75392669d26bc1e051ecd5bdc90b1997ad963
d3e9c917261adc24cbadd1e904988036be069ce5
fix(ext/websocket): handle non-ASCII bytes in WebSocket response headers (#32594) ## Summary - Replace `.to_str().unwrap()` with graceful fallbacks when parsing `Sec-WebSocket-Protocol` and `Sec-WebSocket-Extensions` response headers in `op_ws_create` - Non-ASCII header values are now silently skipped instead of caus...
[ { "path": "ext/websocket/lib.rs", "patch": "@@ -451,14 +451,14 @@ pub async fn op_ws_create(\n let mut state = state.borrow_mut();\n let rid = state.resource_table.add(ServerWebSocket::new(stream));\n \n- let protocol = match response.get(\"Sec-WebSocket-Protocol\") {\n- Some(header) => header.to_st...
2026-03-09T18:45:19
huggingface/transformers
bf3f0ae70d0e902efab4b8517fce88f6697636ce
6e3f2f8f52f29e7080e5f286f92368dde30d6f83
[Ministral 3] Add ministral 3 (#42498) * Up * WIP * WIP * WIP * Apply suggestions from code review Co-authored-by: Julien Denize <40604584+juliendenize@users.noreply.github.com> * Update src/transformers/models/ministral3/configuration_ministral3.py Co-authored-by: Julien Denize <40604584+juliendenize@users.nor...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -598,6 +598,8 @@\n title: MiniMax\n - local: model_doc/ministral\n title: Ministral\n+ - local: model_doc/ministral3\n+ title: Ministral3\n - local: model_doc/mistral\n title: Mistral\n - local: model...
2025-12-01T18:02:16
ggml-org/llama.cpp
0f4f35e7be14d5ef8157aa710b66388e77e99bec
165caaf5fbd359822b176b076f3ef4248309e56d
Fix unreadable user markdown colors and truncate long texts in deletion dialogs (#17555) * webui: limit conversation name length in dialogs * webui: fix unreadable colors on links and table cell hover in user markdown * webui: keep table borders visible in user markdown * webui: updating unified exports * Update t...
[ { "path": "tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentThumbnailFile.svelte", "patch": "@@ -1,6 +1,6 @@\n <script lang=\"ts\">\n \timport { RemoveButton } from '$lib/components/app';\n-\timport { getFileTypeLabel, getPreviewText, formatFileSize, isTextFile } from '$lib/utils...
2025-12-15T15:34:53
vuejs/vue
644274cbd34e14e74e8931fa979b22dc2db04895
bd4819e6cf1c8d70d25aba2636e01f40faf59443
fix: more consistent component naming warnings across the API close #7212
[ { "path": "src/core/global-api/assets.js", "patch": "@@ -1,8 +1,7 @@\n /* @flow */\n \n-import config from '../config'\n import { ASSET_TYPES } from 'shared/constants'\n-import { warn, isPlainObject } from '../util/index'\n+import { isPlainObject, validateComponentName } from '../util/index'\n \n export fun...
2017-12-12T18:22:33
ollama/ollama
7027f264fbb3292fa4b53623fbaef5792d0d5f80
9bee3b63b1a8299384dea04c10f191b13a2815c3
app: gracefully shut down `ollama serve` on windows (#3641) * app: gracefully shut down `ollama serve` on windows * fix linter errors * bring back `HideWindow` * remove creation flags * restore `windows.CREATE_NEW_PROCESS_GROUP`
[ { "path": "app/lifecycle/server.go", "patch": "@@ -9,7 +9,6 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n-\t\"syscall\"\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n@@ -87,19 +86,29 @@ func SpawnServer(ctx context.Context, command string) (chan int, error) {\n \t// Re-wire context ...
2024-04-14T22:33:25
huggingface/transformers
6e3f2f8f52f29e7080e5f286f92368dde30d6f83
83fe012d58528a14ee0bb0146885f2d6fcb1ec3f
[TP plans] Fix some incorrects TP plans (#42448) * gemma3 * qwen3 and modulars * fix tp plans --------- Co-authored-by: vasqu <antonprogamer@gmail.com>
[ { "path": "src/transformers/models/apertus/configuration_apertus.py", "patch": "@@ -101,10 +101,10 @@ class ApertusConfig(PreTrainedConfig):\n keys_to_ignore_at_inference = [\"past_key_values\"]\n default_theta = 12000000.0\n base_model_tp_plan = {\n- \"layers.*.self_attn.q_proj\": \"colw...
2025-12-01T17:50:33
denoland/deno
d3e9c917261adc24cbadd1e904988036be069ce5
6048a0d9f7ad3ff02712dbefd16ae07aaf685785
fix(ext/node): fix multiple DiffieHellman crypto bugs (#32531) ## Summary - Fix DH group key generation endianness bug (`BigUint::from_slice` treating big-endian u32 MODULUS words as little-endian limbs) - Fix panic when deriving DH public key from private key (implement modular exponentiation `g^x mod p`) - Fix PKCS...
[ { "path": "Cargo.lock", "patch": "@@ -35,7 +35,7 @@ version = \"0.5.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\"\n dependencies = [\n- \"crypto-common\",\n+ \"crypto-common 0.1.6\",\n \"generic-arr...
2026-03-09T18:41:42
vuejs/vue
bd4819e6cf1c8d70d25aba2636e01f40faf59443
6eccd8e4338c8eb32ab03813e3fb70f58f858f23
fix: data() should be called with vm as first argument in mixins fix #7191
[ { "path": "src/core/util/options.js", "patch": "@@ -85,18 +85,18 @@ export function mergeDataOrFn (\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n- typeof childVal === 'function' ? childVal.call(this) : childVal,\n- ...
2017-12-06T14:11:49
ollama/ollama
9bee3b63b1a8299384dea04c10f191b13a2815c3
309aef7fee1a5b825532d58ddfed8acde765d50c
types/model: add path helpers (#3619) This commit adds path helpers for working with Names in URL and file paths. The new helpers are ParseNameFromPath, ParseNameFromFilePath, Name.Path, and Name.FilePath. This commit also adds Name.DisplayLongest, and Name.DisplayLong. Also, be it updates a place where string...
[ { "path": "types/model/name.go", "patch": "@@ -7,6 +7,7 @@ import (\n \t\"hash/maphash\"\n \t\"io\"\n \t\"log/slog\"\n+\t\"path/filepath\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n@@ -54,6 +55,10 @@ const (\n \tPartBuild\n \tPartDigest\n \n+\t// NumParts is the number of parts in a Name. In this list, i...
2024-04-13T19:59:19
ggml-org/llama.cpp
96a181a933a34e92c316b0603f0f30cb7f30eefa
4a4f7e6550cf5b327ea0fb241ce7417ab46e1ace
mtmd: refactor audio preprocessing (#17978) * mtmd: refactor audio preprocessing * refactor Co-authored-by: Tarek <tdakhran@users.noreply.github.com> * wip * wip (2) * improve constructor * fix use_natural_log * fix padding for short input * clean up * remove need_chunking --------- Co-authored-by: Tarek <t...
[ { "path": "tools/mtmd/clip-model.h", "patch": "@@ -65,6 +65,13 @@ struct clip_hparams {\n int32_t n_mel_bins = 0; // whisper preprocessor\n int32_t proj_stack_factor = 0; // ultravox\n \n+ // audio-to-mel preprocessor params\n+ int32_t audio_chunk_len = -1; // in seconds\n+ int32_t audio_...
2025-12-15T13:16:52
huggingface/transformers
83fe012d58528a14ee0bb0146885f2d6fcb1ec3f
dac2ad76bc49d38ff1fe117d6e5b8b69d1217e37
small fix tokenizer regex patch (#42528) * small fix * update * we prob still had 1 issue * fix * pop in case
[ { "path": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -42,7 +42,7 @@\n TextInput,\n TruncationStrategy,\n )\n-from .utils import PaddingStrategy, add_end_docstrings, logging\n+from .utils import PaddingStrategy, add_end_docstrings, is_offline_mode, logging\n \n \n logger = logg...
2025-12-01T17:23:18
denoland/deno
6048a0d9f7ad3ff02712dbefd16ae07aaf685785
77a23c56ab194226768573f689bb6b01154a653c
fix(napi): remove unimplemented Node-API symbols from napi_sys (#32593) ## Summary - Removes 4 unimplemented Node-API functions from `libs/napi_sys/src/functions.rs`: `node_api_create_property_key_latin1`, `node_api_create_property_key_utf8`, `node_api_create_object_with_properties`, `node_api_create_object_with_name...
[ { "path": "libs/napi_sys/src/functions.rs", "patch": "@@ -815,31 +815,10 @@ generate!(\n length: usize,\n result: *mut napi_value,\n ) -> napi_status;\n- fn node_api_create_property_key_latin1(\n- env: napi_env,\n- str_: *const c_char,\n- length: usize,\n- result: *mut...
2026-03-09T17:57:48
ollama/ollama
08655170aa7b2472656b00a2d5b6bc2e9d0365e6
2b341069a7d00fa4c8da65773a5ccf5606cb29e8
types/model: make ParseName variants less confusing (#3617) Also, fix http stripping bug. Also, improve upon docs about fills and masks.
[ { "path": "types/model/name.go", "patch": "@@ -3,6 +3,7 @@ package model\n import (\n \t\"cmp\"\n \t\"errors\"\n+\t\"fmt\"\n \t\"hash/maphash\"\n \t\"io\"\n \t\"log/slog\"\n@@ -25,11 +26,17 @@ var (\n \n // Defaults\n const (\n-\t// DefaultMask is the default mask used by [Name.DisplayShortest].\n-\tDefault...
2024-04-12T20:57:57
ggml-org/llama.cpp
4a4f7e6550cf5b327ea0fb241ce7417ab46e1ace
e73d548659db9297c23a77359776481690b82741
cli: fixed dead links to tools/main for cli and completion, fixed code owners (#17993) Co-authored-by: Andrew Aladjev <andrew.aladjev@gmail.com>
[ { "path": "CODEOWNERS", "patch": "@@ -87,7 +87,8 @@\n /tests/ @ggerganov\n /tests/test-chat-.* @pwilkin\n /tools/batched-bench/ @ggerganov\n-/tools/main/ @ggerganov\n+/tools/cli/ @ngx...
2025-12-15T10:47:04
huggingface/transformers
dac2ad76bc49d38ff1fe117d6e5b8b69d1217e37
063b431dfc7087efa0617f70d390d49e73653baf
Fix Qwen3OmniMoE weight init (#42531) * module.router -> module.gate * i am not smart today
[ { "path": "src/transformers/models/qwen3_omni_moe/modeling_qwen3_omni_moe.py", "patch": "@@ -84,7 +84,7 @@ def _init_weights(self, module):\n if isinstance(module, Qwen3OmniMoeThinkerTextSparseMoeBlock):\n init.normal_(module.experts.gate_up_proj, mean=0.0, std=std)\n init.no...
2025-12-01T17:07:57
denoland/deno
98ca4505b31683a9bbf4d28418c0c7359b1c7d2c
e0b19336112b9576817a0501b73bbf8f452ea9c3
fix(ext/node): emit DEP0198 warning for SHAKE digests without outputLength (#32521) ## Summary - Emit `DeprecationWarning` (DEP0198) when creating SHAKE128/256 digests without an explicit `options.outputLength`, matching Node.js behavior with `--pending-deprecation` - Enables `test-crypto-default-shake-lengths.js` an...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -43,6 +43,7 @@ import {\n NodeError,\n } from \"ext:deno_node/internal/errors.ts\";\n import LazyTransform from \"ext:deno_node/internal/streams/lazy_transform.js\";\n+import process from \"node:process\";\n import {\n getDefaultEncodi...
2026-03-09T16:26:24
ggml-org/llama.cpp
b1f3a6e5db7b782ef077bd0e8253ce03283b1f37
4aced7a63156555911157d3002f9d3ddef4a1e55
llama: automatically set parameters not set by the user in such a way that maximizes GPU utilization (#16653) * llama: automatically fit args to free memory llama-fit-params tool * fix CI * hints for bug reports, ensure no reallocation * fix segfault with Vulkan * add llama-fit-params to CI * fix CI * fix CI *...
[ { "path": ".github/ISSUE_TEMPLATE/011-bug-results.yml", "patch": "@@ -11,7 +11,7 @@ body:\n (i.e. the generated text) are incorrect or llama.cpp crashes during model evaluation.\n If you encountered the issue while using an external UI (e.g. ollama),\n please reproduce your issue usi...
2025-12-15T08:24:59
vuejs/vue
904d9c9a819abf8ee503a068fd47ec7c673924d1
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
test: fix weex test case
[ { "path": "test/weex/compiler/compile.spec.js", "patch": "@@ -32,12 +32,12 @@ describe('compile basic', () => {\n \n it('should compile unary tag', () => {\n const inputCase = compile(`<div><input><text>abc</text></div>`)\n- expect(inputCase.render).toMatch(strToRegExp(`return _m(0,false,false)`))\...
2017-12-05T16:20:33
huggingface/transformers
1b6b6cd0ca91873e5a759e18b5bbb1eac56baa5f
641c99512a3aa462ca69dd351e75f16000de0532
Fix tied_weights for vlms (#42523) * one fix * attempt mistral3 * empty dict * that was olmoe's problem * current CI status? * actual CI status * simplify * hmm? * bird * force tie word embeddings to false * specifics of FSMT * wrong reference? * finalize * fixup * weird mamba error * fix tied weights ...
[ { "path": "src/transformers/models/kyutai_speech_to_text/modeling_kyutai_speech_to_text.py", "patch": "@@ -1069,7 +1069,7 @@ def _prepare_4d_causal_attention_mask_with_cache_position(\n \n @auto_docstring\n class KyutaiSpeechToTextForConditionalGeneration(KyutaiSpeechToTextPreTrainedModel, GenerationMixin):...
2025-12-01T16:40:53
denoland/deno
059640555276854bc38567b5678df26dfe42ad97
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
fix(ext/node): improve getCipherInfo and allow repeated Hmac digest() (#32522) ## Summary - **getCipherInfo**: Add proper cipher info table with OpenSSL NIDs, `blockSize`, and full metadata. Support NID-based lookup. Import missing `validateInt32`/`validateObject` for argument validation. - **Hmac.digest()**: Allow r...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -259,7 +259,19 @@ class HmacImpl extends Transform {\n digest(): Buffer;\n digest(encoding: BinaryToTextEncoding): string;\n digest(encoding?: BinaryToTextEncoding): Buffer | string {\n- const result = this.#hash.digest();\n+ l...
2026-03-09T15:11:52
ollama/ollama
c2d813bdc3665ffad7618b726e370da5f0f3795a
786f3a1c44fb3733f6f1b5e7a5d20d6d772a4e47
Fix rocm deps with new subprocess paths
[ { "path": "Dockerfile", "patch": "@@ -42,7 +42,7 @@ ARG CGO_CFLAGS\n ARG AMDGPU_TARGETS\n RUN OLLAMA_SKIP_CPU_GENERATE=1 sh gen_linux.sh\n RUN mkdir /tmp/scratch && \\\n- for dep in $(cat /go/src/github.com/ollama/ollama/llm/llama.cpp/build/linux/x86_64/rocm*/lib/deps.txt) ; do \\\n+ for dep in $(zcat...
2024-04-11T19:52:06
huggingface/transformers
641c99512a3aa462ca69dd351e75f16000de0532
70baf07712c01d59912471b744d5270f3140668d
Fix silent loading error (#42525) fix
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -594,7 +594,6 @@ def set_param_for_module(\n missing_keys.discard(target_name)\n if ref is not None and ref.shape != param_value.shape and hf_quantizer is None:\n mismatch_keys.add((target_name, param_va...
2025-12-01T16:40:12
vuejs/vue
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
0da8bced77654beb14c39ff3b4543b2ef37d1aff
fix: revert shared static tree cache to avoid memory leak revert f0a66c5 fix #7184
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -86,15 +86,13 @@ export function genElement (el: ASTElement, state: CodegenState): string {\n }\n \n // hoist static sub-trees out\n-function genStatic (el: ASTElement, state: CodegenState, once: ?boolean): string {\n+function genStatic (el: ASTElement...
2017-12-05T16:17:36
ggml-org/llama.cpp
4aced7a63156555911157d3002f9d3ddef4a1e55
745fa0e78b3d3fd3fd12a260c47300dc3869d07e
[SYCL] Support gpt-oss by OPs add-id, mul_mat for mxfp4, swiglu_oai (#17826) * support gpt-oss GPU by OP add-id, mul_mat for mxfp4, swiglu_oai, fix warning * fix fault ut case, update ops.md * rebase, fix format issue
[ { "path": "docs/ops.md", "patch": "@@ -18,20 +18,20 @@ Legend:\n | ACC | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ |\n | ADD | ❌ | ✅ | ✅ | ✅ | 🟡 | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |\n | ADD1 | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ |...
2025-12-15T02:35:15
denoland/deno
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
fix(ext/node): implement ECDH.convertKey and fix related ECDH bugs (#32532) ## Summary - Implement `ECDH.convertKey()` static method supporting compressed, uncompressed, and hybrid point formats - Fix `setPrivateKey()` not decoding string keys with encoding parameter - Fix `getPublicKey()` not supporting hybrid format...
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -15,12 +15,12 @@ import {\n op_node_gen_prime,\n } from \"ext:core/ops\";\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import {\n isAnyArrayBuffer,\n isArrayBufferView,\n } from \"ext:deno_node/internal...
2026-03-09T12:13:56
ollama/ollama
a7b431e7435aeacd084c0e3d59d8d035b6a667b6
5a25f935223e458e1c1042e00613379cd1364674
server: provide helpful workaround hint when stalling on pull (#3584) This is a quick fix to help users who are stuck on the "pull" step at 99%. In the near future we're introducing a new registry client that should/will hopefully be smarter. In the meantime, this should unblock the users hitting issue #1736.
[ { "path": "server/download.go", "patch": "@@ -247,7 +247,8 @@ func (b *blobDownload) downloadChunk(ctx context.Context, requestURL *url.URL, w\n \t\t\t\t}\n \n \t\t\t\tif !part.lastUpdated.IsZero() && time.Since(part.lastUpdated) > 5*time.Second {\n-\t\t\t\t\tslog.Info(fmt.Sprintf(\"%s part %d stalled; retr...
2024-04-10T23:24:37
huggingface/transformers
70baf07712c01d59912471b744d5270f3140668d
6316a9e176d22f8f09d44ef72ec0aaa2ce7b8780
avoid `afmoe` job crashing (#42524) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/afmoe/test_modeling_afmoe.py", "patch": "@@ -47,7 +47,7 @@ def __init__(\n num_key_value_heads=16,\n head_dim=128,\n hidden_act=\"silu\",\n- max_position_embeddings=16384,\n+ max_position_embeddings=128,\n initializer_range=0.02,\n ...
2025-12-01T16:39:19
vuejs/vue
0da8bced77654beb14c39ff3b4543b2ef37d1aff
7166c4e8753fdb8cade6a922b958813383548107
fix(weex): send createFinish signal after root component mounted (#7154)
[ { "path": "src/platforms/weex/entry-framework.js", "patch": "@@ -61,12 +61,8 @@ export function createInstance (\n }, timerAPIs, env.services)\n \n appCode = `(function(global){ \\n${appCode}\\n })(Object.create(this))`\n-\n callFunction(instanceVars, appCode)\n \n- // Send `createFinish` signal to n...
2017-12-04T14:58:46
denoland/deno
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
fix(ext/otel): remove panicking unwraps in telemetry code (#32557) ## Summary - Replace `.unwrap()` calls on `OTEL_GLOBALS.get()` and isolate slot accesses with graceful error handling throughout `ext/telemetry/lib.rs` - GC prologue/epilogue callbacks now return early if the isolate slot is missing (can happen du...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1433,12 +1433,14 @@ impl OtelTracer {\n \n #[static_method]\n #[cppgc]\n- fn builtin() -> OtelTracer {\n+ fn builtin() -> Result<OtelTracer, JsErrorBox> {\n let OtelGlobals {\n builtin_instrumentation_scope,\n ..\n- } = OTEL_GLOBALS.ge...
2026-03-09T12:10:10
ggml-org/llama.cpp
745fa0e78b3d3fd3fd12a260c47300dc3869d07e
52392291b2f3a24b5d3fef4fc0b56f10db358dc1
model : add glm-asr support (#17901) * [model] add glm-asr support * fix format for ci * fix convert format for ci * update glm_asr convert script & use build_ffn for glm_asr clip & use build_stack for padding and review * check root architecture for convert hf script * fix conficlt with upstream * fix convert s...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -713,6 +713,9 @@ def load_hparams(dir_model: Path, is_mistral_format: bool):\n if \"llm_config\" in config:\n # rename for InternVL\n config[\"text_config\"] = config[\"llm_config\"]\n+ if \"lm_config\" in config:\n+ ...
2025-12-15T02:18:46
vuejs/vue
60da366a2653a3984d79331d02ebb2ecf7e73a9a
7e46683470e06e93fec338dbaedb201f9b79b4d1
fix: should not update in-focus input value with lazy modifier fix #7153
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -56,12 +56,12 @@ type acceptValueElm = HTMLInputElement | HTMLSelectElement | HTMLOptionElement;\n function shouldUpdateValue (elm: acceptValueElm, checkVal: string): boolean {\n return (!elm.composing && (\n elm.tagName === 'OPT...
2017-11-30T15:48:37
denoland/deno
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
22258fb3f01f25376890de292339fcab290b21d4
fix: ensure binaries distributed in `@deno/...` npm packages are exectuable (#32581) Bit of a cleanup more than anything.
[ { "path": ".github/workflows/npm_publish.yml", "patch": "@@ -38,11 +38,14 @@ jobs:\n - name: Build npm packages\n run: ./tools/release/npm/build.ts ${{ inputs.version || '' }}\n \n+ - name: Tar npm dist (preserves permissions)\n+ run: tar cf tools/release/npm/dist.tar -C tools/rele...
2026-03-09T12:08:49
huggingface/transformers
6316a9e176d22f8f09d44ef72ec0aaa2ce7b8780
eb399a95f0368b8d23f085859f8214ce57c1f2de
Fix MoE for V5 (#42456) * remove zero_like + scatter * fix mixtral moe * fix other moe models as well * fix ci * fix modular mixtral * fix qwen2_moe + qwen3_next * fix device mismatch for qwen3_vl_moe to pass tests * fix modular mixtral * fix other models * rm slow tokenizers (#40936) * fixes missed * gemma...
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -175,6 +175,8 @@ def _build_checkpoint_conversion_mapping():\n mapping[\"qwen3_vl_moe\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"hunyuan_v1_moe\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"minimax\"] = mapping[\"mixtral\"].co...
2025-12-01T16:34:55
ggml-org/llama.cpp
9e6649ecf244a99749dacc28fc4f49f7d6ad6f60
0759b09c90f9e1bb8beebe74882b9f094b91f7bb
vulkan: fix mul_mat_vec_iq1_s formatting (#18026)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp", "patch": "@@ -10,44 +10,44 @@ FLOAT_TYPE temp[NUM_COLS][NUM_ROWS];\n void calc_superblock(const uint a_offset, const uint b_offset, const uint ib32, const uint i,\n const uint num_blocks_per_row, const uint first_ro...
2025-12-14T13:52:46
ollama/ollama
2b4ca6cf36c0dc31fdae7046433f4341f171026f
ad90b9ab3d94e330970b00ae29be50b6ed62a8fb
fix ci
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -5,7 +5,6 @@ on:\n paths:\n - '**/*'\n - '!docs/**'\n- - '!examples/**'\n - '!README.md'\n \n jobs:", "additions": 0, "deletions": 1, "language": "YAML" }, { "path": "app/tray/tray.go", "patch": "@@ -24,...
2024-04-10T18:26:15
vuejs/vue
f5ce6b50cffef2e0eb8895c462b2433d8f8a701f
d4e0c3ef2444384719638a89f2a25af042b95795
fix(v-for): support array and nested destructuring in v-for
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -22,7 +22,7 @@ import {\n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n-export const forIteratorRE = /\\((\\{[^}]*\\}|[^,{]*),([^,]*)(?:,([^,]*))?\\)/\n+export const forIter...
2017-11-27T21:54:15
huggingface/transformers
eb399a95f0368b8d23f085859f8214ce57c1f2de
3ea7ecd5ba19c669b8d08aca78063fc50f9d8331
feat(cb): use context manager in `generate_batch` (#42190) * feat(cb): use context manager in `generate_batch` * refactor(cb): group `with` stmts * refactor(cb): move log line before `stop` call Co-authored-by: Rémi Ouazan <83456801+remi-or@users.noreply.github.com> * fix: lint --------- Co-authored-by: Rémi Oua...
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -26,6 +26,7 @@\n import torch\n from torch import nn\n from tqdm import tqdm\n+from tqdm.contrib.logging import logging_redirect_tqdm\n \n from ...configuration_utils import PretrainedConfig\n from ...generation.conf...
2025-12-01T16:21:53
ggml-org/llama.cpp
254098a279691615438f1a1bbe87f372199e13ea
3238b1400cf4f0f174c39579d92ce1a8ddb68110
common : refactor common_sampler + grammar logic changes (#17937) * common : refactor common_sampler + grammar logic changes * tests : increase max_tokens to get needed response * batched : fix uninitialized samplers
[ { "path": "common/arg.cpp", "patch": "@@ -1415,7 +1415,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.sampling.top_k = value;\n params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_TOP_K;\...
2025-12-14T08:11:13
denoland/deno
22258fb3f01f25376890de292339fcab290b21d4
25f1c99f712304b1697d9b6d8c4259085f816c5b
feat: --cpu-prof flags for CPU profiles (#31909) This PR adds `--cpu-prof`, `--cpu-prof-dir`, `--cpu-prof-md`, `--cpu-prof-name` and `--cpu-prof-interval` Example usage: ```sh > target/debug/deno -A --cpu-prof --cpu-prof-md getrandom.js > cat CPU.1769017882255.25986.md # CPU Profile | Duration | Samples | Interval ...
[ { "path": "cli/args/flags.rs", "patch": "@@ -263,6 +263,14 @@ pub struct DocFlags {\n pub filter: Option<String>,\n }\n \n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n+pub struct CpuProfFlags {\n+ pub dir: Option<String>,\n+ pub name: Option<String>,\n+ pub interval: Option<u32>,\n+ pub md: bool,...
2026-03-09T08:07:44
ollama/ollama
ad90b9ab3d94e330970b00ae29be50b6ed62a8fb
4340f8eba4b3a0e5672a0c4837ac45a23c074fdf
api: start adding documentation to package api (#2878) * api: start adding documentation to package api Updates #2840 * Fix lint typo report
[ { "path": "api/client.go", "patch": "@@ -1,3 +1,9 @@\n+// Package api implements the client-side API for code wishing to interact\n+// with the ollama service. The methods of the [Client] type correspond to\n+// the ollama REST API as described in https://github.com/ollama/ollama/blob/main/docs/api.md\n+//\...
2024-04-10T17:31:55
vuejs/vue
1c1621d96f61f07f8007000f92d1d2e23d3b42a3
0f7c443dca800204bc2e00876365869ee79e2d7b
chore: fix flow
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -98,6 +98,7 @@ function setAttr (el: Element, key: string, value: any) {\n el.removeEventListener('input', blocker)\n }\n el.addEventListener('input', blocker)\n+ // $flow-disable-line\n el.__ieph =...
2017-11-27T17:24:17
ggml-org/llama.cpp
3238b1400cf4f0f174c39579d92ce1a8ddb68110
4722671641fdc29b371d517db05d4b395c6e068c
vulkan: Fix data race/hang in scalar/cm1 flash attention (#17887)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp", "patch": "@@ -256,6 +256,9 @@ void main() {\n barrier();\n }\n \n+ // prevent race on tmpsh\n+ barrier();\n+\n // reduce across threads\n \n [[unroll]] for (uint32_t r = 0; r < Br; ++r) {", "additions": 3, "de...
2025-12-14T08:00:00
denoland/deno
25f1c99f712304b1697d9b6d8c4259085f816c5b
f7d492de83bbeed74dc3734b4cba53a459e151bb
refactor(ext/node): consolidate node:fs modules (part 5) (#32573) ## Summary Follow-up to #32555. Consolidates four more `node:fs` polyfill modules into `fs.ts` and `internal/fs/promises.ts`: - `_fs/_fs_mkdir.ts` → inlined `mkdir`, `mkdirSync` + helpers (`fixMkdirError`, `findFirstNonExistent`) - `_fs/_fs_mkdtemp.ts...
[ { "path": "ext/node/lib.rs", "patch": "@@ -387,10 +387,6 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_glob.ts\",\n \"_fs/_fs_lstat.ts\",\n \"_fs/_fs_lutimes.ts\",\n- \"_fs/_fs_mkdir.ts\",\n- \"_fs/_fs_mkdtemp.ts\",\n- \"_fs/_fs_open.ts\",\n- \"_fs/_fs_opendir.ts\",\n \"_fs/_fs...
2026-03-09T07:31:31
vuejs/vue
0f7c443dca800204bc2e00876365869ee79e2d7b
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
fix: block unnecessary input event on textarea placeholder in IE close #7138
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isIE9, isEdge } from 'core/util/env'\n+import { isIE, isIE9, isEdge } from 'core/util/env'\n \n import {\n extend,\n@@ -44,7 +44,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWit...
2017-11-27T17:13:37
huggingface/transformers
2375ddb426147f9e94e12be8d6a54f7a418e1e98
11e0fc12cd070732737e86951678496da635f09e
T5gemma2 (#41834) * Fix small bug in T5Gemma 1 in __init__ * Add t5gemma2 model & configurations. * Add auto support * Add test case. * Add doctree. * Update positional embeddings to match latest update. * Style fix & add use of final_logit_softcapping for attributes check. * Update tests and embedding design. ...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -704,6 +704,8 @@\n title: T5\n - local: model_doc/t5gemma\n title: T5Gemma\n+ - local: model_doc/t5gemma2\n+ title: T5Gemma2\n - local: model_doc/t5v1.1\n title: T5v1.1\n - local: model_doc/ul2", ...
2025-12-01T16:07:53
ggml-org/llama.cpp
d15d177f43b7dd7f73a965716bd76a3327abb2d6
77ad8542bd09c374d65be8abffd88ae4aa1e704d
vulkan: faster q6_k matmul (#17813) * q6_k faster mul mat * 8 values * fix comment * switch to two at a time * start ci for .glsl files
[ { "path": ".github/workflows/build.yml", "patch": "@@ -20,7 +20,8 @@ on:\n '**/*.swift',\n '**/*.m',\n '**/*.metal',\n- '**/*.comp'\n+ '**/*.comp',\n+ '**/*.glsl'\n ]\n \n pull_request:\n@@ -40,7 +41,8 @@ on:\n '**/*.swift',\n '**/*.m',\n '**/*.metal'...
2025-12-14T07:29:37
denoland/deno
55b7691d798e71895321e4ce57a1edc93789042c
574272ded08b82c7dec64da2120be8442a1f7636
fix(lsp): properly sync root files with tsgo (#32455)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -904,17 +904,17 @@ pub fn ts_changes_to_edit(\n module: &DocumentModule,\n language_server: &language_server::Inner,\n ) -> Result<Option<lsp::WorkspaceEdit>, AnyError> {\n- let mut text_document_edits = Vec::new();\n+ let mut edits_by_uri = HashMap::with_...
2026-03-08T14:13:49
vuejs/vue
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
a71e653108e4ba56a70107662f3ee30cead59c18
fix(types): use object and string instead of Object and String (#7126)
[ { "path": "types/options.d.ts", "patch": "@@ -58,12 +58,12 @@ export interface ComponentOptions<\n PropsDef=PropsDefinition<DefaultProps>> {\n data?: Data;\n props?: PropsDef;\n- propsData?: Object;\n+ propsData?: object;\n computed?: Accessors<Computed>;\n methods?: Methods;\n watch?: Record<...
2017-11-27T14:30:58
ollama/ollama
01114b45265dff484fd56d0430317c32dd4d9bd4
1524f323a3392adc2613b066b2b1c1e46887001d
fix: rope
[ { "path": "api/types.go", "patch": "@@ -122,6 +122,11 @@ type Runner struct {\n \tUseMMap bool `json:\"use_mmap,omitempty\"`\n \tUseMLock bool `json:\"use_mlock,omitempty\"`\n \tNumThread int `json:\"num_thread,omitempty\"`\n+\n+\t// Unused: RopeFrequencyBase is ignored. Instead the value in the model w...
2024-04-09T23:15:24
huggingface/transformers
11e0fc12cd070732737e86951678496da635f09e
ffc485f548979d482ee210f0c55e2b7de52e32da
another way of fix for #42400 (#42509) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/ernie4_5_moe/test_modeling_ernie4_5_moe.py", "patch": "@@ -89,15 +89,14 @@ def test_flash_attn_2_equivalence(self):\n # higher tolerance, not sure where it stems from\n assert torch.allclose(logits_fa, logits, atol=1e-2, rtol=1e-2)\n \n- # Ignore co...
2025-12-01T16:06:48
ggml-org/llama.cpp
609a2d026897829730ca231285469a9c80967fb7
a63cbafbbc5a7afe80b75486cffa651003aaede4
models : fix YaRN regression + consolidate logic (#18006) * models : fix YaRN regression + consolidate logic * cont : fix the fix * cont : remove header * cont : add header
[ { "path": "src/llama-context.cpp", "patch": "@@ -9,6 +9,7 @@\n #include \"llama-model.h\"\n \n #include <cinttypes>\n+#include <cmath>\n #include <cstring>\n #include <limits>\n #include <stdexcept>\n@@ -72,6 +73,43 @@ llama_context::llama_context(\n cparams.yarn_ext_factor = rope_scaling_type == LL...
2025-12-14T06:34:56
denoland/deno
524b86411c11d293e0fd3a0eafe0cd8df2812c14
6b73c27c8d6a786456041017fa7d8eae0b5d4037
refactor: use sys_traits deno_dotenv (#32542) Will fix flaky tests on main.
[ { "path": "Cargo.lock", "patch": "@@ -2173,6 +2173,9 @@ dependencies = [\n [[package]]\n name = \"deno_dotenv\"\n version = \"0.6.0\"\n+dependencies = [\n+ \"sys_traits\",\n+]\n \n [[package]]\n name = \"deno_error\"", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "c...
2026-03-06T17:37:56
vuejs/vue
a71e653108e4ba56a70107662f3ee30cead59c18
8b43c81ed432d05fdb91badebcbcb4523bbdeddb
fix(types): bump ts version and fix typing bugs (#7135)
[ { "path": "package-lock.json", "patch": "@@ -42,16 +42,6 @@\n \"@types/uglify-js\": \"2.6.29\"\n }\n },\n- \"JSONStream\": {\n- \"version\": \"1.3.1\",\n- \"resolved\": \"https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz\",\n- \"integrity\": \"sha1-cH92HgHa6eFv...
2017-11-27T14:28:38
ollama/ollama
63efa075a0e82688e4fb49fa0bcc081db5f2a5b7
cb03fc9571814edd5af1109bf1a562e813ecb816
update generate scripts with new `LLAMA_CUDA` variable, set `HIP_PLATFORM` to avoid compiler errors (#3528)
[ { "path": "llm/generate/gen_linux.sh", "patch": "@@ -172,7 +172,7 @@ if [ -d \"${CUDA_LIB_DIR}\" ]; then\n # Disabling has minimal performance effect while maintaining compatibility. \n ARM64_DEFS=\"-DLLAMA_AVX=off -DLLAMA_AVX2=off -DLLAMA_AVX512=off -DLLAMA_CUDA_F16=off\"\n fi\n- CMA...
2024-04-07T23:29:51
huggingface/transformers
e2f08ea579c7dfa6951b2b4f9234149288f53747
afd039d1caa1a11dcc03d21bc0bb5c114bf927c2
Attempt to fix VLM gradient enabling (#41993) * attempt to fix gradients * Improve tests, use PreTrainedModel hooks, cleanup * missing patch_embed * fix arg name * local revert * adapt BART test * lingering fails --------- Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1976,13 +1976,44 @@ def enable_input_require_grads(self):\n def make_inputs_require_grads(module, input, output):\n output.requires_grad_(True)\n \n- self._require_grads_hook = self.get_input_embeddings().register_forwa...
2025-12-01T15:32:08
ggml-org/llama.cpp
a63cbafbbc5a7afe80b75486cffa651003aaede4
0e59224990e6b535e87fbf10851dcd35aed04f3a
ggml : arm repack fix build
[ { "path": "ggml/src/ggml-cpu/arch/arm/repack.cpp", "patch": "@@ -24,7 +24,7 @@\n \n #define UNUSED GGML_UNUSED\n \n-#if defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_MATMUL_INT8)\n+#if defined(__aarch64__) && defined(__ARM_NEON) && (defined(__ARM_FEATURE_MATMUL_INT8) || defined(__ARM_...
2025-12-13T20:54:14
vuejs/vue
aa8262540ac0115d56b53863302b9f8e69f8a03d
14e99086c02f4bcda55e639fb0baf2c664591448
fix: fix v-for iterator parsing destructuring + parens without index
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -22,7 +22,8 @@ import {\n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n-export const forIteratorRE = /\\((\\{[^}]*\\}|[^,]*),([^,]*)(?:,([^,]*))?\\)/\n+export const forItera...
2017-11-24T15:09:04
ollama/ollama
cb03fc9571814edd5af1109bf1a562e813ecb816
a5ec9cfc0f5b49ff0496edc5e6b4ed8ab503e14a
Docs: Remove wrong parameter for Chat Completion (#3515) Fixes gh-3514 Signed-off-by: Thomas Vitale <ThomasVitale@users.noreply.github.com>
[ { "path": "docs/api.md", "patch": "@@ -394,7 +394,6 @@ Advanced parameters (optional):\n \n - `format`: the format to return a response in. Currently the only accepted value is `json`\n - `options`: additional model parameters listed in the documentation for the [Modelfile](./modelfile.md#valid-parameters-a...
2024-04-06T16:08:35
denoland/deno
e99c9b99ee7768752ce732e3ab0055b2ea6ea912
3a4ece2ed446448e63baee8ded7d2c660a444495
fix: support value substitution when loading environment variable files (#32495)
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -1266,7 +1266,9 @@ fn get_file_env_vars(\n file_path: &Path,\n ) -> Result<IndexMap<String, String>, deno_dotenv::Error> {\n let mut file_env_vars = IndexMap::new();\n- for item in deno_dotenv::from_path_sanitized_iter(file_path)? {\n+ for item in\n+ ...
2026-03-06T16:04:02
ggml-org/llama.cpp
71fdcf0616fa0f93dab37e4c0d0d77e708e398a9
615655aafe46339f04e2879d14d7d0d68fc2cfcd
ggml : arm repack fix build (whisper/0)
[ { "path": "ggml/src/ggml-cpu/arch/arm/repack.cpp", "patch": "@@ -24,6 +24,7 @@\n \n #define UNUSED GGML_UNUSED\n \n+#if defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_MATMUL_INT8)\n static inline void decode_q4_Kx8_scales_mins(const uint8_t * scales_in,\n ...
2025-12-13T06:04:09
huggingface/transformers
305f82a176ace46166c0bc8f25530b7d15e5c8dd
9f587100bc1e7a21bd22218a058ae14f7ea9b05c
Delete irrelevant test that sometimes fails (#42515) * Delete irrelevant test that sometimes fails * make fixup
[ { "path": "tests/models/bert_japanese/test_tokenization_bert_japanese.py", "patch": "@@ -19,7 +19,6 @@\n import unittest\n \n from transformers import AutoTokenizer\n-from transformers.models.bert.tokenization_bert import BertTokenizer\n from transformers.models.bert_japanese.tokenization_bert_japanese impo...
2025-12-01T15:19:40
vuejs/vue
14e99086c02f4bcda55e639fb0baf2c664591448
df37292f77c813b04c018e1b5865f389ecce75bd
fix(types): add missing ssr renderToString signature
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -11,6 +11,7 @@ interface Renderer {\n renderToString(vm: Vue, callback: RenderCallback): void;\n renderToString(vm: Vue, context: object, callback: RenderCallback): void;\n renderToString(vm: Vue): Promise<string>;\n+ renderToStr...
2017-11-24T14:23:59
denoland/deno
a6e66a80b1c8b5e33cc87df01e31542d75c1d8fe
7fee0367f524253963979a61a421061c9d8b065d
fix(ext/node): make TTY stdout/stderr indestructible (#32530) ## Summary - Libraries like `mute-stream` (used by `@inquirer/prompts`) call `destroy()` or `end()` on `process.stdout`, which previously closed the underlying Deno resource (rid 1/2). This broke subsequent `console.log` calls with `BadResource: Bad resour...
[ { "path": "ext/node/polyfills/internal/tty.js", "patch": "@@ -338,6 +338,28 @@ export class WriteStream extends Socket {\n }\n cb();\n };\n+\n+ // Prevent actually closing stdout/stderr. Libraries like mute-stream\n+ // (used by @inquirer/prompts) call destroy()/end() on the ...
2026-03-06T11:22:40
ggml-org/llama.cpp
615655aafe46339f04e2879d14d7d0d68fc2cfcd
c00ff929dcfd150234e62f30e863bca4f1337aee
cmake : set `CMAKE_RUNTIME_OUTPUT_DIRECTORY` for non standalone build (ggml/1394) Some backend depends on CMAKE_RUNTIME_OUTPUT_DIRECTORY to create temporary file like metal backened. Missing CMAKE_RUNTIME_OUTPUT_DIRECTORY will cause some cmake error like permission denied (try to copy file to root). This PR wants to s...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -54,6 +54,10 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)\n # TODO\n else()\n set(GGML_STANDALONE OFF)\n+\n+ if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)\n+ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)\n+ endif()\n en...
2025-12-12T14:37:38
huggingface/transformers
a3881a8d2f946c4f9d68867e5115f127c8856c2c
297f5ae8aba5d933c07745ece28ce0e4a6e44ec0
perf: Remove implicit CPU-GPU syncs due to implicit .item() call (#42433) * perf: Remove implicit CPU-GPU syncs due to implicit .item() call * fix: replicated the changes across similar files * fix: update the newly added nanochat model files * fix: use input_shape and device instead of input_emdeds properties for ...
[ { "path": "src/transformers/models/apertus/modeling_apertus.py", "patch": "@@ -392,8 +392,8 @@ def forward(\n \n if cache_position is None:\n past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0\n- cache_position: torch.Tensor = torch.arang...
2025-12-01T14:01:58
vuejs/vue
df37292f77c813b04c018e1b5865f389ecce75bd
70fb68b0b092eaefeb6289f5dea3852b72e7743f
chore: fix comment typo (#7113) Random find :)
[ { "path": "build/release.sh", "patch": "@@ -20,7 +20,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n npm run test:ssr\n fi\n \n- # Sauce Labs tests has a decent change of failing\n+ # Sauce Labs tests has a decent chance of failing\n # so we usually manually run them before running the release script.\n \n...
2017-11-23T15:20:19
denoland/deno
6d084821ca18bdb3e6cc58586fa8daff5a4e6889
885ad240ecd08040f5419d2cc51db87bcebf0a3d
fix(ext/node): support des-ede3-cbc cipher and allow Cipheriv/Decipheriv without new (#32519) ## Summary - Add `des` crate and implement `des-ede3-cbc` (Triple DES CBC) cipher for both encrypt and decrypt paths in `ext/node_crypto` - Convert `Cipheriv`/`Decipheriv` from ES6 classes to function constructors so they ca...
[ { "path": "Cargo.lock", "patch": "@@ -2685,6 +2685,7 @@ dependencies = [\n \"deno_crypto_provider\",\n \"deno_error\",\n \"der\",\n+ \"des\",\n \"digest\",\n \"dsa\",\n \"ecb\",\n@@ -3644,6 +3645,15 @@ dependencies = [\n \"syn 2.0.117\",\n ]\n \n+[[package]]\n+name = \"des\"\n+version = \"0.8.1\"\n+s...
2026-03-06T10:39:01
ggml-org/llama.cpp
c00ff929dcfd150234e62f30e863bca4f1337aee
4ed2bae50d64dcff7f99cb2b28f737fda314abf5
scripts: add script to compare logprobs of llama.cpp against other frameworks (#17947) * scripts: add script to compare logits of llama.cpp against other frameworks * accept custom prompt file * fix code style * clarify endpoint * fix displaying * use abs for diff * fix vllm case * rm output file * rename to c...
[ { "path": "scripts/compare-logprobs.py", "patch": "@@ -0,0 +1,281 @@\n+import argparse\n+import requests\n+import json\n+from pathlib import Path\n+import logging\n+\n+logger = logging.getLogger(\"compare-logprobs\")\n+logging.basicConfig(level=logging.INFO)\n+\n+\n+DESCRIPTION = \"\"\"\n+Compare logits bet...
2025-12-13T21:33:29
huggingface/transformers
297f5ae8aba5d933c07745ece28ce0e4a6e44ec0
f78723fa1c0fd6de991ede125a14144189323efc
Fix broken link to dataset food101 (#42495)
[ { "path": "docs/source/ar/preprocessing.md", "patch": "@@ -302,7 +302,7 @@ pip install datasets\n \n </Tip>\n \n-قم بتحميل مجموعة بيانات [food101](https://huggingface.co/datasets/food101) (راجع دليل 🤗 [Datasets tutorial](https://huggingface.co/docs/datasets/load_hub) لمزيد من التفاصيل حول كيفية تحميل مجموع...
2025-12-01T13:25:00
ollama/ollama
4de0126719596f54a93d866df802c0b3c6d0b2b8
9768e2dc7574c36608bb04ac39a3b79e639a837f
fix dll compress in windows building
[ { "path": "llm/generate/gen_windows.ps1", "patch": "@@ -146,7 +146,7 @@ function compress {\n }\n \n write-host \"Compressing dlls...\"\n- $binaries = dir \"${script:buildDir}/bin/*.dll\"\n+ $dlls = dir \"${script:buildDir}/bin/*.dll\"\n foreach ($file in $dlls) {\n & \"$script:GZI...
2024-04-04T13:27:33
vuejs/vue
70fb68b0b092eaefeb6289f5dea3852b72e7743f
dd21eacc33fee8f8e6151fe1dcb419644f8f98c2
chore: fix comment typo
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -193,7 +193,7 @@ export function mountComponent (\n }\n }\n \n- // we set this to vm._watcher inside the wathcer's constructor\n+ // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call ...
2017-11-22T22:57:31
denoland/deno
b05f53cb6e9613e3a58c8e9c59c5d0a5ea51fff4
dd0728d4cfeb39f8b4fd42d7f0f64ee3c1123537
fix: normalize `capture` to boolean in `removeEventListener` options (#32508) Fixes #29681 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/web/02_event.js", "patch": "@@ -830,6 +830,7 @@ function invokeEventListeners(tuple, eventImpl) {\n }\n }\n \n+// https://dom.spec.whatwg.org/#dom-eventtarget-removeeventlistener\n function normalizeEventHandlerOptions(\n options,\n ) {\n@@ -838,7 +839,9 @@ function normalizeEventHandlerO...
2026-03-06T08:33:49
ggml-org/llama.cpp
4ed2bae50d64dcff7f99cb2b28f737fda314abf5
5266379bcae74214af397f36aa81b2a08b15d545
server-models.cpp: add missing <filesystem> (#18000) Fixes: https://github.com/ggml-org/llama.cpp/issues/17999
[ { "path": "tools/server/server-models.cpp", "patch": "@@ -16,6 +16,7 @@\n #include <atomic>\n #include <chrono>\n #include <queue>\n+#include <filesystem>\n \n #ifdef _WIN32\n #include <winsock2.h>", "additions": 1, "deletions": 0, "language": "C++" } ]
2025-12-13T21:02:43
huggingface/transformers
a0216a8021d8b950c69db06440e38307cfa570d4
aaa7325472d05ac587fc20ef29f610f1fb5e684a
Fix a bug where compile_config gets deleted (#42474) * Fix a bug where compile_config gets deleted * Change new kwarg name
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -755,7 +755,7 @@ def save_pretrained(\n \n output_config_file = os.path.join(save_directory, config_file_name)\n \n- self.to_json_file(output_config_file, use_diff=True)\n+ self.to_json_file(output_config_file...
2025-12-01T12:59:52
vuejs/vue
dd21eacc33fee8f8e6151fe1dcb419644f8f98c2
604e081d0456ed136b24b5f759c608d153dfae93
fix: fix async component resolving in sibling mounted hook fix #7107
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -193,7 +193,10 @@ export function mountComponent (\n }\n }\n \n- vm._watcher = new Watcher(vm, updateComponent, noop)\n+ // we set this to vm._watcher inside the wathcer's constructor\n+ // since the watcher's initial patch may call $forceUpd...
2017-11-22T22:12:34
ggml-org/llama.cpp
4d5ae24c0ac79c4e360773bac58dd2c2a46b7f67
66ba51252ed1cf08739fbed8a538d3cb3541655d
arg: fix common_params_parse not accepting negated arg (#17991)
[ { "path": "common/arg.cpp", "patch": "@@ -724,7 +724,7 @@ static void add_rpc_devices(const std::string & servers) {\n }\n }\n \n-bool common_params_parse(int argc, char ** argv, llama_example ex, std::map<common_arg, std::string> & out_map) {\n+bool common_params_to_map(int argc, char ** argv, llama_ex...
2025-12-13T11:53:37
denoland/deno
98d269319c52d723ae5679c55f1506c86bbc8374
c826feeaad1865db233085c0164a92f0b32766d0
chore: better structured Slack output for issue_pr_insights (#32503) ## Summary - Truncate long titles (55 chars) with ellipsis to prevent Slack line wrapping - Add age indicator per item (e.g. `2h`, `1d`) for at-a-glance urgency - Add 🔥 **Hot issues** section — surfaces issues with 3+ recent comments (e.g. bugs repr...
[ { "path": "tools/issue_pr_insights.ts", "patch": "@@ -45,6 +45,16 @@ interface GitHubItem {\n pull_request?: unknown;\n }\n \n+interface GitHubComment {\n+ created_at: string;\n+ user?: { login: string };\n+}\n+\n+interface HotIssue {\n+ item: GitHubItem;\n+ recentComments: number;\n+}\n+\n async func...
2026-03-06T08:07:12
vuejs/vue
604e081d0456ed136b24b5f759c608d153dfae93
3932a451a1419a97ea0200c5cb8096afe9a3e7e7
fix: ensure functionalContext is cloned during slot clones fix #7106
[ { "path": "src/core/instance/render-helpers/resolve-slots.js", "patch": "@@ -20,7 +20,7 @@ export function resolveSlots (\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n- if ((child.context === context || child.functionalContext === context)...
2017-11-22T21:37:24
ollama/ollama
08600d5bec85b7fc74cb8a166d0365fc83360087
a624e672d2b6cbd6b21a80b765789749267853fe
CI subprocess path fix
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -99,7 +99,7 @@ jobs:\n - uses: actions/upload-artifact@v4\n with:\n name: generate-windows-cpu\n- path: llm/build/**/lib/*\n+ path: llm/build/**/bin/*\n \n # ROCm generation step\n generate-windows-rocm:\n...
2024-04-04T02:12:53
huggingface/transformers
aaa7325472d05ac587fc20ef29f610f1fb5e684a
2dba972530b405d70a49f8f7338590db6722843e
Patch Mistral Common Tokenizer 2 (#41962) * Patch Mistral Common Tokenizer 2: fix add_special_tokens * Fix typos * Fix typing issue * Make _get_validation_mode static * wip * Add int support to decode * Add edge test cases * fix * Support batch for decode * fix * Refactor to private logic of batch_decode * ...
[ { "path": "src/transformers/tokenization_mistral_common.py", "patch": "@@ -61,7 +61,7 @@\n Whether or not to add special tokens when encoding the sequences. This will use the underlying\n `PretrainedTokenizerBase.build_inputs_with_special_tokens` function, which defines which...
2025-12-01T12:47:10
denoland/deno
c826feeaad1865db233085c0164a92f0b32766d0
ff1d9b69087b33bbda97130c14bd5b5a245022a6
fix: set `process.features.openssl_is_boringssl` to `true` (#32512) Enables `test-crypto-certificate.js` Node compat test. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -959,8 +959,9 @@ const features = {\n // deno-lint-ignore camelcase\n tls_ocsp: true,\n tls: true,\n+ // Deno uses aws-lc, which is BoringSSL-based.\n // deno-lint-ignore camelcase\n- openssl_is_boringssl: false,\n+ openssl_is_boringssl: tru...
2026-03-06T08:02:47
ggml-org/llama.cpp
66ba51252ed1cf08739fbed8a538d3cb3541655d
36255a22681583c3787bce778132c89d74da4e4c
cmake: correct scope - link ws2_32 for MinGW/w64devkit builds in cpp-httplib (#17972) * fix - w64devkit build * fix - w64devkit build private scope
[ { "path": "vendor/cpp-httplib/CMakeLists.txt", "patch": "@@ -11,8 +11,9 @@ endif()\n target_link_libraries (${TARGET} PRIVATE Threads::Threads)\n \n if (WIN32 AND NOT MSVC)\n- target_link_libraries(${TARGET} PUBLIC ws2_32)\n+ target_link_libraries(${TARGET} PRIVATE ws2_32)\n endif()\n+\n target_compi...
2025-12-13T11:46:36
vuejs/vue
3932a451a1419a97ea0200c5cb8096afe9a3e7e7
f93c1585f927aedfdd79e3d9d44da74edcd91155
fix(keep-alive): should not destroy active instance when pruning cache fix #7105
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -41,7 +41,7 @@ function pruneCacheEntry (\n current?: VNode\n ) {\n const cached = cache[key]\n- if (cached && cached !== current) {\n+ if (cached && (!current || cached.tag !== current.tag)) {\n cached.componentInstance.$destroy()\n }\...
2017-11-22T20:26:39
huggingface/transformers
01823d7e46018acef1b603022e092c1271f6b4c1
e51e75e18a209e00e8de6ca244eec714b2d4af2d
[`CI`] Fix copies (#42487) copies
[ { "path": "src/transformers/models/nanochat/modeling_nanochat.py", "patch": "@@ -30,6 +30,7 @@\n from ...activations import ACT2FN\n from ...cache_utils import Cache, DynamicCache\n from ...generation import GenerationMixin\n+from ...integrations import use_kernel_func_from_hub\n from ...masking_utils impor...
2025-12-01T09:57:01
ggml-org/llama.cpp
fd1085ffb71dabf4490b428512d0fd6fdc637536
380b4c984e06f8d8381392d15814b3392e39560e
model-conversion : use CONVERTED_MODEL value for converted model [no ci] (#17984) * model-conversion : use CONVERTED_MODEL value for converted model [no ci] This commit updates the model verification scripts to use the CONVERTED_MODEL environment variable instead of using the MODEL_PATH (the original model path) as t...
[ { "path": "examples/model-conversion/scripts/causal/compare-logits.py", "patch": "@@ -1,10 +1,13 @@\n #!/usr/bin/env python3\n \n-import numpy as np\n import sys\n-import os\n+import numpy as np\n from pathlib import Path\n \n+# Add utils directory to path for direct script execution\n+sys.path.insert(0, st...
2025-12-13T07:34:26
denoland/deno
ff1d9b69087b33bbda97130c14bd5b5a245022a6
d26e5c48f5d58a4dc077f92ff477c205dc3aabdf
test: add expected failure support to node_compat test harness (#32451) ## Summary Extends the node_compat test harness to support **expected failures** — tests that are known to fail with a specific exit code and/or output pattern. This avoids disabling tests entirely when we know they fail in a predictable way. ##...
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1,4 +1,5 @@\n {\n+ \"$schema\": \"./schema.json\",\n \"tests\": {\n \"abort/test-addon-register-signal-handler.js\": {},\n \"abort/test-addon-uv-handle-leak.js\": {},\n@@ -1646,10 +1647,9 @@\n \"parallel/test-zlib-brotli-from-brotli.js...
2026-03-06T07:47:46
vuejs/vue
f93c1585f927aedfdd79e3d9d44da74edcd91155
fcc122931b504655c8255645d57612bc74c0f594
chore: fix BACKERS.md opencollective links
[ { "path": "BACKERS.md", "patch": "@@ -29,8 +29,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Platinum via OpenCollective</h2>\n \n-<!-- <a href=\"https://opencollective.com/vuejs/platinumsponsor/0/website\" target=\"_blank\"><img src=\"https:/...
2017-11-21T21:05:06
huggingface/transformers
e51e75e18a209e00e8de6ca244eec714b2d4af2d
0c05c3bd6c5cfe71d7ad480f2b15879df2f6f903
remove tokenizer warning (#42483) * fix warning * fix * remove
[ { "path": "src/transformers/tokenization_utils_base.py", "patch": "@@ -1827,16 +1827,14 @@ def _from_pretrained(\n if tokenizer_config_file is not None:\n with open(tokenizer_config_file, encoding=\"utf-8\") as tokenizer_config_handle:\n init_kwargs = json.load(tokenizer_...
2025-12-01T09:50:30
ollama/ollama
e4a7e5b2cad59a5a0df6cd6c3d008be7c779dcb0
a0a15cfd5b37611d25ee5a4bf5333d96ad6018bd
Fix CI release glitches The subprocess change moved the build directory arm64 builds weren't setting cross-compilation flags when building on x86
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -99,7 +99,7 @@ jobs:\n - uses: actions/upload-artifact@v4\n with:\n name: generate-windows-cpu\n- path: llm/llama.cpp/build/**/lib/*\n+ path: llm/build/**/lib/*\n \n # ROCm generation step\n generate-windo...
2024-04-03T23:41:40
denoland/deno
d26e5c48f5d58a4dc077f92ff477c205dc3aabdf
8e31633863a0da4b545a0f48e8e226599527e3fe
fix(ext/node): implement proper `resourceLimits` for `node:worker_threads` (#32430) ## Summary Implements proper `resourceLimits` support for `node:worker_threads`, matching Node.js behavior: - **Individual V8 ResourceConstraints**: Uses `set_max_old_generation_size_in_bytes`, `set_max_young_generation_size_in_bytes...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -369,6 +369,54 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n bundle_provider: shared.bundle_provider.clone(),\n };\n let maybe_initial_cwd = shared.options.maybe_initial_cwd.clone();\n+ // Apply resource limits to v8::Cre...
2026-03-06T07:33:05
ggml-org/llama.cpp
380b4c984e06f8d8381392d15814b3392e39560e
e39a2ce66d0a61915f22097e5453e291618b3518
common: support negated args (#17919) * args: support negated args * update docs * fix typo * add more neg options * Apply suggestions from code review Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> * rm duplicated arg * fix LLAMA_ARG_NO_HOST * add test --------- Co-authored-by: Sigbjørn Skjæ...
[ { "path": "common/arg.cpp", "patch": "@@ -105,6 +105,16 @@ bool common_arg::is_exclude(enum llama_example ex) {\n \n bool common_arg::get_value_from_env(std::string & output) const {\n if (env == nullptr) return false;\n+ if (!args_neg.empty()) {\n+ // for compatibility, we need to check LLAMA...
2025-12-12T22:58:53
vuejs/vue
fcc122931b504655c8255645d57612bc74c0f594
3554eb27269e151a0ef3d8c4ad9b29ec6664c471
fix(types): improve and test bundleRenderer.renderToString Promise types
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -18,6 +18,7 @@ interface Renderer {\n interface BundleRenderer {\n renderToString(callback: RenderCallback): void;\n renderToString(context: object, callback: RenderCallback): void;\n+ renderToString(): Promise<string>;\n renderT...
2017-11-21T15:28:30
huggingface/transformers
0c05c3bd6c5cfe71d7ad480f2b15879df2f6f903
26dbe643d1599e9550e279498ea0a23753953723
Fix `pr_build_doc_with_comment.yml` not reporting correctly (#42505) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr_build_doc_with_comment.yml", "patch": "@@ -110,7 +110,7 @@ jobs:\n env:\n GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n GITHUB_RUN_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\n- STATUS_OK: ${{ contains(fromJSON('[\"skipped...
2025-12-01T09:25:07
ollama/ollama
cd135317d24cc8f48a883b6f9c025fc60870a13b
4f895d633f7bab3e1b655f05c24f24c9472a5e85
Fix macOS builds on older SDKs (#3467)
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -64,10 +64,10 @@ jobs:\n echo $env:PATH\n go generate -x ./...\n if: ${{ startsWith(matrix.os, 'windows-') }}\n- name: \"Windows Go Generate\"\n+ name: 'Windows Go Generate'\n - run: go generate -x ./...\n ...
2024-04-03T17:45:54
denoland/deno
f19102c59100b1bb719e28c5187f57b4695b5c16
f02065564c1d86362167888431ba6c3262689e72
fix(core): switch to V8 Explicit microtask policy for correct nextTick ordering (#32466) ## Summary - Switches deno_core from V8's **Auto** microtask policy to **Explicit** so that `process.nextTick` callbacks run before `Promise.then` callbacks, matching Node.js behavior - Guards pre-drain `perform_microtask_checkpoi...
[ { "path": "ext/ffi/callback.rs", "patch": "@@ -190,6 +190,10 @@ unsafe extern \"C\" fn deno_ffi_callback(\n if tc_scope.exception().is_some() {\n log::error!(\"Illegal unhandled exception in nonblocking callback\");\n }\n+ // Flush microtasks queued by the callback b...
2026-03-05T15:19:21
ggml-org/llama.cpp
e39a2ce66d0a61915f22097e5453e291618b3518
a8c7f33d792c7ba8ecb889752f80945373e2ddfc
clip: move model cgraphs into their own files (#17965) * clip: move model cgraphs into their own files * more explicit enums * fix linux build * fix naming * missing headers * nits: add comments for contributors
[ { "path": "tools/mtmd/CMakeLists.txt", "patch": "@@ -6,11 +6,25 @@ add_library(mtmd\n mtmd.cpp\n mtmd-audio.cpp\n mtmd.h\n+ mtmd-helper.cpp\n+ mtmd-helper.h\n clip.cpp\n clip.h\n clip-impl.h\n- mtmd-help...
2025-12-12T20:14:48
vuejs/vue
3554eb27269e151a0ef3d8c4ad9b29ec6664c471
b0bbcbd152782bcc8d5ad5e9c9e5842e1daf1afb
fix(types): add Promise signature for bundleRenderer.renderToString (#7098) * Make callback optional when providing context Otherwise TypeScript compiler complains about `not assignable to parameter of type 'RenderCallback'` * Update index.d.ts
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -18,6 +18,7 @@ interface Renderer {\n interface BundleRenderer {\n renderToString(callback: RenderCallback): void;\n renderToString(context: object, callback: RenderCallback): void;\n+ renderToString(context: object): Promise<strin...
2017-11-21T15:25:30
ollama/ollama
7d05a6ee8f44b314fa697a427439e5fa4d78c3d7
464d8178242db7b304c543afdcca2fced7608fb2
cmd: provide feedback if OLLAMA_MODELS is set on non-serve command (#3470) This also moves the checkServerHeartbeat call out of the "RunE" Cobra stuff (that's the only word I have for that) to on-site where it's after the check for OLLAMA_MODELS, which allows the helpful error message to be printed before the serve...
[ { "path": "cmd/cmd.go", "patch": "@@ -226,6 +226,14 @@ func createBlob(cmd *cobra.Command, client *api.Client, path string) (string, er\n }\n \n func RunHandler(cmd *cobra.Command, args []string) error {\n+\tif os.Getenv(\"OLLAMA_MODELS\") != \"\" {\n+\t\treturn errors.New(\"OLLAMA_MODELS must only be set f...
2024-04-03T05:11:13
denoland/deno
f02065564c1d86362167888431ba6c3262689e72
0c8469433a80aa3b2513c9c462c55b0b6804319c
test: modernize "node_compat" test runner (#32482) ## Summary Modernizes the node compat test runner (`tests/node_compat/mod.rs`) with three improvements: ### 1. Simplified test filtering Any test from the Node.js suite can now be run directly with a filter, **regardless of whether it's listed in `config.jsonc`**: ...
[ { "path": "tests/node_compat/mod.rs", "patch": "@@ -13,16 +13,19 @@ use file_test_runner::collection::CollectedCategoryOrTest;\n use file_test_runner::collection::CollectedTest;\n use file_test_runner::collection::CollectedTestCategory;\n use regex::Regex;\n+use report::CollectedResult;\n+use report::ErrorI...
2026-03-05T14:50:17