beamlit 0.0.34rc58__py3-none-any.whl → 0.0.34rc60__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.
- beamlit/api/service_accounts/create_workspace_service_account.py +1 -3
- beamlit/api/service_accounts/delete_workspace_service_account.py +1 -3
- beamlit/api/service_accounts/get_workspace_service_accounts.py +1 -3
- beamlit/api/service_accounts/update_workspace_service_account.py +1 -3
- beamlit/common/instrumentation.py +1 -1
- beamlit/models/__init__.py +13 -11
- beamlit/models/agent.py +21 -0
- beamlit/models/agent_spec.py +18 -0
- beamlit/models/core_event.py +79 -0
- beamlit/models/function.py +21 -0
- beamlit/models/increase_and_rate_metric.py +0 -9
- beamlit/models/integration_repository.py +88 -0
- beamlit/models/last_n_requests_metric.py +88 -0
- beamlit/models/latency_metric.py +45 -0
- beamlit/models/metric.py +18 -9
- beamlit/models/metrics.py +53 -53
- beamlit/models/model.py +21 -0
- beamlit/models/repository.py +70 -0
- beamlit/models/request_total_metric.py +88 -0
- beamlit/models/resource_environment_metrics.py +62 -82
- beamlit/models/workspace.py +7 -7
- {beamlit-0.0.34rc58.dist-info → beamlit-0.0.34rc60.dist-info}/METADATA +1 -1
- {beamlit-0.0.34rc58.dist-info → beamlit-0.0.34rc60.dist-info}/RECORD +24 -18
- {beamlit-0.0.34rc58.dist-info → beamlit-0.0.34rc60.dist-info}/WHEEL +0 -0
@@ -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
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
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
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
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
|
-
|
56
|
-
if not isinstance(self.
|
57
|
-
|
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
|
-
|
58
|
+
request_total = self.request_total
|
60
59
|
|
61
|
-
|
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
|
-
|
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
|
-
|
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
|
79
|
-
field_dict["
|
80
|
-
if
|
81
|
-
field_dict["
|
82
|
-
if
|
83
|
-
field_dict["
|
84
|
-
if
|
85
|
-
field_dict["
|
86
|
-
if
|
87
|
-
field_dict["
|
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
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
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
|
-
|
106
|
+
last_n_requests.append(componentsschemas_array_metric_item)
|
120
107
|
|
121
|
-
|
122
|
-
|
123
|
-
if isinstance(
|
124
|
-
|
108
|
+
_latency = d.pop("latency", UNSET)
|
109
|
+
latency: Union[Unset, LatencyMetric]
|
110
|
+
if isinstance(_latency, Unset):
|
111
|
+
latency = UNSET
|
125
112
|
else:
|
126
|
-
|
113
|
+
latency = LatencyMetric.from_dict(_latency)
|
127
114
|
|
128
|
-
|
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
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
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
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
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
|
beamlit/models/workspace.py
CHANGED
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
77
|
-
field_dict["
|
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
|
-
|
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
|
-
|
117
|
+
region=region,
|
118
118
|
)
|
119
119
|
|
120
120
|
workspace.additional_properties = d
|
@@ -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=
|
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=
|
104
|
-
beamlit/api/service_accounts/get_workspace_service_accounts.py,sha256=
|
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=
|
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
|
@@ -130,7 +130,7 @@ beamlit/authentication/credentials.py,sha256=p_1xenabCbQuRz7BiFk7oTK4uCxAt_zoyku
|
|
130
130
|
beamlit/authentication/device_mode.py,sha256=tmr22gllKOZwBRub_QjF5pYa425x-nE8tQNpZ_EGR6g,3644
|
131
131
|
beamlit/common/__init__.py,sha256=saX5X3hRCJ9erSlXuSkZ2VGgquvpgdcofAU_9sM4bCE,354
|
132
132
|
beamlit/common/error.py,sha256=f9oJDFxhoHK-vpjxBgEp0NwWIk0N_THPemUI7uQxVzU,270
|
133
|
-
beamlit/common/instrumentation.py,sha256=
|
133
|
+
beamlit/common/instrumentation.py,sha256=8sbYCrkC_2BsdAZ_1cWTw5aRtMUz2xvN2tsG0rovBtA,5351
|
134
134
|
beamlit/common/logger.py,sha256=nN_dSOl4bs13QU3Rod-w3e3jYOnlSrHx3_bs-ACY6Aw,1115
|
135
135
|
beamlit/common/secrets.py,sha256=sid81bOe3LflkMKDHwBsBs9nIju8bp5-v9qU9gkyNMc,212
|
136
136
|
beamlit/common/settings.py,sha256=b2rvby-ufG3M0AB1ReoWFM-1EzF1LaE-gbokO9HvQDI,3810
|
@@ -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=
|
155
|
+
beamlit/models/__init__.py,sha256=JivNHOlMd3eGSmg18BKQfTVEwOR730cBsUi64v4LwA0,7888
|
156
156
|
beamlit/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
|
157
|
-
beamlit/models/agent.py,sha256=
|
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=
|
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=
|
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=
|
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=
|
201
|
-
beamlit/models/metrics.py,sha256=
|
202
|
-
beamlit/models/model.py,sha256=
|
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=
|
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=
|
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.
|
260
|
-
beamlit-0.0.
|
261
|
-
beamlit-0.0.
|
265
|
+
beamlit-0.0.34rc60.dist-info/METADATA,sha256=KQjOGNRhgwRUfHsM1l1e4DQzZsI_wEIMYQq__j1LxZo,2412
|
266
|
+
beamlit-0.0.34rc60.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
267
|
+
beamlit-0.0.34rc60.dist-info/RECORD,,
|
File without changes
|