Files
OpenJarvis/evals/pyproject.toml
T
Jon Saad-FalconandClaude Opus 4.6 323d7ff032 Add TOML config system for eval suites, pillar-aligned config, and documentation
- Eval config: TOML-based suite configs defining models x benchmarks matrix,
  loaded via --config flag. Includes load_eval_config(), expand_suite(),
  7 config dataclasses, 3 example configs, and 61 new tests.
- Pillar-aligned config: generation params in IntelligenceConfig, nested
  engine/learning configs, agent objective/system_prompt/context_from_memory,
  structured learning sub-policies, TOML migration layer.
- Documentation: evaluations user guide, evals API reference, updated
  mkdocs.yml navigation, updated architecture docs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 03:34:05 +00:00

25 lines
520 B
TOML

[project]
name = "openjarvis-evals"
version = "0.1.0"
description = "Evaluation framework for OpenJarvis"
requires-python = ">=3.10"
dependencies = [
"openjarvis>=1.0.0",
"click>=8",
"datasets>=2.14",
"huggingface-hub>=0.20",
"tqdm>=4.65",
"rich>=13",
"tomli>=2.0; python_version < '3.11'",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5"]
[project.scripts]
openjarvis-eval = "evals.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"