Skip to content

Commit d74ca30

Browse files
committed
Bump version to 0.2.3
1 parent b6c7f1f commit d74ca30

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "llm-dna"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Extract LLM DNA vectors — low-dimensional representations that capture functional behavior and model evolution."
55
authors = [{ name = "LLM-DNA Project" }]
66
license = { file = "LICENSE" }

src/llm_dna/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class DNAExtractionConfig:
3030
probe_set: str = "rand"
3131
max_samples: int = 100
3232
data_root: str = "./data"
33-
extractor_type: str = "embedding" # Only "embedding" is supported since v0.3.0
33+
extractor_type: str = "embedding" # Only "embedding" is supported since v0.2.3
3434
dna_dim: int = 128
3535
reduction_method: str = "random_projection"
3636
embedding_merge: str = "concat"
@@ -553,7 +553,7 @@ def calc_dna(config: DNAExtractionConfig) -> DNAExtractionResult:
553553
if config.extractor_type != "embedding":
554554
raise ValueError(
555555
f"Unsupported extractor_type '{config.extractor_type}' for calc_dna. "
556-
"Only 'embedding' is supported. Hidden-state extraction was removed in v0.3.0; "
556+
"Only 'embedding' is supported. Hidden-state extraction was removed in v0.2.3; "
557557
"all models now use the unified text-response embedding pipeline."
558558
)
559559

0 commit comments

Comments
 (0)