From: Xuan-Son Nguyen Date: Sun, 28 Dec 2025 08:57:04 +0000 (+0100) Subject: mtmd: clarify that we no longer accept AI-generated PRs (#18406) X-Git-Tag: upstream/0.0.7599~41 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=cffa5c46eaf6eddb0db27eeef1c76204fae98984;p=pkg%2Fggml%2Fsources%2Fllama.cpp mtmd: clarify that we no longer accept AI-generated PRs (#18406) --- diff --git a/tools/mtmd/models/models.h b/tools/mtmd/models/models.h index 8d6d4ef6..e08c33f3 100644 --- a/tools/mtmd/models/models.h +++ b/tools/mtmd/models/models.h @@ -2,6 +2,11 @@ #include "../clip-graph.h" +/* + * IMPORTANT: The mtmd module does NOT accept pull requests that are fully or predominantly AI-generated. + * We encourage human contributors to ensure the quality and reliability of the codebase. + */ + struct clip_graph_siglip : clip_graph { clip_graph_siglip(clip_ctx * ctx, const clip_image_f32 & img) : clip_graph(ctx, img) {} ggml_cgraph * build() override; diff --git a/tools/mtmd/mtmd.h b/tools/mtmd/mtmd.h index 9f7e861e..44d05cea 100644 --- a/tools/mtmd/mtmd.h +++ b/tools/mtmd/mtmd.h @@ -27,6 +27,9 @@ * - Make sure the C API is aligned with the libllama C API (as in llama.h) * - Do not include model name (e.g., qwen, gemma) in the API, use generic terms instead * - Keep the API minimal, do not expose internal details unless necessary + * + * IMPORTANT: The mtmd module does NOT accept pull requests that are fully or predominantly AI-generated. + * We encourage human contributors to ensure the quality and reliability of the codebase. */ #ifdef LLAMA_SHARED