()
| 78 | |
| 79 | |
| 80 | def test_medium_prompt(): |
| 81 | sig = StructuralSignal() |
| 82 | row = {"messages": [{"role": "user", "content": "Write a Python function that reverses a string"}]} |
| 83 | vote = sig.predict(row) |
| 84 | assert 0 <= vote.tier_id <= 3 |
| 85 | assert 0.0 <= vote.confidence <= 1.0 |
| 86 | |
| 87 | |
| 88 | def test_empty_messages_abstains(): |
nothing calls this directly
no test coverage detected