beamlit 0.0.34rc68__py3-none-any.whl → 0.0.34rc69__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.
Files changed (35) hide show
  1. beamlit/agents/chat.py +2 -2
  2. beamlit/agents/decorator.py +1 -1
  3. beamlit/models/agent.py +3 -3
  4. beamlit/models/agent_metadata.py +1 -1
  5. beamlit/models/agent_spec.py +6 -6
  6. beamlit/models/core_spec.py +5 -5
  7. beamlit/models/core_spec_configurations.py +1 -1
  8. beamlit/models/environment.py +2 -2
  9. beamlit/models/environment_metadata.py +1 -1
  10. beamlit/models/function.py +3 -3
  11. beamlit/models/function_metadata.py +1 -1
  12. beamlit/models/function_spec.py +5 -5
  13. beamlit/models/integration_connection.py +2 -2
  14. beamlit/models/integration_connection_spec.py +2 -2
  15. beamlit/models/metadata.py +1 -1
  16. beamlit/models/model.py +3 -3
  17. beamlit/models/model_metadata.py +1 -1
  18. beamlit/models/model_provider.py +2 -2
  19. beamlit/models/model_spec.py +5 -5
  20. beamlit/models/pending_invitation_accept.py +1 -1
  21. beamlit/models/pending_invitation_render.py +3 -3
  22. beamlit/models/policy.py +2 -2
  23. beamlit/models/provider_config.py +1 -1
  24. beamlit/models/repository_type_0.py +70 -0
  25. beamlit/models/resource_deployment_metrics.py +6 -4
  26. beamlit/models/resource_deployment_metrics_query_per_second_per_region_per_code.py +1 -1
  27. beamlit/models/resource_environment_metrics.py +1 -1
  28. beamlit/models/resource_metrics.py +1 -1
  29. beamlit/models/runtime.py +2 -2
  30. beamlit/models/store_agent.py +1 -1
  31. beamlit/models/store_function.py +1 -1
  32. beamlit/models/workspace.py +1 -1
  33. {beamlit-0.0.34rc68.dist-info → beamlit-0.0.34rc69.dist-info}/METADATA +1 -1
  34. {beamlit-0.0.34rc68.dist-info → beamlit-0.0.34rc69.dist-info}/RECORD +35 -34
  35. {beamlit-0.0.34rc68.dist-info → beamlit-0.0.34rc69.dist-info}/WHEEL +0 -0
beamlit/agents/chat.py CHANGED
@@ -3,10 +3,10 @@ from typing import Tuple, Union
3
3
 
4
4
  from langchain_core.language_models import BaseChatModel
5
5
 
6
+ from beamlit.api.models import get_model
6
7
  from beamlit.authentication import get_authentication_headers, new_client
7
8
  from beamlit.common.settings import get_settings
8
9
  from beamlit.models import Model
9
- from beamlit.api.models import get_model
10
10
 
11
11
  logger = getLogger(__name__)
12
12
 
@@ -50,7 +50,7 @@ def get_chat_model(name: str, agent_model: Union[Model, None] = None) -> Tuple[B
50
50
  if agent_model is None:
51
51
  try:
52
52
  agent_model = get_model.sync(name, client=client, environment=settings.environment)
53
- except Exception as e:
53
+ except Exception:
54
54
  logger.warning(f"Model {name} not found, defaulting to gpt-4o-mini")
55
55
 
56
56
  environment = (agent_model and agent_model.metadata and agent_model.metadata.environment) or settings.environment
@@ -109,7 +109,7 @@ def agent(
109
109
  )
110
110
  models = ", ".join([model.metadata.name for model in models.parsed])
111
111
  models_select = f"You can select one from the your models: {models}"
112
- except Exception as e:
112
+ except Exception:
113
113
  pass
114
114
 
115
115
  raise ValueError(f"You must provide a model.\n"
beamlit/models/agent.py CHANGED
@@ -41,15 +41,15 @@ class Agent:
41
41
  events.append(componentsschemas_core_events_item)
42
42
 
43
43
  metadata: Union[Unset, dict[str, Any]] = UNSET
44
- if not isinstance(self.metadata, Unset):
44
+ if self.metadata and not isinstance(self.metadata, Unset):
45
45
  metadata = self.metadata.to_dict()
46
46
 
47
47
  spec: Union[Unset, dict[str, Any]] = UNSET
48
- if not isinstance(self.spec, Unset):
48
+ if self.spec and not isinstance(self.spec, Unset):
49
49
  spec = self.spec.to_dict()
50
50
 
51
51
  status: Union[Unset, dict[str, Any]] = UNSET
52
- if not isinstance(self.status, Unset):
52
+ if self.status and not isinstance(self.status, Unset):
53
53
  status = self.status.to_dict()
54
54
 
55
55
  field_dict: dict[str, Any] = {}
@@ -51,7 +51,7 @@ class AgentMetadata:
51
51
  display_name = self.display_name
52
52
 
53
53
  labels: Union[Unset, dict[str, Any]] = UNSET
54
- if not isinstance(self.labels, Unset):
54
+ if self.labels and not isinstance(self.labels, Unset):
55
55
  labels = self.labels.to_dict()
56
56
 
57
57
  name = self.name
@@ -60,7 +60,7 @@ class AgentSpec:
60
60
 
61
61
  def to_dict(self) -> dict[str, Any]:
62
62
  configurations: Union[Unset, dict[str, Any]] = UNSET
63
- if not isinstance(self.configurations, Unset):
63
+ if self.configurations and not isinstance(self.configurations, Unset):
64
64
  configurations = self.configurations.to_dict()
65
65
 
66
66
  enabled = self.enabled
@@ -77,7 +77,7 @@ class AgentSpec:
77
77
  integration_connections = self.integration_connections
78
78
 
79
79
  pod_template: Union[Unset, dict[str, Any]] = UNSET
80
- if not isinstance(self.pod_template, Unset):
80
+ if self.pod_template and not isinstance(self.pod_template, Unset):
81
81
  pod_template = self.pod_template.to_dict()
82
82
 
83
83
  policies: Union[Unset, list[str]] = UNSET
@@ -85,15 +85,15 @@ class AgentSpec:
85
85
  policies = self.policies
86
86
 
87
87
  private_clusters: Union[Unset, dict[str, Any]] = UNSET
88
- if not isinstance(self.private_clusters, Unset):
88
+ if self.private_clusters and not isinstance(self.private_clusters, Unset):
89
89
  private_clusters = self.private_clusters.to_dict()
90
90
 
91
91
  runtime: Union[Unset, dict[str, Any]] = UNSET
92
- if not isinstance(self.runtime, Unset):
92
+ if self.runtime and not isinstance(self.runtime, Unset):
93
93
  runtime = self.runtime.to_dict()
94
94
 
95
95
  serverless_config: Union[Unset, dict[str, Any]] = UNSET
96
- if not isinstance(self.serverless_config, Unset):
96
+ if self.serverless_config and not isinstance(self.serverless_config, Unset):
97
97
  serverless_config = self.serverless_config.to_dict()
98
98
 
99
99
  agent_chain: Union[Unset, list[dict[str, Any]]] = UNSET
@@ -112,7 +112,7 @@ class AgentSpec:
112
112
  model = self.model
113
113
 
114
114
  repository: Union[Unset, dict[str, Any]] = UNSET
115
- if not isinstance(self.repository, Unset):
115
+ if self.repository and not isinstance(self.repository, Unset):
116
116
  repository = self.repository.to_dict()
117
117
 
118
118
  store_id = self.store_id
@@ -46,7 +46,7 @@ class CoreSpec:
46
46
 
47
47
  def to_dict(self) -> dict[str, Any]:
48
48
  configurations: Union[Unset, dict[str, Any]] = UNSET
49
- if not isinstance(self.configurations, Unset):
49
+ if self.configurations and not isinstance(self.configurations, Unset):
50
50
  configurations = self.configurations.to_dict()
51
51
 
52
52
  enabled = self.enabled
@@ -63,7 +63,7 @@ class CoreSpec:
63
63
  integration_connections = self.integration_connections
64
64
 
65
65
  pod_template: Union[Unset, dict[str, Any]] = UNSET
66
- if not isinstance(self.pod_template, Unset):
66
+ if self.pod_template and not isinstance(self.pod_template, Unset):
67
67
  pod_template = self.pod_template.to_dict()
68
68
 
69
69
  policies: Union[Unset, list[str]] = UNSET
@@ -71,15 +71,15 @@ class CoreSpec:
71
71
  policies = self.policies
72
72
 
73
73
  private_clusters: Union[Unset, dict[str, Any]] = UNSET
74
- if not isinstance(self.private_clusters, Unset):
74
+ if self.private_clusters and not isinstance(self.private_clusters, Unset):
75
75
  private_clusters = self.private_clusters.to_dict()
76
76
 
77
77
  runtime: Union[Unset, dict[str, Any]] = UNSET
78
- if not isinstance(self.runtime, Unset):
78
+ if self.runtime and not isinstance(self.runtime, Unset):
79
79
  runtime = self.runtime.to_dict()
80
80
 
81
81
  serverless_config: Union[Unset, dict[str, Any]] = UNSET
82
- if not isinstance(self.serverless_config, Unset):
82
+ if self.serverless_config and not isinstance(self.serverless_config, Unset):
83
83
  serverless_config = self.serverless_config.to_dict()
84
84
 
85
85
  field_dict: dict[str, Any] = {}
@@ -26,7 +26,7 @@ class CoreSpecConfigurations:
26
26
 
27
27
  def to_dict(self) -> dict[str, Any]:
28
28
  key: Union[Unset, dict[str, Any]] = UNSET
29
- if not isinstance(self.key, Unset):
29
+ if self.key and not isinstance(self.key, Unset):
30
30
  key = self.key.to_dict()
31
31
 
32
32
  field_dict: dict[str, Any] = {}
@@ -28,11 +28,11 @@ class Environment:
28
28
 
29
29
  def to_dict(self) -> dict[str, Any]:
30
30
  metadata: Union[Unset, dict[str, Any]] = UNSET
31
- if not isinstance(self.metadata, Unset):
31
+ if self.metadata and not isinstance(self.metadata, Unset):
32
32
  metadata = self.metadata.to_dict()
33
33
 
34
34
  spec: Union[Unset, dict[str, Any]] = UNSET
35
- if not isinstance(self.spec, Unset):
35
+ if self.spec and not isinstance(self.spec, Unset):
36
36
  spec = self.spec.to_dict()
37
37
 
38
38
  field_dict: dict[str, Any] = {}
@@ -51,7 +51,7 @@ class EnvironmentMetadata:
51
51
  display_name = self.display_name
52
52
 
53
53
  labels: Union[Unset, dict[str, Any]] = UNSET
54
- if not isinstance(self.labels, Unset):
54
+ if self.labels and not isinstance(self.labels, Unset):
55
55
  labels = self.labels.to_dict()
56
56
 
57
57
  name = self.name
@@ -41,15 +41,15 @@ class Function:
41
41
  events.append(componentsschemas_core_events_item)
42
42
 
43
43
  metadata: Union[Unset, dict[str, Any]] = UNSET
44
- if not isinstance(self.metadata, Unset):
44
+ if self.metadata and not isinstance(self.metadata, Unset):
45
45
  metadata = self.metadata.to_dict()
46
46
 
47
47
  spec: Union[Unset, dict[str, Any]] = UNSET
48
- if not isinstance(self.spec, Unset):
48
+ if self.spec and not isinstance(self.spec, Unset):
49
49
  spec = self.spec.to_dict()
50
50
 
51
51
  status: Union[Unset, dict[str, Any]] = UNSET
52
- if not isinstance(self.status, Unset):
52
+ if self.status and not isinstance(self.status, Unset):
53
53
  status = self.status.to_dict()
54
54
 
55
55
  field_dict: dict[str, Any] = {}
@@ -51,7 +51,7 @@ class FunctionMetadata:
51
51
  display_name = self.display_name
52
52
 
53
53
  labels: Union[Unset, dict[str, Any]] = UNSET
54
- if not isinstance(self.labels, Unset):
54
+ if self.labels and not isinstance(self.labels, Unset):
55
55
  labels = self.labels.to_dict()
56
56
 
57
57
  name = self.name
@@ -57,7 +57,7 @@ class FunctionSpec:
57
57
 
58
58
  def to_dict(self) -> dict[str, Any]:
59
59
  configurations: Union[Unset, dict[str, Any]] = UNSET
60
- if not isinstance(self.configurations, Unset):
60
+ if self.configurations and not isinstance(self.configurations, Unset):
61
61
  configurations = self.configurations.to_dict()
62
62
 
63
63
  enabled = self.enabled
@@ -74,7 +74,7 @@ class FunctionSpec:
74
74
  integration_connections = self.integration_connections
75
75
 
76
76
  pod_template: Union[Unset, dict[str, Any]] = UNSET
77
- if not isinstance(self.pod_template, Unset):
77
+ if self.pod_template and not isinstance(self.pod_template, Unset):
78
78
  pod_template = self.pod_template.to_dict()
79
79
 
80
80
  policies: Union[Unset, list[str]] = UNSET
@@ -82,15 +82,15 @@ class FunctionSpec:
82
82
  policies = self.policies
83
83
 
84
84
  private_clusters: Union[Unset, dict[str, Any]] = UNSET
85
- if not isinstance(self.private_clusters, Unset):
85
+ if self.private_clusters and not isinstance(self.private_clusters, Unset):
86
86
  private_clusters = self.private_clusters.to_dict()
87
87
 
88
88
  runtime: Union[Unset, dict[str, Any]] = UNSET
89
- if not isinstance(self.runtime, Unset):
89
+ if self.runtime and not isinstance(self.runtime, Unset):
90
90
  runtime = self.runtime.to_dict()
91
91
 
92
92
  serverless_config: Union[Unset, dict[str, Any]] = UNSET
93
- if not isinstance(self.serverless_config, Unset):
93
+ if self.serverless_config and not isinstance(self.serverless_config, Unset):
94
94
  serverless_config = self.serverless_config.to_dict()
95
95
 
96
96
  description = self.description
@@ -28,11 +28,11 @@ class IntegrationConnection:
28
28
 
29
29
  def to_dict(self) -> dict[str, Any]:
30
30
  metadata: Union[Unset, dict[str, Any]] = UNSET
31
- if not isinstance(self.metadata, Unset):
31
+ if self.metadata and not isinstance(self.metadata, Unset):
32
32
  metadata = self.metadata.to_dict()
33
33
 
34
34
  spec: Union[Unset, dict[str, Any]] = UNSET
35
- if not isinstance(self.spec, Unset):
35
+ if self.spec and not isinstance(self.spec, Unset):
36
36
  spec = self.spec.to_dict()
37
37
 
38
38
  field_dict: dict[str, Any] = {}
@@ -30,13 +30,13 @@ class IntegrationConnectionSpec:
30
30
 
31
31
  def to_dict(self) -> dict[str, Any]:
32
32
  config: Union[Unset, dict[str, Any]] = UNSET
33
- if not isinstance(self.config, Unset):
33
+ if self.config and not isinstance(self.config, Unset):
34
34
  config = self.config.to_dict()
35
35
 
36
36
  integration = self.integration
37
37
 
38
38
  secret: Union[Unset, dict[str, Any]] = UNSET
39
- if not isinstance(self.secret, Unset):
39
+ if self.secret and not isinstance(self.secret, Unset):
40
40
  secret = self.secret.to_dict()
41
41
 
42
42
  field_dict: dict[str, Any] = {}
@@ -49,7 +49,7 @@ class Metadata:
49
49
  display_name = self.display_name
50
50
 
51
51
  labels: Union[Unset, dict[str, Any]] = UNSET
52
- if not isinstance(self.labels, Unset):
52
+ if self.labels and not isinstance(self.labels, Unset):
53
53
  labels = self.labels.to_dict()
54
54
 
55
55
  name = self.name
beamlit/models/model.py CHANGED
@@ -41,15 +41,15 @@ class Model:
41
41
  events.append(componentsschemas_core_events_item)
42
42
 
43
43
  metadata: Union[Unset, dict[str, Any]] = UNSET
44
- if not isinstance(self.metadata, Unset):
44
+ if self.metadata and not isinstance(self.metadata, Unset):
45
45
  metadata = self.metadata.to_dict()
46
46
 
47
47
  spec: Union[Unset, dict[str, Any]] = UNSET
48
- if not isinstance(self.spec, Unset):
48
+ if self.spec and not isinstance(self.spec, Unset):
49
49
  spec = self.spec.to_dict()
50
50
 
51
51
  status: Union[Unset, dict[str, Any]] = UNSET
52
- if not isinstance(self.status, Unset):
52
+ if self.status and not isinstance(self.status, Unset):
53
53
  status = self.status.to_dict()
54
54
 
55
55
  field_dict: dict[str, Any] = {}
@@ -51,7 +51,7 @@ class ModelMetadata:
51
51
  display_name = self.display_name
52
52
 
53
53
  labels: Union[Unset, dict[str, Any]] = UNSET
54
- if not isinstance(self.labels, Unset):
54
+ if self.labels and not isinstance(self.labels, Unset):
55
55
  labels = self.labels.to_dict()
56
56
 
57
57
  name = self.name
@@ -56,13 +56,13 @@ class ModelProvider:
56
56
  comment = self.comment
57
57
 
58
58
  config: Union[Unset, dict[str, Any]] = UNSET
59
- if not isinstance(self.config, Unset):
59
+ if self.config and not isinstance(self.config, Unset):
60
60
  config = self.config.to_dict()
61
61
 
62
62
  display_name = self.display_name
63
63
 
64
64
  labels: Union[Unset, dict[str, Any]] = UNSET
65
- if not isinstance(self.labels, Unset):
65
+ if self.labels and not isinstance(self.labels, Unset):
66
66
  labels = self.labels.to_dict()
67
67
 
68
68
  name = self.name
@@ -48,7 +48,7 @@ class ModelSpec:
48
48
 
49
49
  def to_dict(self) -> dict[str, Any]:
50
50
  configurations: Union[Unset, dict[str, Any]] = UNSET
51
- if not isinstance(self.configurations, Unset):
51
+ if self.configurations and not isinstance(self.configurations, Unset):
52
52
  configurations = self.configurations.to_dict()
53
53
 
54
54
  enabled = self.enabled
@@ -65,7 +65,7 @@ class ModelSpec:
65
65
  integration_connections = self.integration_connections
66
66
 
67
67
  pod_template: Union[Unset, dict[str, Any]] = UNSET
68
- if not isinstance(self.pod_template, Unset):
68
+ if self.pod_template and not isinstance(self.pod_template, Unset):
69
69
  pod_template = self.pod_template.to_dict()
70
70
 
71
71
  policies: Union[Unset, list[str]] = UNSET
@@ -73,15 +73,15 @@ class ModelSpec:
73
73
  policies = self.policies
74
74
 
75
75
  private_clusters: Union[Unset, dict[str, Any]] = UNSET
76
- if not isinstance(self.private_clusters, Unset):
76
+ if self.private_clusters and not isinstance(self.private_clusters, Unset):
77
77
  private_clusters = self.private_clusters.to_dict()
78
78
 
79
79
  runtime: Union[Unset, dict[str, Any]] = UNSET
80
- if not isinstance(self.runtime, Unset):
80
+ if self.runtime and not isinstance(self.runtime, Unset):
81
81
  runtime = self.runtime.to_dict()
82
82
 
83
83
  serverless_config: Union[Unset, dict[str, Any]] = UNSET
84
- if not isinstance(self.serverless_config, Unset):
84
+ if self.serverless_config and not isinstance(self.serverless_config, Unset):
85
85
  serverless_config = self.serverless_config.to_dict()
86
86
 
87
87
  model_provider = self.model_provider
@@ -29,7 +29,7 @@ class PendingInvitationAccept:
29
29
  email = self.email
30
30
 
31
31
  workspace: Union[Unset, dict[str, Any]] = UNSET
32
- if not isinstance(self.workspace, Unset):
32
+ if self.workspace and not isinstance(self.workspace, Unset):
33
33
  workspace = self.workspace.to_dict()
34
34
 
35
35
  field_dict: dict[str, Any] = {}
@@ -41,17 +41,17 @@ class PendingInvitationRender:
41
41
  invited_at = self.invited_at
42
42
 
43
43
  invited_by: Union[Unset, dict[str, Any]] = UNSET
44
- if not isinstance(self.invited_by, Unset):
44
+ if self.invited_by and not isinstance(self.invited_by, Unset):
45
45
  invited_by = self.invited_by.to_dict()
46
46
 
47
47
  role = self.role
48
48
 
49
49
  workspace: Union[Unset, dict[str, Any]] = UNSET
50
- if not isinstance(self.workspace, Unset):
50
+ if self.workspace and not isinstance(self.workspace, Unset):
51
51
  workspace = self.workspace.to_dict()
52
52
 
53
53
  workspace_details: Union[Unset, dict[str, Any]] = UNSET
54
- if not isinstance(self.workspace_details, Unset):
54
+ if self.workspace_details and not isinstance(self.workspace_details, Unset):
55
55
  workspace_details = self.workspace_details.to_dict()
56
56
 
57
57
  field_dict: dict[str, Any] = {}
beamlit/models/policy.py CHANGED
@@ -28,11 +28,11 @@ class Policy:
28
28
 
29
29
  def to_dict(self) -> dict[str, Any]:
30
30
  metadata: Union[Unset, dict[str, Any]] = UNSET
31
- if not isinstance(self.metadata, Unset):
31
+ if self.metadata and not isinstance(self.metadata, Unset):
32
32
  metadata = self.metadata.to_dict()
33
33
 
34
34
  spec: Union[Unset, dict[str, Any]] = UNSET
35
- if not isinstance(self.spec, Unset):
35
+ if self.spec and not isinstance(self.spec, Unset):
36
36
  spec = self.spec.to_dict()
37
37
 
38
38
  field_dict: dict[str, Any] = {}
@@ -35,7 +35,7 @@ class ProviderConfig:
35
35
  presigned_url = self.presigned_url
36
36
 
37
37
  runtime: Union[Unset, dict[str, Any]] = UNSET
38
- if not isinstance(self.runtime, Unset):
38
+ if self.runtime and not isinstance(self.runtime, Unset):
39
39
  runtime = self.runtime.to_dict()
40
40
 
41
41
  field_dict: dict[str, Any] = {}
@@ -0,0 +1,70 @@
1
+ from typing import Any, TypeVar, Union
2
+
3
+ from attrs import define as _attrs_define
4
+ from attrs import field as _attrs_field
5
+
6
+ from ..types import UNSET, Unset
7
+
8
+ T = TypeVar("T", bound="RepositoryType0")
9
+
10
+
11
+ @_attrs_define
12
+ class RepositoryType0:
13
+ """Repository
14
+
15
+ Attributes:
16
+ type_ (Union[Unset, str]): Repository type
17
+ url (Union[Unset, str]): Repository URL
18
+ """
19
+
20
+ type_: Union[Unset, str] = UNSET
21
+ url: Union[Unset, str] = UNSET
22
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
23
+
24
+ def to_dict(self) -> dict[str, Any]:
25
+ type_ = self.type_
26
+
27
+ url = self.url
28
+
29
+ field_dict: dict[str, Any] = {}
30
+ field_dict.update(self.additional_properties)
31
+ field_dict.update({})
32
+ if type_ is not UNSET:
33
+ field_dict["type"] = type_
34
+ if url is not UNSET:
35
+ field_dict["url"] = url
36
+
37
+ return field_dict
38
+
39
+ @classmethod
40
+ def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
41
+ if not src_dict:
42
+ return None
43
+ d = src_dict.copy()
44
+ type_ = d.pop("type", UNSET)
45
+
46
+ url = d.pop("url", UNSET)
47
+
48
+ repository_type_0 = cls(
49
+ type_=type_,
50
+ url=url,
51
+ )
52
+
53
+ repository_type_0.additional_properties = d
54
+ return repository_type_0
55
+
56
+ @property
57
+ def additional_keys(self) -> list[str]:
58
+ return list(self.additional_properties.keys())
59
+
60
+ def __getitem__(self, key: str) -> Any:
61
+ return self.additional_properties[key]
62
+
63
+ def __setitem__(self, key: str, value: Any) -> None:
64
+ self.additional_properties[key] = value
65
+
66
+ def __delitem__(self, key: str) -> None:
67
+ del self.additional_properties[key]
68
+
69
+ def __contains__(self, key: str) -> bool:
70
+ return key in self.additional_properties
@@ -55,21 +55,23 @@ class ResourceDeploymentMetrics:
55
55
  inference_per_second_global.append(componentsschemas_array_metric_item)
56
56
 
57
57
  inference_per_second_per_region: Union[Unset, dict[str, Any]] = UNSET
58
- if not isinstance(self.inference_per_second_per_region, Unset):
58
+ if self.inference_per_second_per_region and not isinstance(self.inference_per_second_per_region, Unset):
59
59
  inference_per_second_per_region = self.inference_per_second_per_region.to_dict()
60
60
 
61
61
  query_per_second_global = self.query_per_second_global
62
62
 
63
63
  query_per_second_per_code_global: Union[Unset, dict[str, Any]] = UNSET
64
- if not isinstance(self.query_per_second_per_code_global, Unset):
64
+ if self.query_per_second_per_code_global and not isinstance(self.query_per_second_per_code_global, Unset):
65
65
  query_per_second_per_code_global = self.query_per_second_per_code_global.to_dict()
66
66
 
67
67
  query_per_second_per_region: Union[Unset, dict[str, Any]] = UNSET
68
- if not isinstance(self.query_per_second_per_region, Unset):
68
+ if self.query_per_second_per_region and not isinstance(self.query_per_second_per_region, Unset):
69
69
  query_per_second_per_region = self.query_per_second_per_region.to_dict()
70
70
 
71
71
  query_per_second_per_region_per_code: Union[Unset, dict[str, Any]] = UNSET
72
- if not isinstance(self.query_per_second_per_region_per_code, Unset):
72
+ if self.query_per_second_per_region_per_code and not isinstance(
73
+ self.query_per_second_per_region_per_code, Unset
74
+ ):
73
75
  query_per_second_per_region_per_code = self.query_per_second_per_region_per_code.to_dict()
74
76
 
75
77
  field_dict: dict[str, Any] = {}
@@ -26,7 +26,7 @@ class ResourceDeploymentMetricsQueryPerSecondPerRegionPerCode:
26
26
 
27
27
  def to_dict(self) -> dict[str, Any]:
28
28
  region: Union[Unset, dict[str, Any]] = UNSET
29
- if not isinstance(self.region, Unset):
29
+ if self.region and not isinstance(self.region, Unset):
30
30
  region = self.region.to_dict()
31
31
 
32
32
  field_dict: dict[str, Any] = {}
@@ -52,7 +52,7 @@ class ResourceEnvironmentMetrics:
52
52
  last_n_requests.append(componentsschemas_array_metric_item)
53
53
 
54
54
  latency: Union[Unset, dict[str, Any]] = UNSET
55
- if not isinstance(self.latency, Unset):
55
+ if self.latency and not isinstance(self.latency, Unset):
56
56
  latency = self.latency.to_dict()
57
57
 
58
58
  request_total = self.request_total
@@ -36,7 +36,7 @@ class ResourceMetrics:
36
36
  inference_global.append(componentsschemas_array_metric_item)
37
37
 
38
38
  query_per_region: Union[Unset, dict[str, Any]] = UNSET
39
- if not isinstance(self.query_per_region, Unset):
39
+ if self.query_per_region and not isinstance(self.query_per_region, Unset):
40
40
  query_per_region = self.query_per_region.to_dict()
41
41
 
42
42
  field_dict: dict[str, Any] = {}
beamlit/models/runtime.py CHANGED
@@ -64,11 +64,11 @@ class Runtime:
64
64
  model = self.model
65
65
 
66
66
  readiness_probe: Union[Unset, dict[str, Any]] = UNSET
67
- if not isinstance(self.readiness_probe, Unset):
67
+ if self.readiness_probe and not isinstance(self.readiness_probe, Unset):
68
68
  readiness_probe = self.readiness_probe.to_dict()
69
69
 
70
70
  resources: Union[Unset, dict[str, Any]] = UNSET
71
- if not isinstance(self.resources, Unset):
71
+ if self.resources and not isinstance(self.resources, Unset):
72
72
  resources = self.resources.to_dict()
73
73
 
74
74
  serving_port = self.serving_port
@@ -65,7 +65,7 @@ class StoreAgent:
65
65
  image = self.image
66
66
 
67
67
  labels: Union[Unset, dict[str, Any]] = UNSET
68
- if not isinstance(self.labels, Unset):
68
+ if self.labels and not isinstance(self.labels, Unset):
69
69
  labels = self.labels.to_dict()
70
70
 
71
71
  name = self.name
@@ -78,7 +78,7 @@ class StoreFunction:
78
78
  kit.append(kit_item)
79
79
 
80
80
  labels: Union[Unset, dict[str, Any]] = UNSET
81
- if not isinstance(self.labels, Unset):
81
+ if self.labels and not isinstance(self.labels, Unset):
82
82
  labels = self.labels.to_dict()
83
83
 
84
84
  name = self.name
@@ -49,7 +49,7 @@ class Workspace:
49
49
  display_name = self.display_name
50
50
 
51
51
  labels: Union[Unset, dict[str, Any]] = UNSET
52
- if not isinstance(self.labels, Unset):
52
+ if self.labels and not isinstance(self.labels, Unset):
53
53
  labels = self.labels.to_dict()
54
54
 
55
55
  name = self.name
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beamlit
3
- Version: 0.0.34rc68
3
+ Version: 0.0.34rc69
4
4
  Summary: Add your description here
5
5
  Author-email: cploujoux <ch.ploujoux@gmail.com>
6
6
  Requires-Python: >=3.12
@@ -6,8 +6,8 @@ beamlit/run.py,sha256=HtDYDjD7oVfQ8r3T5_t4qN5UDJOJfsQILi45Z21ArAg,1446
6
6
  beamlit/types.py,sha256=E1hhDh_zXfsSQ0NCt9-uw90_Mr5iIlsdfnfvxv5HarU,1005
7
7
  beamlit/agents/__init__.py,sha256=nf1iwQwGtCG6nDqyVhxfWoqR6dv6X3bvSpCeqkTCFaM,101
8
8
  beamlit/agents/chain.py,sha256=vfCjiFHuu02uTTGicxMlFzjyICQkIjpXrBGs-7uJEsg,2826
9
- beamlit/agents/chat.py,sha256=b7-ZkRqgS7nxFLbh_fOf9riAoPYnlb9_vHxaf2xYuvI,4057
10
- beamlit/agents/decorator.py,sha256=IU4iZDAGAYt3KdeEWxmEyYBMFuJvtihBLY6vacDlFg8,5926
9
+ beamlit/agents/chat.py,sha256=6PE2f_tf6l4_-9mZ---ZHvxN52pmLkHkgh1ebPoG1BY,4052
10
+ beamlit/agents/decorator.py,sha256=_N5uYircuULo2EZ1B0vaD1Rsc64534DtojmUVAJGUAw,5921
11
11
  beamlit/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
12
12
  beamlit/api/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  beamlit/api/agents/create_agent.py,sha256=t5Pr62My2EhQlcIY71MrI73-0_q5Djr3a_Ybt9MIiQQ,3587
@@ -154,98 +154,99 @@ beamlit/functions/search/__init__.py,sha256=5NAthQ9PBwrkNg1FpLRx4flauvv0HyWuwaVS
154
154
  beamlit/functions/search/search.py,sha256=8s9ECltq7YE17j6rTxb12uY2EQY4_eTLHmwlIMThI0w,515
155
155
  beamlit/models/__init__.py,sha256=YMCHuYVLqV03yE_D8TB15I07F7wS1DYV022owTeMRYA,7897
156
156
  beamlit/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
157
- beamlit/models/agent.py,sha256=nGRGNghN5RID5q8oikPVzj1_Aahh9GmDhVPMIA901zc,4372
157
+ beamlit/models/agent.py,sha256=2ZY-fSK_x2eJbqxl_KighxwEknRXPVzNiV5WJwQDn4E,4420
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
- beamlit/models/agent_metadata.py,sha256=iVhVGchW-WI117G3Sd5yNjcYuHQDLWm7DE2P1PpAwds,4590
161
+ beamlit/models/agent_metadata.py,sha256=61A7i-2lfQrozV3Be2nRfGO-K1vch7FYDdWzt_Cr3oo,4606
162
162
  beamlit/models/agent_release.py,sha256=AXtHX_Ze7cMh2tKnRw2usRWnLf2B9u_iFPTF6WYdJLM,1928
163
- beamlit/models/agent_spec.py,sha256=g1ELptwKF2ASxc6P0daQeCBl6pOEaZC7nkwg6TLmlc8,11019
163
+ beamlit/models/agent_spec.py,sha256=SEWT_ZuHURLEnd04jVF6usfvyDp-cE0dI7NWI1LjBVU,11155
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
167
  beamlit/models/core_event.py,sha256=HJ0r2yUXAqidSxR6pdkEQhOWL981XP_UHdrjVKQrSrw,2062
168
- beamlit/models/core_spec.py,sha256=PVwrNNVStuUm7_MaeaE-6OYlFouZ-nDgti5IRz5hk28,7944
169
- beamlit/models/core_spec_configurations.py,sha256=ijJm4ApTJaD6PywpRH9nQXN3OxtPb042Sw9mizTaGCI,2210
168
+ beamlit/models/core_spec.py,sha256=ZG69MJqqa6Mas-lfIFvOZEfFwZ6G2Ny9M3ai8CyRMa4,8060
169
+ beamlit/models/core_spec_configurations.py,sha256=Yx_uUwWxlfBmV3SgDoqX3ERgrpbFNzvKn5CtqxtAv9A,2223
170
170
  beamlit/models/core_status.py,sha256=yYpSWFnsfTRvJIWmPhWJiHYKrh-24R3YqM4LAtnWGQI,1783
171
171
  beamlit/models/country.py,sha256=IYUZ6ErVduc3vmB01UEN8nIi6h5htupqFvyhRqEmKW4,1870
172
172
  beamlit/models/create_api_key_for_service_account_body.py,sha256=_D6aHXfZP8ksJeFlP-vEd5kEUuQAvofkaq5_N8ej_XM,2005
173
173
  beamlit/models/create_workspace_service_account_body.py,sha256=UHKYL3MSfVGMj4CNw0CzCsjnxdOxdnw6D8ujPrc76Xw,1958
174
174
  beamlit/models/create_workspace_service_account_response_200.py,sha256=qYHg4tbUWJWpFrSFS1pKFeBNidgwfRb2QoP_gV99dMM,3349
175
175
  beamlit/models/delete_workspace_service_account_response_200.py,sha256=wJt9T1kkoiDpMq5pE9uTZhXgeTqC0ZaTB51YBPBKo0M,2968
176
- beamlit/models/environment.py,sha256=IPWRzRMxXE2j4yJTBg9KoAcsY3Ut_TobK9ANlzM2aBU,2814
177
- beamlit/models/environment_metadata.py,sha256=4vASo711_zW8OCCFnyO7eSgPjEeDQFDj2JM7SstrTGA,4626
176
+ beamlit/models/environment.py,sha256=C_56rJlP-eJTGwQded_Jb67aZvdkpMY66j5n3C9m-LQ,2846
177
+ beamlit/models/environment_metadata.py,sha256=WqOCZODmOxp1878QhpTuHhc7JspeEB8H0OE_wx6lYWI,4642
178
178
  beamlit/models/environment_metrics.py,sha256=OdFB97SfNmAQ7u9PNcE3AaFOzzqAW_WTrBSPf3hJzjs,2556
179
179
  beamlit/models/environment_spec.py,sha256=zMgRdzew74oADGb2LxkPhtf5mHBfrsUyvCuBBxbKM14,1763
180
180
  beamlit/models/flavor.py,sha256=aJDHv9-KiLykalXgs6J6dor1YtewLwOBTztkHdEaMSs,1835
181
- beamlit/models/function.py,sha256=I1qEQV7W-k0EJBhxR8nYfvYO5KSBra5o_zMWETG9gZk,4417
181
+ beamlit/models/function.py,sha256=aFeLWeczgCE0299RcGeuZqKYV1J8E_FCWXNspcnX1Dg,4465
182
182
  beamlit/models/function_kit.py,sha256=VrwV4EOrEqs8QgyaI7MyevRCCt2fhsTkOzfQVWXojt0,3101
183
- beamlit/models/function_metadata.py,sha256=7OKXazGomwAupuMTrROFD67o4D-JCBB33gznzLUj0HI,4608
183
+ beamlit/models/function_metadata.py,sha256=cfx10NiqQY4VlQUyl8fH2-kiWpVmOmi8rZhepan2SrQ,4624
184
184
  beamlit/models/function_release.py,sha256=T8SuLZBBdgGDvUg3sVluocvrKTvNxzZ6Wq3kjK4lYk4,1955
185
- beamlit/models/function_spec.py,sha256=8nTfXLCGqEwCdOHjhF3UH0gwu_CGQZperdhljkxcs-U,10452
185
+ beamlit/models/function_spec.py,sha256=soyg4T_OU015e6d2CnAG3BrR6nZ-wjtDRdSBLryJ2qk,10568
186
186
  beamlit/models/get_trace_ids_response_200.py,sha256=m2uE11a9wE5c7xPTDVd4CuubQc2cPYJNaYpbcj-V1rU,1275
187
187
  beamlit/models/get_trace_logs_response_200.py,sha256=NIFtg8qcE26_oJxoRYkt1KSV2JSYUxdUu45Gxs0Qli0,1280
188
188
  beamlit/models/get_trace_response_200.py,sha256=1QePQMknfEP7DjPXb3ulf6v17430R_MJ4SPovdYK0NI,1257
189
189
  beamlit/models/get_workspace_service_accounts_response_200_item.py,sha256=ATEojS0VhRmL6a9JPWT3-fl3plosONbIWa5Jpoe4Pag,2981
190
190
  beamlit/models/increase_and_rate_metric.py,sha256=a_PycDKjMReU8vtEuGd6sImjG_Opf0SGPSB3Qo2pEqU,1790
191
191
  beamlit/models/integration_config.py,sha256=lq8yZR1th2qrJmGAk5aEcuvuPy4zAI9XyNol5YjeGVY,1258
192
- beamlit/models/integration_connection.py,sha256=WpMlijS8nzUrS1XE4uBuLgkCPNOkvFXHToZ2l74MSdc,2868
192
+ beamlit/models/integration_connection.py,sha256=yJjLjbAb5lVTf8Plfck5TrottnTmFr3mHcLZ6gFWANo,2900
193
193
  beamlit/models/integration_connection_config.py,sha256=w97Bx4d1YL1OIBA75NLcsfobJ1-mGbP2OmV_90oZMeY,1311
194
194
  beamlit/models/integration_connection_secret.py,sha256=Fj_FDF7K5_cpmU3KFXbSwzgsExpujQ0OrD69YYCrpmM,1707
195
- beamlit/models/integration_connection_spec.py,sha256=L54nwNCc8iek4cR7lUBefEBRhGvedbHt5c6Ea5aAUpg,3387
195
+ beamlit/models/integration_connection_spec.py,sha256=GazDO5q-P6_998u4qVdknobTCG8kIKMl2l1Ck6yrOPo,3419
196
196
  beamlit/models/integration_model.py,sha256=gW6folMKJsIScQsV0IT5nQpO2sKzQb6d3E9fw4W4RIY,4469
197
197
  beamlit/models/integration_repository.py,sha256=Ac5c_UBdlUHvGflvCzqA5gXzX1_YEDHz3yBgMCGqqDg,2397
198
198
  beamlit/models/invite_workspace_user_body.py,sha256=ITmKPCuOGKTHn4VjnZ2EjIj6PGPoGh-M_rzgo0VMgNM,1612
199
199
  beamlit/models/last_n_requests_metric.py,sha256=BYaEhJAeoGE-NtdlT7EkUSkaNManeCsXeVryOcKH57s,2544
200
200
  beamlit/models/latency_metric.py,sha256=qWTu3ZxNwTZZ3mZO9HnTy6S0UaD33vaud2ozN6CsiqQ,1235
201
201
  beamlit/models/location_response.py,sha256=Tvs5CdgyB7sPvogk4clT9jMJQa63Ivt3iIEfRP9UcKA,3388
202
- beamlit/models/metadata.py,sha256=3bfaNPl7-LeO5D0ejozDDgTLFTHzLt_he9WbVXQBOXc,4238
202
+ beamlit/models/metadata.py,sha256=vriClpcAnCV-Y6o7auYbEMf2U_LPR4txFKTSrNMxrRE,4254
203
203
  beamlit/models/metadata_labels.py,sha256=HA_fKLmJBlJlPfQKmWqZvckUpQhmMSBW9X7F4KZJ4-8,1231
204
204
  beamlit/models/metric.py,sha256=lK11c5t0S01eO-fWvUVPaMycNRramXHo8UPTK3Ioqeg,2157
205
205
  beamlit/models/metrics.py,sha256=I4wv20oyTFh7OAITDbeLgmTZuZTf41pBX-Z5rOJvnuo,4024
206
- beamlit/models/model.py,sha256=7Q4QsZeJ1ugltS81neawLFCT112O9cdPtGXUhzJoNrs,4474
207
- beamlit/models/model_metadata.py,sha256=80mbVywL-leJKCFeCPUMQ2LstsEcYRokIv-oXEmTGIo,4590
206
+ beamlit/models/model.py,sha256=-u0Ujcam4g3SaOWikGtpZhxipaqsV1PY9wDrfM_mwTc,4522
207
+ beamlit/models/model_metadata.py,sha256=W6uJGI_Uu0UPt_dOm2xzXqUS6NxNtsRWyhw7IVOMXA4,4606
208
208
  beamlit/models/model_private_cluster.py,sha256=EojXwmxgDLogsUlTDRw9PvhiQVk_b5nQUSBbWQosQpg,2281
209
- beamlit/models/model_provider.py,sha256=2_tEQKrPqkPvFokpoNCNW8O-xlN7ILk4uZ_VST5B1Fw,5530
209
+ beamlit/models/model_provider.py,sha256=iqvS1c9GE2u58QttSlATqTIOf-EuN9CtljWqTwHdTpU,5562
210
210
  beamlit/models/model_release.py,sha256=ql8EDbKc9--kre7zp3o5_XoJjpAoXrsgJdYbjYST4vs,1928
211
- beamlit/models/model_spec.py,sha256=ScGBJ7Y79O6KB0YzRIWsFrIy8halbz8OyjQolIBd1Ac,8302
211
+ beamlit/models/model_spec.py,sha256=ROGUUXo_Yir3aqca5H0S62GLeL_sfRaQ2pRRYrkySh4,8418
212
212
  beamlit/models/owner_fields.py,sha256=8LsT7inzzFI1hZQma798gYoOfJpdmwK9T8y_0JrKGSU,2022
213
213
  beamlit/models/pending_invitation.py,sha256=YJaUNHXoq-X1ZTBkOpmRQj31R99S6Y7Ik45dHDss6-M,3797
214
- beamlit/models/pending_invitation_accept.py,sha256=PQQm89Hko7M9daRsQx5i7qbmf1mUqgRBI_LaIB-9Z4E,2385
215
- beamlit/models/pending_invitation_render.py,sha256=fRxg3M3nJkh0hxQIhRFSkgoQBRCCU0PlKhR55Swpm18,5081
214
+ beamlit/models/pending_invitation_accept.py,sha256=-Tf3exLKVhtHLXO6DpTQVJE1PMf_YywE2oEaEpe2ywc,2404
215
+ beamlit/models/pending_invitation_render.py,sha256=TUxjZXs2OhThU46IKAnwqUEichfhpHQrsQCageFQN-c,5147
216
216
  beamlit/models/pending_invitation_render_invited_by.py,sha256=L7Gxad50KseW0KF-PUKZXtZR1vOirpVsv0uqoIUbTis,2528
217
217
  beamlit/models/pending_invitation_render_workspace.py,sha256=tvn8Rk0xxUXdVHsHdc2pu_QopiIjC52Pm4hrMnRNLqs,2004
218
218
  beamlit/models/pending_invitation_workspace_details.py,sha256=LBC_ucOKBNQO9r0NWvmJ-lid-P02ey2mOz8myVzzDno,2200
219
219
  beamlit/models/pod_template_spec.py,sha256=n9MAqx3uLXZK4rk-5r8k8fL78aFqGnMBlCa-Vprhiy0,1259
220
- beamlit/models/policy.py,sha256=m-i3Nqq-yFgTU4R1gXleSbuj6Uqq2rggh548g9tx4Cs,2713
220
+ beamlit/models/policy.py,sha256=mloeSqMZyDn_QDrSCq2NnpbqdEsYdmD64YB--d9E-eg,2745
221
221
  beamlit/models/policy_location.py,sha256=MSNHIcfK2v3FVICy1r6sJwlkJ7ClASt_5sT1gzdztx4,1841
222
222
  beamlit/models/policy_spec.py,sha256=fYeh1eLKzHA_SLR4IAvlLyh5VjAhs-iojqU8ILCcXV4,4383
223
223
  beamlit/models/private_cluster.py,sha256=7n5GIgiCBbD9HDNlnZNHuIIf5-nr6wZb2DSi-25O9v0,6519
224
224
  beamlit/models/private_location.py,sha256=EhXB6EcQMnMbe4-RMBNlawJhx9a0T5i0xebrbVFjlrE,1609
225
- beamlit/models/provider_config.py,sha256=f5zfL731eOkTJNttYqnawNyq8Y7VeEqoTIpfCiSOgJU,2880
225
+ beamlit/models/provider_config.py,sha256=kS4AQhOHCl2-Rp9WjL-yb8UYU4LXIFzehZVu5HxhViE,2897
226
226
  beamlit/models/qps.py,sha256=Us3PQTfeM5KN-QwLXkJ2XESJDIyTvD1tSJR9taClIog,1684
227
227
  beamlit/models/repository.py,sha256=y179VzQivkOSXq2zW-z0mGxVwIG-rZWSs_JRxxfSBhE,1791
228
+ beamlit/models/repository_type_0.py,sha256=TIeKJNECkmtyiKUOwVLQ8UZeT31K6JDB5etArHc2VDM,1822
228
229
  beamlit/models/request_total_metric.py,sha256=5i4go8Mhr-dpPs7hXBxZTq8glIJlEIXlzklJby9AhPg,2817
229
- beamlit/models/resource_deployment_metrics.py,sha256=TaV4-xbI79FCfzFcgDQ-A3EjJTByMKA42xgvS7pcT10,8875
230
+ beamlit/models/resource_deployment_metrics.py,sha256=Ae3RHVyZ40sGV_bXEu7UVvvLOKZdC3NvpT47J5Dp8i4,9063
230
231
  beamlit/models/resource_deployment_metrics_inference_per_second_per_region.py,sha256=phgZ9vJ3s7pYIYo14mgyav6ZrJnY3IS7y5T6To1IDjE,2624
231
- beamlit/models/resource_deployment_metrics_query_per_second_per_region_per_code.py,sha256=uCzjEHEy3j3j3Jcdul097N6hiKAHBhM8laQ-TxDs65c,2381
232
- beamlit/models/resource_environment_metrics.py,sha256=hCtC9lOzuHsjQjkeKnf8NrOVwdysowIKHRb3jSlPf40,5886
232
+ beamlit/models/resource_deployment_metrics_query_per_second_per_region_per_code.py,sha256=ej_Md0plqTE-_IqTecrHFNhtY78MJWZ1tXY3OLCmReU,2397
233
+ beamlit/models/resource_environment_metrics.py,sha256=voUN8l1oZkLm5R9_QE0U2ExtLP4WUyTWhfT8gG2Spiw,5903
233
234
  beamlit/models/resource_environment_metrics_inference_per_region.py,sha256=pIc14XdNeKq50WGWU0FnmNqtFU5S8y_q3gomLA-dOgM,2580
234
235
  beamlit/models/resource_environment_metrics_inference_per_second_per_region.py,sha256=CmJx_tjhsfHS1hMHOwOkuVPypbG3xyZ_GCG3A2uPhr4,2629
235
236
  beamlit/models/resource_environment_metrics_query_per_region_per_code.py,sha256=G2qxM4jRKavyC96K9CO6AlF_7_K6aHtV4dMqT4n4vcA,2307
236
237
  beamlit/models/resource_environment_metrics_query_per_second_per_region_per_code.py,sha256=amPg8eSPI7ndvVG2tF8SvprZv56cfluQyvgUywdTcd4,2386
237
238
  beamlit/models/resource_log.py,sha256=WxZPR-Muz1A-cCxeDuSIuBzRPE-aqBcp0BkAOWv1a_o,1965
238
- beamlit/models/resource_metrics.py,sha256=cmpCEToBWR5OFWsWn2hT3eJG4igS74_jqrI-Mmnh9dQ,3438
239
- beamlit/models/runtime.py,sha256=8G0HCwdXUvg2CFfJBHMsRhmdSxOXvDaaivsBaqFevaw,5971
239
+ beamlit/models/resource_metrics.py,sha256=cgLV2iYBZ_LIG8E19RcHQh_bMe5r4XHwtvYcn7N0JoU,3464
240
+ beamlit/models/runtime.py,sha256=GsUowh_kFE7GHv0lPt8V0QuMOe1_oIo8Ap8dZrEon4o,6015
240
241
  beamlit/models/runtime_readiness_probe.py,sha256=iqNikZl5CffpNEwsUxVbs9k2_y2IUWpkEyZicf5T4Pk,1317
241
242
  beamlit/models/runtime_resources.py,sha256=6ioyGkvDPn93_MjJTJwB-J33R9vLJpagz4OvFuIExWE,1317
242
243
  beamlit/models/serverless_config.py,sha256=He_W4af-9QoBztQl3i3loSvn9pyHKhbb5fsQsuJSI-M,4989
243
244
  beamlit/models/spec_configuration.py,sha256=oGmMqoZSVEGedarAou-102vfw16bFevHUp4C_OW6h1k,1970
244
- beamlit/models/store_agent.py,sha256=ej9UktgvxVhe8L3Xuk8ldR93_zHPBRjoFcbqkmaB_-I,5636
245
+ beamlit/models/store_agent.py,sha256=-GQd4UT_l15j2XHklpjYUPa_SpleSFtcRzHynGPxWUg,5652
245
246
  beamlit/models/store_agent_labels.py,sha256=DDsYO0AXh8B4k1hgLBXHyHH1WwP2kKCyHwZqmd3qbOE,1256
246
247
  beamlit/models/store_configuration.py,sha256=8ppSJsmkC4yjPQXipt8hiju_bskYGEQ37FtmCLuYOiQ,4958
247
248
  beamlit/models/store_configuration_option.py,sha256=ErsfYkkG-b8MXf_xWS837FGdlbZWzTyDMkLtfXzmqQY,2269
248
- beamlit/models/store_function.py,sha256=j7QQFspOYzMEmJB-h3jf3YXE7IeJt89OxvErqgeFo3c,7494
249
+ beamlit/models/store_function.py,sha256=vh59tw1Buqe9joggLjCjfuUN4_TC3-TNSORRWVhjTSY,7510
249
250
  beamlit/models/store_function_kit.py,sha256=S0i3KMHkJ6FwWwMcPqUOYfXi8AYZ21WC7TLIWD8L1I8,3135
250
251
  beamlit/models/store_function_labels.py,sha256=ZoEKD_CUDs7HcdHEobDsPz8OcUAZ11pFW3pVYrbz0KQ,1274
251
252
  beamlit/models/store_function_parameter.py,sha256=0iuvA6WVExwzqt5HRNusS9PFtke5_qwVu8fT2MFOH8c,2553
@@ -255,13 +256,13 @@ beamlit/models/update_workspace_service_account_body.py,sha256=fz2MGqwRfrYkMmL8P
255
256
  beamlit/models/update_workspace_service_account_response_200.py,sha256=nCLPHFP_iR1MIpicgQMpbiyme97ZMfTFhyQUEbhzkHI,2968
256
257
  beamlit/models/update_workspace_user_role_body.py,sha256=FyLCWy9oRgUxoFPxxtrDvwzh1kHLkoTZ1pL5w3ayexM,1572
257
258
  beamlit/models/websocket_channel.py,sha256=jg3vN7yS_oOIwGtndtIUr1LsyEA58RXLXahqSK5rdUU,2696
258
- beamlit/models/workspace.py,sha256=7G3Q9_D9n7_AczznYOToAsEGjWgMJwhnFb3flYNg2ro,4245
259
+ beamlit/models/workspace.py,sha256=J_YibDQqp0esl1G941ryVQCQfGk0EDSo4qXrjUWDXI8,4261
259
260
  beamlit/models/workspace_labels.py,sha256=WbnUY6eCTkUNdY7hhhSF-KQCl8fWFfkCf7hzCTiNp4A,1246
260
261
  beamlit/models/workspace_user.py,sha256=70CcifQWYbeWG7TDui4pblTzUe5sVK0AS19vNCzKE8g,3423
261
262
  beamlit/serve/app.py,sha256=_aG2UVQ3Y85rUW3ehu9TlzLnowkfh54IIz558ftqOMw,3638
262
263
  beamlit/serve/middlewares/__init__.py,sha256=1dVmnOmhAQWvWktqHkKSIX-YoF6fmMU8xkUQuhg_rJU,148
263
264
  beamlit/serve/middlewares/accesslog.py,sha256=Mu4T4_9OvHybjA0ApzZFpgi2C8f3X1NbUk-76v634XM,631
264
265
  beamlit/serve/middlewares/processtime.py,sha256=lDAaIasZ4bwvN-HKHvZpaD9r-yrkVNZYx4abvbjbrCg,411
265
- beamlit-0.0.34rc68.dist-info/METADATA,sha256=bIoGyCBjA63Kj4YDv91RZ9lzWwRkXq0ePPChbVqTj_8,2412
266
- beamlit-0.0.34rc68.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
267
- beamlit-0.0.34rc68.dist-info/RECORD,,
266
+ beamlit-0.0.34rc69.dist-info/METADATA,sha256=GO9qWMmmhuDWzxpcJxTdc5zSt399Fh-_AudQdKGCG0U,2412
267
+ beamlit-0.0.34rc69.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
268
+ beamlit-0.0.34rc69.dist-info/RECORD,,