-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.44 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "context-admission-control"
version = "1.4.0"
description = "DecisionRiskBench v1.4 for Context Admission Control vs chunk-stuffing RAG baselines"
readme = "README.md"
authors = [ { name = "Your Name", email = "you@example.com" } ]
urls = { "Homepage" = "https://github.com/OWNER/REPO" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["rag", "retrieval", "benchmark", "llm", "context-engineering"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = ["pytest>=8"]
llm = [
"torch>=2.0",
"transformers>=4.40",
"accelerate>=0.30",
]
[project.scripts]
decision-risk-bench = "benchmarks.decision_risk.run:main"
decision-risk-export-prompts = "benchmarks.decision_risk.export_llm_eval_prompts:main"
decision-risk-llm-eval = "benchmarks.decision_risk.llm_eval:main"
cac-llm-eval = "benchmarks.llm_runner.run:main"
[tool.setuptools.packages.find]
include = ["cac*", "benchmarks*"]
[tool.pytest.ini_options]
pythonpath = ["."]