Skip to content

Commit 14760a9

Browse files
typo fix from review
Co-authored-by: Max Ryabinin <mryabinin0@gmail.com>
1 parent 0cf2f6d commit 14760a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/together/cli/api/evaluation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def create(
255255

256256
elif type == "compare":
257257
# Check if either model-a or model-b config/name is provided
258-
model_a_provided = model_a_field or any(
258+
model_a_provided = model_a_field is not None or any(
259259
[
260260
model_a_name,
261261
model_a_max_tokens,

0 commit comments

Comments
 (0)