Commit ad12511
committed
Fix _GatedLLM.completion override after _return_metrics removal
The `_return_metrics` parameter was removed from LLM/TestLLM.completion in
2bedbd8 (removed_in 1.29.0, on this release branch), but
tests/agent_server/test_goal_loop.py's _GatedLLM override (added in #3770)
still declared it as a positional param and forwarded it to
super().completion(), which pyright flagged as an incompatible override
and a 5-positional call against the new 4-positional signature. Drop
_return_metrics to match.1 parent 884c996 commit ad12511
1 file changed
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
47 | 46 | | |
48 | 47 | | |
49 | 48 | | |
| |||
53 | 52 | | |
54 | 53 | | |
55 | 54 | | |
56 | | - | |
57 | 55 | | |
58 | 56 | | |
59 | 57 | | |
| |||
0 commit comments