Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/copyright-check.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ $global:copyright_results = @{

$ignored_files = @('.clang-format', '.gitattributes', '.gitignore', '.gitkeep', '.patch', 'Cargo.lock', 'LICENSE', 'uv.lock', 'rust-toolchain.toml', 'codespell.txt', 'exclusions.txt')
write-debug "<copyright-check> ignored_files = ['$($ignored_files -join "','")']."
$ignored_paths = @('.github', '.mypy_cache', '.pytest_cache', 'lib/llm/tests/data/sample-models')
$ignored_paths = @('.github', '.mypy_cache', '.pytest_cache', 'lib/llm/tests/data/sample-models', 'lib/llm/tests/data/deepseek-v3.2')
write-debug "<copyright-check> ignored_paths = ['$($ignored_paths -join "','")']."
$ignored_types = @('.bat', '.gif', '.ico', '.ipynb', '.jpg', '.jpeg', '.patch', '.png', '.pyc', '.pyi', '.rst', '.zip', '.md', '.json')
write-debug "<copyright-check> ignored_types = ['$($ignored_types -join "', '")']."
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ repos:
- id: mixed-line-ending
- id: requirements-txt-fixer
- id: trailing-whitespace
exclude: lib/llm/tests/data/deepseek-v3.2/.*\.txt$

# NOTE: removing from pre commit
# will move to gitlab ci to run in proper
Expand Down
11 changes: 10 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
Apache License
NOTICE: The test data files under ./lib/llm/tests/data/deepseek-v3.2 are
derived from the DeepSeek-V3.2 model repository (originally developed by
DeepSeek). The original files were obtained from:
https://huggingface.co/deepseek-ai/DeepSeek-V3.2 (commit c69397ecfd1fd142e90e3fbad51f4c7e40b9f3d3)
These files are licensed under the MIT License. The full text of the MIT
License can be found in ./lib/llm/tests/data/deepseek-v3.2/LICENSE.
The rest of this codebase is licensed under the Apache License 2.0 as
described below.

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down
1 change: 1 addition & 0 deletions lib/llm/src/preprocessor/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use minijinja::value::Value;
use std::collections::HashMap;
use std::sync::Arc;

pub mod deepseek_v32;
mod template;

pub use template::ContextMixins;
Expand Down
Loading
Loading