mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-31 03:12:16 +00:00
- 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>
6 lines
197 B
Python
6 lines
197 B
Python
"""Backward-compat shim — canonical location is learning._stubs."""
|
|
|
|
from openjarvis.learning._stubs import QueryAnalyzer, RouterPolicy # noqa: F401
|
|
|
|
__all__ = ["QueryAnalyzer", "RouterPolicy"]
|