Helper — NO benchmark or scenario fields (production-like).
(messages=None, step_index=1, total_steps=1)
| 4 | |
| 5 | |
| 6 | def _make_row(messages=None, step_index=1, total_steps=1): |
| 7 | """Helper — NO benchmark or scenario fields (production-like).""" |
| 8 | if messages is None: |
| 9 | messages = [ |
| 10 | {"role": "system", "content": "You are helpful."}, |
| 11 | {"role": "user", "content": "Fix this bug."}, |
| 12 | ] |
| 13 | return { |
| 14 | "messages": messages, |
| 15 | "step_index": step_index, |
| 16 | "total_steps": total_steps, |
| 17 | } |
| 18 | |
| 19 | |
| 20 | def test_short_no_tools_predicts_low(): |
no outgoing calls
no test coverage detected