mirror of
https://github.com/p-e-w/heretic.git
synced 2026-07-09 17:28:29 +00:00
* fix: remove notebook input shims Closes #280 * feat: support headless operation (no interactive input) * fix: prevent infinite loops * feat: add end-to-end tests * ci: run tests in CI * ci: fix test output ordering * fix: replace home-cooked `set_seed` function with Transformers builtin * feat: print PyTorch config when running tests * feat: print additional information * experiment: try to standardize test environment * fix: revert environment changes * feat: support multiple valid hashes for each output file * feat: add test output hashes for CI * feat: add test output hashes for CI (alternative environment) * feat: add hashes for Windows (#394) * fix: Hash on windows * trigger ci * fix: prefer .yaml (used widely than .toml for model configs) * use removeprefix * docs: restore commet * use removeprefix again * tests: Add windows hash files for all test models * trigger ci * fix: minor cleanup * clean merge mismatch * remove unnecessary CRLF replace, now that we support more SUMS files * fix: use binary mode for hashes everywhere --------- Co-authored-by: Vinay Umrethe <umrethevinay@gmail.com>
80 lines
2 KiB
TOML
80 lines
2 KiB
TOML
[project]
|
|
name = "heretic-llm"
|
|
version = "1.4.0"
|
|
description = "Fully automatic censorship removal for language models"
|
|
readme = "README.md"
|
|
license = "AGPL-3.0-or-later"
|
|
authors = [
|
|
{ name = "Philipp Emanuel Weidmann", email = "pew@worldwidemann.com" }
|
|
]
|
|
requires-python = ">=3.10"
|
|
keywords = ["llm", "transformer", "abliteration"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Environment :: GPU",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"accelerate~=1.13",
|
|
"bitsandbytes~=0.49",
|
|
"datasets~=4.7",
|
|
"huggingface-hub~=1.7",
|
|
"immutabledict~=4.3",
|
|
"langdetect~=1.0",
|
|
"lm-eval[hf]~=0.4",
|
|
"numpy~=2.2",
|
|
"optuna~=4.7",
|
|
"peft~=0.19",
|
|
"psutil~=7.2",
|
|
"py-cpuinfo~=9.0",
|
|
"pydantic-settings~=2.13",
|
|
"questionary~=2.1",
|
|
"rich~=14.3",
|
|
"tomli-w~=1.2",
|
|
"torch", # version deliberately unspecified
|
|
"torchvision", # version deliberately unspecified
|
|
"tqdm~=4.67",
|
|
"transformers[kernels]~=5.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
research = [
|
|
"geom-median~=0.1",
|
|
"imageio~=2.37",
|
|
"matplotlib~=3.10",
|
|
"pacmap~=0.8",
|
|
"scikit-learn~=1.7",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.14.5",
|
|
"ty>=0.0.5",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://heretic-project.org"
|
|
Documentation = "https://heretic-project.org/tutorial"
|
|
Repository = "https://github.com/p-e-w/heretic.git"
|
|
Issues = "https://github.com/p-e-w/heretic/issues"
|
|
Changelog = "https://github.com/p-e-w/heretic/releases"
|
|
|
|
[project.scripts]
|
|
heretic = "heretic.main:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.11,<0.9.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv]
|
|
exclude-newer = "7 days"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = "heretic"
|