File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ class EndpointDeploymentSummary(BaseModel):
3030 created_at : datetime = FieldInfo (alias = "createdAt" )
3131 """Timestamp when the deployment was created."""
3232
33- hardware : str
33+ estimated_effective_traffic_share : float = FieldInfo ( alias = "estimatedEffectiveTrafficShare" )
3434 """
35- Hardware configuration selected by the deployment's config, such as its GPU type
36- and count .
35+ Estimated fraction from 0 to 1 of endpoint traffic currently routed to this
36+ deployment .
3737 """
3838
3939 model : str
@@ -73,10 +73,10 @@ class EndpointDeploymentSummary(BaseModel):
7373 desired_replicas : Optional [int ] = FieldInfo (alias = "desiredReplicas" , default = None )
7474 """Number of replicas the autoscaler currently wants across all regions."""
7575
76- estimated_effective_traffic_share : Optional [float ] = FieldInfo ( alias = "estimatedEffectiveTrafficShare" , default = None )
76+ hardware : Optional [str ] = None
7777 """
78- Estimated fraction from 0 to 1 of endpoint traffic currently routed to this
79- deployment .
78+ Hardware configuration selected by the deployment's config, such as its GPU type
79+ and count .
8080 """
8181
8282 ready_replicas : Optional [int ] = FieldInfo (alias = "readyReplicas" , default = None )
You can’t perform that action at this time.
0 commit comments