Files
OpenJarvis/tests/learning/intelligence/test_grpo_trainer.py
T
05f2c02131 feat: Algolia DocSearch + learning subsystem reorganization (#43)
* chore: create learning subdirectory structure (routing, agents, intelligence)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: extract classify_query to routing/_utils.py

Move the classify_query() function and its regex patterns into a shared
utility module so multiple routing policies can import it without
depending on the full trace_policy module.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: move routing files to learning/routing/ subdirectory

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: create LearnedRouterPolicy merging trace-driven + SFT routing

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add conditional Algolia DocSearch integration

Add Algolia DocSearch as an optional search upgrade — native lunr.js
search remains the default until credentials are configured. Includes
CDN assets, Jinja2 conditional config injection, init script with
graceful fallback, light/dark theme CSS, improved search tokenization
for snake_case/dotted identifiers, and search boosts for key pages.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: move agent_evolver and skill_discovery to learning/agents/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: move learning/orchestrator to learning/intelligence/orchestrator

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: delete removed learning policies, rewrite __init__.py, clean up api_routes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add SFT/GRPO/DSPy/GEPA config dataclasses, update LearningConfig

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add general-purpose SFT trainer (intelligence/sft_trainer.py)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: update stale imports in multi_model_router example

Update imports to use new learning/routing/ paths after the
subdirectory reorganization. Replace BanditRouterPolicy with
LearnedRouterPolicy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add general-purpose GRPO trainer (intelligence/grpo_trainer.py)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add DSPy agent optimizer (agents/dspy_optimizer.py)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add GEPA agent optimizer (agents/gepa_optimizer.py)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* feat: add learning-dspy and learning-gepa optional dependency extras

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: update integration test to check for learned policy instead of grpo

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: clean up stale APIs and unused params in examples

- deep_research: remove system_prompt and max_turns params not accepted
  by Jarvis.ask(), inline system prompt into the query instead
- doc_qa: remove unused --top-k CLI arg that was never passed to the API
- multi_model_router: fix select_model() call to match single-arg signature

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: import SFT/GRPO trainers in intelligence/__init__.py for registry

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: remove .md file changes from PR

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: restore search boost frontmatter for key docs pages

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 21:34:31 -07:00

89 lines
3.2 KiB
Python

"""Tests for the general-purpose GRPO trainer."""
from __future__ import annotations
from unittest.mock import MagicMock, patch
class TestGRPOConfig:
def test_default_config(self) -> None:
from openjarvis.core.config import GRPOConfig
cfg = GRPOConfig()
assert cfg.model_name == "Qwen/Qwen3-1.7B"
assert cfg.num_samples_per_prompt == 8
assert cfg.kl_coef == 0.0001
assert cfg.clip_ratio == 0.2
assert cfg.min_prompts == 10
class TestDefaultRewardFn:
def test_score_returns_float(self) -> None:
from openjarvis.learning.intelligence.grpo_trainer import DefaultRewardFn
reward = DefaultRewardFn()
score = reward.score("prompt", "response", None)
assert isinstance(score, float)
assert 0.0 <= score <= 1.0
def test_score_with_ground_truth(self) -> None:
from openjarvis.learning.intelligence.grpo_trainer import DefaultRewardFn
reward = DefaultRewardFn()
# When response matches ground truth, score should be higher
score_match = reward.score("what is 2+2?", "4", "4")
score_no_match = reward.score("what is 2+2?", "5", "4")
assert score_match > score_no_match
class TestGRPOTrainer:
def test_init(self) -> None:
from openjarvis.core.config import GRPOConfig
from openjarvis.learning.intelligence.grpo_trainer import GRPOTrainer
cfg = GRPOConfig()
trainer = GRPOTrainer(cfg)
assert trainer.config is cfg
def test_train_on_prompts_empty(self) -> None:
from openjarvis.core.config import GRPOConfig
from openjarvis.learning.intelligence.grpo_trainer import GRPOTrainer
trainer = GRPOTrainer(GRPOConfig())
result = trainer.train_on_prompts([])
assert result["status"] == "skipped"
def test_train_on_prompts_too_few(self) -> None:
from openjarvis.core.config import GRPOConfig
from openjarvis.learning.intelligence.grpo_trainer import GRPOTrainer
trainer = GRPOTrainer(GRPOConfig(min_prompts=5))
result = trainer.train_on_prompts(["hello"])
assert result["status"] == "skipped"
assert "min_prompts" in result.get("reason", "")
def test_custom_reward_fn(self) -> None:
from openjarvis.core.config import GRPOConfig
from openjarvis.learning.intelligence.grpo_trainer import GRPOTrainer
class MyReward:
def score(
self, prompt: str, response: str, ground_truth: str | None
) -> float:
return 0.42
trainer = GRPOTrainer(GRPOConfig(), reward_fn=MyReward())
assert trainer.reward_fn.score("a", "b", None) == 0.42
def test_train_delegates_to_miner(self) -> None:
from openjarvis.core.config import GRPOConfig
from openjarvis.learning.intelligence.grpo_trainer import GRPOTrainer
trainer = GRPOTrainer(GRPOConfig(min_prompts=1))
mock_store = MagicMock()
with patch.object(trainer, "_mine_prompts", return_value=[]) as mock_mine:
result = trainer.train(mock_store)
mock_mine.assert_called_once_with(mock_store)
assert result["status"] == "skipped"