Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
# There's no platform specific SDK code, but explicitly check Windows anyway
os: [ubuntu-22.04, windows-2019]
os: [ubuntu-22.04, windows-2022]

# Check https://github.com/actions/action-versions/tree/main/config/actions
# for latest versions if the standard actions start emitting warnings
Expand Down
2 changes: 1 addition & 1 deletion tests/test_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def _append_fragment(f: LlmPredictionFragment, round_index: int) -> None:
assert cloned_chat._messages == chat._messages


def divide(numerator: float, denominator: float) -> float | str:
def divide(numerator: float, denominator: float) -> float:
"""Divide the given numerator by the given denominator. Return the result."""
return numerator / denominator

Expand Down