You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that Kilo is supported as a benchmark provider in OpenClaw, and this software is from the Kilo team, it made sense to support Kilo as a judging provider. Requires KILO_API_KEY to be set in similar fashion to the other judging providers.
This is a well-implemented addition. The _judge_via_kilo function follows the exact same pattern as _judge_via_openrouter — consistent with the existing codebase. The routing dispatch correctly inserts the kilo/ check before the other providers, and the new test file provides solid coverage (missing key, correct request shape, and dispatch isolation). Nothing to flag.
This is a clean, well-structured addition. The _judge_via_kilo implementation follows the exact same pattern as the existing _judge_via_openrouter and _judge_via_openai providers — consistent error handling, KILO_API_KEY guard, model prefix stripping, and delegation to the shared _judge_via_openai_compat helper. The new test file covers the key cases (missing key, correct URL/payload, dispatch isolation) thoroughly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Given that Kilo is supported as a benchmark provider in OpenClaw, and this software is from the Kilo team, it made sense to support Kilo as a judging provider. Requires
KILO_API_KEYto be set in similar fashion to the other judging providers.