[docs]classmodeling_cmd_batch_req(BaseModel):"""A sequence of modeling requests. If any request fails, following requests will not be tried."""batch_id:ModelingCmdIdrequests:List[ModelingCmdReq]responses:bool=Falsetype:Literal["modeling_cmd_batch_req"]="modeling_cmd_batch_req"model_config=ConfigDict(protected_namespaces=())
[docs]classping(BaseModel):"""The client-to-server Ping to ensure the WebSocket stays alive."""type:Literal["ping"]="ping"model_config=ConfigDict(protected_namespaces=())
[docs]classmetrics_response(BaseModel):"""The response to a metrics collection request from the server."""metrics:ClientMetricstype:Literal["metrics_response"]="metrics_response"model_config=ConfigDict(protected_namespaces=())