mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
12 lines
227 B
Python
12 lines
227 B
Python
![]() |
from dataclasses import dataclass
|
||
|
|
||
|
# Version 0 -> 1: Added log streaming and changed behavior of job logs cli.
|
||
|
CURRENT_VERSION = "1"
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class VersionResponse:
|
||
|
version: str
|
||
|
ray_version: str
|
||
|
ray_commit: str
|