beamlit 0.0.34rc57__py3-none-any.whl → 0.0.34rc59__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,14 +6,8 @@ from attrs import field as _attrs_field
6
6
  from ..types import UNSET, Unset
7
7
 
8
8
  if TYPE_CHECKING:
9
+ from ..models.latency_metric import LatencyMetric
9
10
  from ..models.metric import Metric
10
- from ..models.qps import QPS
11
- from ..models.resource_environment_metrics_inference_per_region import (
12
- ResourceEnvironmentMetricsInferencePerRegion,
13
- )
14
- from ..models.resource_environment_metrics_query_per_region_per_code import (
15
- ResourceEnvironmentMetricsQueryPerRegionPerCode,
16
- )
17
11
 
18
12
 
19
13
  T = TypeVar("T", bound="ResourceEnvironmentMetrics")
@@ -25,23 +19,21 @@ class ResourceEnvironmentMetrics:
25
19
 
26
20
  Attributes:
27
21
  inference_global (Union[Unset, list['Metric']]): Array of metrics
28
- inference_per_region (Union[Unset, ResourceEnvironmentMetricsInferencePerRegion]): Historical requests (in last
29
- 24 hours) per location, for the model deployment
30
- query_global (Union[Unset, float]): Number of requests done on the resource for the model deployment
31
- query_per_code_global (Union[Unset, QPS]): Query per second per element, can be per response status code (e.g.
32
- 200, 400) or per location
33
- query_per_region (Union[Unset, QPS]): Query per second per element, can be per response status code (e.g. 200,
34
- 400) or per location
35
- query_per_region_per_code (Union[Unset, ResourceEnvironmentMetricsQueryPerRegionPerCode]): Number of requests
36
- done on the resource for the model deployment
22
+ last_n_requests (Union[Unset, list['Metric']]): Array of metrics
23
+ latency (Union[Unset, LatencyMetric]): Latency metrics
24
+ request_total (Union[Unset, Any]): Number of requests for the resource globally
25
+ request_total_per_code (Union[Unset, Any]): Number of requests for the resource globally per code
26
+ rps (Union[Unset, Any]): Number of requests per second for the resource globally
27
+ rps_per_code (Union[Unset, Any]): Number of requests per second for the resource globally per code
37
28
  """
38
29
 
39
30
  inference_global: Union[Unset, list["Metric"]] = UNSET
40
- inference_per_region: Union[Unset, "ResourceEnvironmentMetricsInferencePerRegion"] = UNSET
41
- query_global: Union[Unset, float] = UNSET
42
- query_per_code_global: Union[Unset, "QPS"] = UNSET
43
- query_per_region: Union[Unset, "QPS"] = UNSET
44
- query_per_region_per_code: Union[Unset, "ResourceEnvironmentMetricsQueryPerRegionPerCode"] = UNSET
31
+ last_n_requests: Union[Unset, list["Metric"]] = UNSET
32
+ latency: Union[Unset, "LatencyMetric"] = UNSET
33
+ request_total: Union[Unset, Any] = UNSET
34
+ request_total_per_code: Union[Unset, Any] = UNSET
35
+ rps: Union[Unset, Any] = UNSET
36
+ rps_per_code: Union[Unset, Any] = UNSET
45
37
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
46
38
 
47
39
  def to_dict(self) -> dict[str, Any]:
@@ -52,52 +44,49 @@ class ResourceEnvironmentMetrics:
52
44
  componentsschemas_array_metric_item = componentsschemas_array_metric_item_data.to_dict()
53
45
  inference_global.append(componentsschemas_array_metric_item)
54
46
 
55
- inference_per_region: Union[Unset, dict[str, Any]] = UNSET
56
- if not isinstance(self.inference_per_region, Unset):
57
- inference_per_region = self.inference_per_region.to_dict()
47
+ last_n_requests: Union[Unset, list[dict[str, Any]]] = UNSET
48
+ if not isinstance(self.last_n_requests, Unset):
49
+ last_n_requests = []
50
+ for componentsschemas_array_metric_item_data in self.last_n_requests:
51
+ componentsschemas_array_metric_item = componentsschemas_array_metric_item_data.to_dict()
52
+ last_n_requests.append(componentsschemas_array_metric_item)
53
+
54
+ latency: Union[Unset, dict[str, Any]] = UNSET
55
+ if not isinstance(self.latency, Unset):
56
+ latency = self.latency.to_dict()
58
57
 
59
- query_global = self.query_global
58
+ request_total = self.request_total
60
59
 
61
- query_per_code_global: Union[Unset, dict[str, Any]] = UNSET
62
- if not isinstance(self.query_per_code_global, Unset):
63
- query_per_code_global = self.query_per_code_global.to_dict()
60
+ request_total_per_code = self.request_total_per_code
64
61
 
65
- query_per_region: Union[Unset, dict[str, Any]] = UNSET
66
- if not isinstance(self.query_per_region, Unset):
67
- query_per_region = self.query_per_region.to_dict()
62
+ rps = self.rps
68
63
 
69
- query_per_region_per_code: Union[Unset, dict[str, Any]] = UNSET
70
- if not isinstance(self.query_per_region_per_code, Unset):
71
- query_per_region_per_code = self.query_per_region_per_code.to_dict()
64
+ rps_per_code = self.rps_per_code
72
65
 
73
66
  field_dict: dict[str, Any] = {}
74
67
  field_dict.update(self.additional_properties)
75
68
  field_dict.update({})
76
69
  if inference_global is not UNSET:
77
70
  field_dict["inferenceGlobal"] = inference_global
78
- if inference_per_region is not UNSET:
79
- field_dict["inferencePerRegion"] = inference_per_region
80
- if query_global is not UNSET:
81
- field_dict["query_global"] = query_global
82
- if query_per_code_global is not UNSET:
83
- field_dict["queryPerCodeGlobal"] = query_per_code_global
84
- if query_per_region is not UNSET:
85
- field_dict["queryPerRegion"] = query_per_region
86
- if query_per_region_per_code is not UNSET:
87
- field_dict["queryPerRegionPerCode"] = query_per_region_per_code
71
+ if last_n_requests is not UNSET:
72
+ field_dict["lastNRequests"] = last_n_requests
73
+ if latency is not UNSET:
74
+ field_dict["latency"] = latency
75
+ if request_total is not UNSET:
76
+ field_dict["requestTotal"] = request_total
77
+ if request_total_per_code is not UNSET:
78
+ field_dict["requestTotalPerCode"] = request_total_per_code
79
+ if rps is not UNSET:
80
+ field_dict["rps"] = rps
81
+ if rps_per_code is not UNSET:
82
+ field_dict["rpsPerCode"] = rps_per_code
88
83
 
89
84
  return field_dict
90
85
 
91
86
  @classmethod
92
87
  def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
88
+ from ..models.latency_metric import LatencyMetric
93
89
  from ..models.metric import Metric
94
- from ..models.qps import QPS
95
- from ..models.resource_environment_metrics_inference_per_region import (
96
- ResourceEnvironmentMetricsInferencePerRegion,
97
- )
98
- from ..models.resource_environment_metrics_query_per_region_per_code import (
99
- ResourceEnvironmentMetricsQueryPerRegionPerCode,
100
- )
101
90
 
102
91
  if not src_dict:
103
92
  return None
@@ -109,45 +98,36 @@ class ResourceEnvironmentMetrics:
109
98
 
110
99
  inference_global.append(componentsschemas_array_metric_item)
111
100
 
112
- _inference_per_region = d.pop("inferencePerRegion", UNSET)
113
- inference_per_region: Union[Unset, ResourceEnvironmentMetricsInferencePerRegion]
114
- if isinstance(_inference_per_region, Unset):
115
- inference_per_region = UNSET
116
- else:
117
- inference_per_region = ResourceEnvironmentMetricsInferencePerRegion.from_dict(_inference_per_region)
101
+ last_n_requests = []
102
+ _last_n_requests = d.pop("lastNRequests", UNSET)
103
+ for componentsschemas_array_metric_item_data in _last_n_requests or []:
104
+ componentsschemas_array_metric_item = Metric.from_dict(componentsschemas_array_metric_item_data)
118
105
 
119
- query_global = d.pop("query_global", UNSET)
106
+ last_n_requests.append(componentsschemas_array_metric_item)
120
107
 
121
- _query_per_code_global = d.pop("queryPerCodeGlobal", UNSET)
122
- query_per_code_global: Union[Unset, QPS]
123
- if isinstance(_query_per_code_global, Unset):
124
- query_per_code_global = UNSET
108
+ _latency = d.pop("latency", UNSET)
109
+ latency: Union[Unset, LatencyMetric]
110
+ if isinstance(_latency, Unset):
111
+ latency = UNSET
125
112
  else:
126
- query_per_code_global = QPS.from_dict(_query_per_code_global)
113
+ latency = LatencyMetric.from_dict(_latency)
127
114
 
128
- _query_per_region = d.pop("queryPerRegion", UNSET)
129
- query_per_region: Union[Unset, QPS]
130
- if isinstance(_query_per_region, Unset):
131
- query_per_region = UNSET
132
- else:
133
- query_per_region = QPS.from_dict(_query_per_region)
115
+ request_total = d.pop("requestTotal", UNSET)
134
116
 
135
- _query_per_region_per_code = d.pop("queryPerRegionPerCode", UNSET)
136
- query_per_region_per_code: Union[Unset, ResourceEnvironmentMetricsQueryPerRegionPerCode]
137
- if isinstance(_query_per_region_per_code, Unset):
138
- query_per_region_per_code = UNSET
139
- else:
140
- query_per_region_per_code = ResourceEnvironmentMetricsQueryPerRegionPerCode.from_dict(
141
- _query_per_region_per_code
142
- )
117
+ request_total_per_code = d.pop("requestTotalPerCode", UNSET)
118
+
119
+ rps = d.pop("rps", UNSET)
120
+
121
+ rps_per_code = d.pop("rpsPerCode", UNSET)
143
122
 
144
123
  resource_environment_metrics = cls(
145
124
  inference_global=inference_global,
146
- inference_per_region=inference_per_region,
147
- query_global=query_global,
148
- query_per_code_global=query_per_code_global,
149
- query_per_region=query_per_region,
150
- query_per_region_per_code=query_per_region_per_code,
125
+ last_n_requests=last_n_requests,
126
+ latency=latency,
127
+ request_total=request_total,
128
+ request_total_per_code=request_total_per_code,
129
+ rps=rps,
130
+ rps_per_code=rps_per_code,
151
131
  )
152
132
 
153
133
  resource_environment_metrics.additional_properties = d
@@ -24,7 +24,7 @@ class Workspace:
24
24
  display_name (Union[Unset, str]): Workspace display name
25
25
  labels (Union[Unset, WorkspaceLabels]): Workspace labels
26
26
  name (Union[Unset, str]): Workspace name
27
- write_region (Union[Unset, str]): Workspace write region
27
+ region (Union[Unset, str]): Workspace write region
28
28
  """
29
29
 
30
30
  created_at: Union[Unset, str] = UNSET
@@ -34,7 +34,7 @@ class Workspace:
34
34
  display_name: Union[Unset, str] = UNSET
35
35
  labels: Union[Unset, "WorkspaceLabels"] = UNSET
36
36
  name: Union[Unset, str] = UNSET
37
- write_region: Union[Unset, str] = UNSET
37
+ region: Union[Unset, str] = UNSET
38
38
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
39
39
 
40
40
  def to_dict(self) -> dict[str, Any]:
@@ -54,7 +54,7 @@ class Workspace:
54
54
 
55
55
  name = self.name
56
56
 
57
- write_region = self.write_region
57
+ region = self.region
58
58
 
59
59
  field_dict: dict[str, Any] = {}
60
60
  field_dict.update(self.additional_properties)
@@ -73,8 +73,8 @@ class Workspace:
73
73
  field_dict["labels"] = labels
74
74
  if name is not UNSET:
75
75
  field_dict["name"] = name
76
- if write_region is not UNSET:
77
- field_dict["writeRegion"] = write_region
76
+ if region is not UNSET:
77
+ field_dict["region"] = region
78
78
 
79
79
  return field_dict
80
80
 
@@ -104,7 +104,7 @@ class Workspace:
104
104
 
105
105
  name = d.pop("name", UNSET)
106
106
 
107
- write_region = d.pop("writeRegion", UNSET)
107
+ region = d.pop("region", UNSET)
108
108
 
109
109
  workspace = cls(
110
110
  created_at=created_at,
@@ -114,7 +114,7 @@ class Workspace:
114
114
  display_name=display_name,
115
115
  labels=labels,
116
116
  name=name,
117
- write_region=write_region,
117
+ region=region,
118
118
  )
119
119
 
120
120
  workspace.additional_properties = d
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beamlit
3
- Version: 0.0.34rc57
3
+ Version: 0.0.34rc59
4
4
  Summary: Add your description here
5
5
  Author-email: cploujoux <ch.ploujoux@gmail.com>
6
6
  Requires-Python: >=3.12
@@ -98,12 +98,12 @@ beamlit/api/privateclusters/update_private_cluster.py,sha256=Urb5GGuVcSwQy2WBlru
98
98
  beamlit/api/privateclusters/update_private_cluster_health.py,sha256=PxCyl5ZEIqpQ_PKIr9ErqjZcoTSKlTZS1YgTT1JwhCg,2572
99
99
  beamlit/api/service_accounts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
100
  beamlit/api/service_accounts/create_api_key_for_service_account.py,sha256=Ee9CXzYqVh9OTJeai8bKaclznuWpJiPd74aPHZYZdeQ,4525
101
- beamlit/api/service_accounts/create_workspace_service_account.py,sha256=D3NkGoPZyMi6ibj29F7xbJd5aLI2jw2vLSl1qDRGhW4,4648
101
+ beamlit/api/service_accounts/create_workspace_service_account.py,sha256=XFAvmmjrwaenuWEPw0YBe7QeiYmXNX8WmcsYj6VYHa4,4639
102
102
  beamlit/api/service_accounts/delete_api_key_for_service_account.py,sha256=bS2OWtO7Dn8FU2uaTe9h7VCxiobti8Ka2NtTUKBd31Q,2621
103
- beamlit/api/service_accounts/delete_workspace_service_account.py,sha256=XEz6-DkWZTmuaTOMooaywKvBsGilBYR-xG32RsXP5Mw,4136
104
- beamlit/api/service_accounts/get_workspace_service_accounts.py,sha256=6c7T_WsXCuotQomm4zkAkAkhdLEcgVyvon9aYHPiEiI,4151
103
+ beamlit/api/service_accounts/delete_workspace_service_account.py,sha256=_FVYHH29JKQGZqCFSih2-gU92OR-6Am1CIQX6VJ_goo,4127
104
+ beamlit/api/service_accounts/get_workspace_service_accounts.py,sha256=R67By_FV4Nv8tVT2b8mgsC_Dnwy0hla353-EOupBizY,4142
105
105
  beamlit/api/service_accounts/list_api_keys_for_service_account.py,sha256=skp0PmjxfW7EGAyRcVAye_SKfryKjvsTuhSRxeIaXDo,4066
106
- beamlit/api/service_accounts/update_workspace_service_account.py,sha256=Y4rQL8Yx8yRZSzTJz5-ESP5zQ0juVhuoX6xwpg5ZM00,4912
106
+ beamlit/api/service_accounts/update_workspace_service_account.py,sha256=IWVMnChlL27mOCH44GYSA6ep5AJuLXzW2oDsqs7mYIQ,4903
107
107
  beamlit/api/store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  beamlit/api/store/get_store_agent.py,sha256=UjvsRXyFsXZLf4utQjpiOiPM7KxlRj4C-x_ac5EXoLk,3624
109
109
  beamlit/api/store/get_store_function.py,sha256=kEbg91jJh0XAXmipjzwg931mxkMCZ820PxiJ89zYbso,3756
@@ -137,7 +137,7 @@ beamlit/common/settings.py,sha256=b2rvby-ufG3M0AB1ReoWFM-1EzF1LaE-gbokO9HvQDI,38
137
137
  beamlit/common/slugify.py,sha256=nR29r37IdWS2i44ZC6ZsXRgqKPYmvMGtFQ7BuIQUTlc,90
138
138
  beamlit/common/utils.py,sha256=jouz5igBvT37Xn_e94-foCHyQczVim-UzVcoIF6RWJ4,657
139
139
  beamlit/deploy/__init__.py,sha256=GS7l7Jtm2yKs7iNLKcfjYO-rAhUzggQ3xiYSf3oxLBY,91
140
- beamlit/deploy/deploy.py,sha256=YKY1iN0ZofQr_n9efvDJ5pK9HpyLZO9wyHmh8W9PAaE,9889
140
+ beamlit/deploy/deploy.py,sha256=FyDqSYpm_YKG8IapaFhI0EN5m71d7wkWLjfBuitxsOU,9884
141
141
  beamlit/deploy/format.py,sha256=PJ8kU7Y1pwiS3tqqyvFaag9LO3jju-4ua574163VPk4,1820
142
142
  beamlit/deploy/parser.py,sha256=Ga0poCZkoRnuTw082QnTcNGCBJncoRAnVsn8-1FsaJE,6907
143
143
  beamlit/functions/__init__.py,sha256=_RPG1Bfg54JGdIPnViAU6n9zD7E1cDNsdXi8oYGskzE,138
@@ -152,18 +152,19 @@ beamlit/functions/mcp/mcp.py,sha256=-LL7O35vTlcYfF1MSlEY83rBKKShJTaHB-y9MRPAEiU,
152
152
  beamlit/functions/remote/remote.py,sha256=AL8WhD7yXZ18h3iU4vE9E4JtJt0n_i-ZwlbBDoolnEs,3767
153
153
  beamlit/functions/search/__init__.py,sha256=5NAthQ9PBwrkNg1FpLRx4flauvv0HyWuwaVS589c1Pw,49
154
154
  beamlit/functions/search/search.py,sha256=8s9ECltq7YE17j6rTxb12uY2EQY4_eTLHmwlIMThI0w,515
155
- beamlit/models/__init__.py,sha256=CfMLR86qnFW6mz2fp6t2f91Vr62HmjY7qgTuvZT79Is,7830
155
+ beamlit/models/__init__.py,sha256=JivNHOlMd3eGSmg18BKQfTVEwOR730cBsUi64v4LwA0,7888
156
156
  beamlit/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
157
- beamlit/models/agent.py,sha256=oGZBwd2Hy-i6q_up4WQ0IvOmxqouR5I1Gk8vXvfLKvc,3384
157
+ beamlit/models/agent.py,sha256=nGRGNghN5RID5q8oikPVzj1_Aahh9GmDhVPMIA901zc,4372
158
158
  beamlit/models/agent_chain.py,sha256=8PN8wVSayS-LoBN2nahZsOmr6r3t62H_LPDK_8fnkM8,2255
159
159
  beamlit/models/agent_history.py,sha256=76ZHoaz7oq3-2ikNQj25NmzyXOzx5JIPxOlfUyljRQg,5124
160
160
  beamlit/models/agent_history_event.py,sha256=Ed_xaedwLEPNuM807Ldj5xqUBj4Eua9NqpCzpTRi0Og,3820
161
161
  beamlit/models/agent_metadata.py,sha256=iVhVGchW-WI117G3Sd5yNjcYuHQDLWm7DE2P1PpAwds,4590
162
162
  beamlit/models/agent_release.py,sha256=AXtHX_Ze7cMh2tKnRw2usRWnLf2B9u_iFPTF6WYdJLM,1928
163
- beamlit/models/agent_spec.py,sha256=zX1UupOTU-Vv3TMBCktL_AuJy2gls1WcpxJkMSZF4Iw,10289
163
+ beamlit/models/agent_spec.py,sha256=g1ELptwKF2ASxc6P0daQeCBl6pOEaZC7nkwg6TLmlc8,11019
164
164
  beamlit/models/api_key.py,sha256=oKuqDF0xe2Z2-6yJqulbzlXEQyM3W7lvQn6FXCktaaU,4278
165
165
  beamlit/models/configuration.py,sha256=KujTXl7iihrPcL0jX0hgxN0xAAwMgJsTaFKcMBpCVLs,2761
166
166
  beamlit/models/continent.py,sha256=_gQJci2_MUmCiGGG4iCMnUDTww9OqcTsNVqwPVigy3U,1880
167
+ beamlit/models/core_event.py,sha256=HJ0r2yUXAqidSxR6pdkEQhOWL981XP_UHdrjVKQrSrw,2062
167
168
  beamlit/models/core_spec.py,sha256=PVwrNNVStuUm7_MaeaE-6OYlFouZ-nDgti5IRz5hk28,7944
168
169
  beamlit/models/core_spec_configurations.py,sha256=ijJm4ApTJaD6PywpRH9nQXN3OxtPb042Sw9mizTaGCI,2210
169
170
  beamlit/models/core_status.py,sha256=yYpSWFnsfTRvJIWmPhWJiHYKrh-24R3YqM4LAtnWGQI,1783
@@ -177,7 +178,7 @@ beamlit/models/environment_metadata.py,sha256=4vASo711_zW8OCCFnyO7eSgPjEeDQFDj2J
177
178
  beamlit/models/environment_metrics.py,sha256=OdFB97SfNmAQ7u9PNcE3AaFOzzqAW_WTrBSPf3hJzjs,2556
178
179
  beamlit/models/environment_spec.py,sha256=zMgRdzew74oADGb2LxkPhtf5mHBfrsUyvCuBBxbKM14,1763
179
180
  beamlit/models/flavor.py,sha256=aJDHv9-KiLykalXgs6J6dor1YtewLwOBTztkHdEaMSs,1835
180
- beamlit/models/function.py,sha256=DIloW2w80iyUwL2_PABDLKjIfGn9-Li6cb_Jtjmkl9M,3429
181
+ beamlit/models/function.py,sha256=I1qEQV7W-k0EJBhxR8nYfvYO5KSBra5o_zMWETG9gZk,4417
181
182
  beamlit/models/function_kit.py,sha256=VrwV4EOrEqs8QgyaI7MyevRCCt2fhsTkOzfQVWXojt0,3101
182
183
  beamlit/models/function_metadata.py,sha256=7OKXazGomwAupuMTrROFD67o4D-JCBB33gznzLUj0HI,4608
183
184
  beamlit/models/function_release.py,sha256=T8SuLZBBdgGDvUg3sVluocvrKTvNxzZ6Wq3kjK4lYk4,1955
@@ -186,20 +187,23 @@ beamlit/models/get_trace_ids_response_200.py,sha256=m2uE11a9wE5c7xPTDVd4CuubQc2c
186
187
  beamlit/models/get_trace_logs_response_200.py,sha256=NIFtg8qcE26_oJxoRYkt1KSV2JSYUxdUu45Gxs0Qli0,1280
187
188
  beamlit/models/get_trace_response_200.py,sha256=1QePQMknfEP7DjPXb3ulf6v17430R_MJ4SPovdYK0NI,1257
188
189
  beamlit/models/get_workspace_service_accounts_response_200_item.py,sha256=ATEojS0VhRmL6a9JPWT3-fl3plosONbIWa5Jpoe4Pag,2981
189
- beamlit/models/increase_and_rate_metric.py,sha256=bRQ05Qi9TMYhYjtN90PeJaMEkNOdgC0A_7aQQBrWCDs,2071
190
+ beamlit/models/increase_and_rate_metric.py,sha256=a_PycDKjMReU8vtEuGd6sImjG_Opf0SGPSB3Qo2pEqU,1790
190
191
  beamlit/models/integration_config.py,sha256=lq8yZR1th2qrJmGAk5aEcuvuPy4zAI9XyNol5YjeGVY,1258
191
192
  beamlit/models/integration_connection.py,sha256=WpMlijS8nzUrS1XE4uBuLgkCPNOkvFXHToZ2l74MSdc,2868
192
193
  beamlit/models/integration_connection_config.py,sha256=w97Bx4d1YL1OIBA75NLcsfobJ1-mGbP2OmV_90oZMeY,1311
193
194
  beamlit/models/integration_connection_secret.py,sha256=Fj_FDF7K5_cpmU3KFXbSwzgsExpujQ0OrD69YYCrpmM,1707
194
195
  beamlit/models/integration_connection_spec.py,sha256=L54nwNCc8iek4cR7lUBefEBRhGvedbHt5c6Ea5aAUpg,3387
195
196
  beamlit/models/integration_model.py,sha256=gW6folMKJsIScQsV0IT5nQpO2sKzQb6d3E9fw4W4RIY,4469
197
+ beamlit/models/integration_repository.py,sha256=Ac5c_UBdlUHvGflvCzqA5gXzX1_YEDHz3yBgMCGqqDg,2397
196
198
  beamlit/models/invite_workspace_user_body.py,sha256=ITmKPCuOGKTHn4VjnZ2EjIj6PGPoGh-M_rzgo0VMgNM,1612
199
+ beamlit/models/last_n_requests_metric.py,sha256=BYaEhJAeoGE-NtdlT7EkUSkaNManeCsXeVryOcKH57s,2544
200
+ beamlit/models/latency_metric.py,sha256=qWTu3ZxNwTZZ3mZO9HnTy6S0UaD33vaud2ozN6CsiqQ,1235
197
201
  beamlit/models/location_response.py,sha256=Tvs5CdgyB7sPvogk4clT9jMJQa63Ivt3iIEfRP9UcKA,3388
198
202
  beamlit/models/metadata.py,sha256=3bfaNPl7-LeO5D0ejozDDgTLFTHzLt_he9WbVXQBOXc,4238
199
203
  beamlit/models/metadata_labels.py,sha256=HA_fKLmJBlJlPfQKmWqZvckUpQhmMSBW9X7F4KZJ4-8,1231
200
- beamlit/models/metric.py,sha256=HzdALFEpkQDiN3KRtouYMPCzsZePhczogOSPYdpCK1A,1834
201
- beamlit/models/metrics.py,sha256=sksFEuz7gqc6xMVdY1UW0vT3q52frj_BNp38D-QoFeU,4075
202
- beamlit/models/model.py,sha256=8flizD7eQw7tJPfPzMM4OJTxMdyadlT1o621MB2mVao,3486
204
+ beamlit/models/metric.py,sha256=lK11c5t0S01eO-fWvUVPaMycNRramXHo8UPTK3Ioqeg,2157
205
+ beamlit/models/metrics.py,sha256=I4wv20oyTFh7OAITDbeLgmTZuZTf41pBX-Z5rOJvnuo,4024
206
+ beamlit/models/model.py,sha256=7Q4QsZeJ1ugltS81neawLFCT112O9cdPtGXUhzJoNrs,4474
203
207
  beamlit/models/model_metadata.py,sha256=80mbVywL-leJKCFeCPUMQ2LstsEcYRokIv-oXEmTGIo,4590
204
208
  beamlit/models/model_private_cluster.py,sha256=EojXwmxgDLogsUlTDRw9PvhiQVk_b5nQUSBbWQosQpg,2281
205
209
  beamlit/models/model_provider.py,sha256=2_tEQKrPqkPvFokpoNCNW8O-xlN7ILk4uZ_VST5B1Fw,5530
@@ -220,10 +224,12 @@ beamlit/models/private_cluster.py,sha256=7n5GIgiCBbD9HDNlnZNHuIIf5-nr6wZb2DSi-25
220
224
  beamlit/models/private_location.py,sha256=EhXB6EcQMnMbe4-RMBNlawJhx9a0T5i0xebrbVFjlrE,1609
221
225
  beamlit/models/provider_config.py,sha256=f5zfL731eOkTJNttYqnawNyq8Y7VeEqoTIpfCiSOgJU,2880
222
226
  beamlit/models/qps.py,sha256=Us3PQTfeM5KN-QwLXkJ2XESJDIyTvD1tSJR9taClIog,1684
227
+ beamlit/models/repository.py,sha256=y179VzQivkOSXq2zW-z0mGxVwIG-rZWSs_JRxxfSBhE,1791
228
+ beamlit/models/request_total_metric.py,sha256=5i4go8Mhr-dpPs7hXBxZTq8glIJlEIXlzklJby9AhPg,2817
223
229
  beamlit/models/resource_deployment_metrics.py,sha256=TaV4-xbI79FCfzFcgDQ-A3EjJTByMKA42xgvS7pcT10,8875
224
230
  beamlit/models/resource_deployment_metrics_inference_per_second_per_region.py,sha256=phgZ9vJ3s7pYIYo14mgyav6ZrJnY3IS7y5T6To1IDjE,2624
225
231
  beamlit/models/resource_deployment_metrics_query_per_second_per_region_per_code.py,sha256=uCzjEHEy3j3j3Jcdul097N6hiKAHBhM8laQ-TxDs65c,2381
226
- beamlit/models/resource_environment_metrics.py,sha256=tVbEvRXdNgcu_c6bVQAkVDYiYqK3N-TsTWMWdSB3q28,7550
232
+ beamlit/models/resource_environment_metrics.py,sha256=hCtC9lOzuHsjQjkeKnf8NrOVwdysowIKHRb3jSlPf40,5886
227
233
  beamlit/models/resource_environment_metrics_inference_per_region.py,sha256=pIc14XdNeKq50WGWU0FnmNqtFU5S8y_q3gomLA-dOgM,2580
228
234
  beamlit/models/resource_environment_metrics_inference_per_second_per_region.py,sha256=CmJx_tjhsfHS1hMHOwOkuVPypbG3xyZ_GCG3A2uPhr4,2629
229
235
  beamlit/models/resource_environment_metrics_query_per_region_per_code.py,sha256=G2qxM4jRKavyC96K9CO6AlF_7_K6aHtV4dMqT4n4vcA,2307
@@ -249,13 +255,13 @@ beamlit/models/update_workspace_service_account_body.py,sha256=fz2MGqwRfrYkMmL8P
249
255
  beamlit/models/update_workspace_service_account_response_200.py,sha256=nCLPHFP_iR1MIpicgQMpbiyme97ZMfTFhyQUEbhzkHI,2968
250
256
  beamlit/models/update_workspace_user_role_body.py,sha256=FyLCWy9oRgUxoFPxxtrDvwzh1kHLkoTZ1pL5w3ayexM,1572
251
257
  beamlit/models/websocket_channel.py,sha256=jg3vN7yS_oOIwGtndtIUr1LsyEA58RXLXahqSK5rdUU,2696
252
- beamlit/models/workspace.py,sha256=l__bIpbA4oJvxXo7UbEoCcqkvu9MiNt5aXXpZ3bgwHg,4309
258
+ beamlit/models/workspace.py,sha256=7G3Q9_D9n7_AczznYOToAsEGjWgMJwhnFb3flYNg2ro,4245
253
259
  beamlit/models/workspace_labels.py,sha256=WbnUY6eCTkUNdY7hhhSF-KQCl8fWFfkCf7hzCTiNp4A,1246
254
260
  beamlit/models/workspace_user.py,sha256=70CcifQWYbeWG7TDui4pblTzUe5sVK0AS19vNCzKE8g,3423
255
261
  beamlit/serve/app.py,sha256=gYQvUK_S7g0Em-idND8HrVDqgg5LlIemheSGlX2Jj8U,3638
256
262
  beamlit/serve/middlewares/__init__.py,sha256=1dVmnOmhAQWvWktqHkKSIX-YoF6fmMU8xkUQuhg_rJU,148
257
263
  beamlit/serve/middlewares/accesslog.py,sha256=Mu4T4_9OvHybjA0ApzZFpgi2C8f3X1NbUk-76v634XM,631
258
264
  beamlit/serve/middlewares/processtime.py,sha256=lDAaIasZ4bwvN-HKHvZpaD9r-yrkVNZYx4abvbjbrCg,411
259
- beamlit-0.0.34rc57.dist-info/METADATA,sha256=ziM3rBAZv480v0PW4M8QVT72n8HcYwaa-OdOvuhc_3U,2412
260
- beamlit-0.0.34rc57.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
261
- beamlit-0.0.34rc57.dist-info/RECORD,,
265
+ beamlit-0.0.34rc59.dist-info/METADATA,sha256=37dnjgnNDVoYdZ5COy4DUM0rov8hjW8KwKfDPXPSOi0,2412
266
+ beamlit-0.0.34rc59.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
267
+ beamlit-0.0.34rc59.dist-info/RECORD,,