-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.28 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (76 loc) · 2.28 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "openinterp"
version = "0.3.1"
description = "Python SDK + CLI for openinterp.org — Atlas search, SAE Traces, FabricationGuard hallucination detection, AgentProbeGuard mid-reasoning gate for code agents, InterpScore. The operational layer for mechanistic interpretability."
authors = [{name = "Caio Vicentino", email = "hi@openinterp.org"}]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"interpretability",
"sparse autoencoder",
"mechanistic interpretability",
"sae",
"LLM",
"ai safety",
"transformer",
"trace",
"circuit",
"hallucination",
"fabrication",
"guard",
"linear probe",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.1",
"requests>=2.31",
"rich>=13.0",
"pydantic>=2.0",
"huggingface_hub>=0.27",
]
[project.optional-dependencies]
# Real model + SAE loading for `trace`, `score`, `steer`, `guard`
full = [
"torch>=2.3",
"transformers>=4.55",
"safetensors>=0.4",
"accelerate>=1.0",
"numpy>=1.26",
"scikit-learn>=1.3",
"joblib>=1.3",
]
# Developer tooling
dev = [
"pytest>=7",
"pytest-cov>=4",
"ruff>=0.4",
"build>=1.0",
"twine>=5.0",
]
[project.scripts]
openinterp = "openinterp.cli:main"
[project.urls]
Homepage = "https://openinterp.org"
Repository = "https://github.com/OpenInterpretability/cli"
Documentation = "https://openinterp.org/docs"
"Bug Tracker" = "https://github.com/OpenInterpretability/cli/issues"
Changelog = "https://github.com/OpenInterpretability/cli/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["openinterp"]
[tool.hatch.build.targets.sdist]
include = ["openinterp", "tests", "README.md", "LICENSE", "CHANGELOG.md", "pyproject.toml"]