File size: 608 Bytes
55b0bab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | [project]
name = "decensor-env"
version = "0.3.1"
description = "Unified decensor env with toggleable judges — adherence, word count, markdown, reasoning trace all configurable via TOML args"
tags = ["single-turn", "refusals", "train", "eval"]
requires-python = ">=3.10"
dependencies = [
"verifiers>=0.1.9",
"datasets",
"httpx",
"huggingface_hub",
"wandb",
"slop-guard",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["decensor_env.py", "pyproject.toml"]
[tool.verifiers.eval]
num_examples = 50
rollouts_per_example = 8
|