beamlit 0.0.56rc107__py3-none-any.whl → 0.0.57__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/agents/chain.py +0 -2
- beamlit/agents/chat.py +20 -8
- beamlit/agents/decorator.py +112 -99
- beamlit/agents/thread.py +5 -9
- beamlit/api/agents/delete_agent.py +1 -22
- beamlit/api/agents/get_agent.py +1 -22
- beamlit/api/agents/get_agent_metrics.py +13 -34
- beamlit/api/agents/get_agent_trace_ids.py +44 -14
- beamlit/api/agents/{list_agent_history.py → list_agent_revisions.py} +21 -17
- beamlit/api/agents/list_agents.py +4 -36
- beamlit/api/default/get_trace_ids.py +0 -15
- beamlit/api/default/list_mcp_hub_definitions.py +12 -12
- beamlit/api/functions/delete_function.py +1 -22
- beamlit/api/functions/get_function.py +1 -22
- beamlit/api/functions/get_function_metrics.py +13 -34
- beamlit/api/functions/get_function_trace_ids.py +44 -14
- beamlit/api/functions/{create_function_release.py → list_function_revisions.py} +26 -18
- beamlit/api/functions/list_functions.py +4 -36
- beamlit/api/knowledgebases/create_knowledgebase.py +4 -4
- beamlit/api/knowledgebases/delete_knowledgebase.py +5 -26
- beamlit/api/knowledgebases/get_knowledgebase.py +1 -22
- beamlit/api/{environments/get_environment_metrics.py → knowledgebases/list_knowledgebase_revisions.py} +34 -34
- beamlit/api/knowledgebases/list_knowledgebases.py +4 -36
- beamlit/api/models/create_model.py +4 -8
- beamlit/api/models/delete_model.py +1 -22
- beamlit/api/models/get_model.py +1 -22
- beamlit/api/models/get_model_metrics.py +13 -34
- beamlit/api/models/get_model_trace_ids.py +44 -14
- beamlit/api/models/{release_model.py → list_model_revisions.py} +26 -22
- beamlit/api/models/list_models.py +4 -36
- beamlit/api/models/update_model.py +4 -8
- beamlit/authentication/authentication.py +11 -8
- beamlit/authentication/clientcredentials.py +15 -28
- beamlit/authentication/credentials.py +2 -7
- beamlit/common/settings.py +1 -4
- beamlit/deploy/deploy.py +15 -9
- beamlit/functions/common.py +16 -16
- beamlit/functions/local/local.py +4 -5
- beamlit/functions/mcp/client.py +96 -0
- beamlit/functions/mcp/mcp.py +56 -46
- beamlit/functions/remote/remote.py +9 -11
- beamlit/models/__init__.py +8 -38
- beamlit/models/agent.py +6 -6
- beamlit/models/function.py +6 -6
- beamlit/models/knowledgebase.py +6 -6
- beamlit/models/last_n_requests_metric.py +0 -9
- beamlit/models/model.py +7 -7
- beamlit/models/{resource_environment_metrics.py → resource_metrics.py} +20 -26
- beamlit/models/{resource_environment_metrics_request_total_per_code.py → resource_metrics_request_total_per_code.py} +5 -5
- beamlit/models/{resource_environment_metrics_rps_per_code.py → resource_metrics_rps_per_code.py} +5 -5
- beamlit/models/{model_release.py → revision_metadata.py} +20 -20
- beamlit/models/runtime.py +2 -2
- beamlit/models/workspace.py +0 -9
- beamlit/run.py +3 -7
- beamlit/serve/app.py +4 -8
- {beamlit-0.0.56rc107.dist-info → beamlit-0.0.57.dist-info}/METADATA +2 -1
- {beamlit-0.0.56rc107.dist-info → beamlit-0.0.57.dist-info}/RECORD +63 -91
- beamlit/api/agents/create_agent_release.py +0 -146
- beamlit/api/agents/delete_agent_history.py +0 -155
- beamlit/api/agents/get_agent_history.py +0 -155
- beamlit/api/agents/put_agent_history.py +0 -181
- beamlit/api/environments/__init__.py +0 -0
- beamlit/api/environments/create_environment.py +0 -167
- beamlit/api/environments/delete_environment.py +0 -154
- beamlit/api/environments/get_environment.py +0 -154
- beamlit/api/environments/list_environments.py +0 -139
- beamlit/api/environments/update_environment.py +0 -180
- beamlit/api/generation/__init__.py +0 -0
- beamlit/api/generation/run_information_generation_agent.py +0 -168
- beamlit/api/history/__init__.py +0 -0
- beamlit/api/history/get_agents_history.py +0 -155
- beamlit/api/history/list_agents_history.py +0 -131
- beamlit/models/agent_history.py +0 -167
- beamlit/models/agent_history_event.py +0 -133
- beamlit/models/agent_information_request.py +0 -63
- beamlit/models/agent_information_response.py +0 -79
- beamlit/models/agent_release.py +0 -70
- beamlit/models/environment.py +0 -96
- beamlit/models/environment_metadata.py +0 -148
- beamlit/models/environment_metrics.py +0 -77
- beamlit/models/environment_spec.py +0 -63
- beamlit/models/function_release.py +0 -70
- beamlit/models/knowledgebase_release.py +0 -70
- beamlit/models/mcp_hub_artifact.py +0 -188
- beamlit/models/mcp_hub_artifact_entrypoint.py +0 -45
- beamlit/models/mcp_hub_artifact_form.py +0 -45
- /beamlit/api/agents/{get_agent_environment_logs.py → get_agent_logs.py} +0 -0
- /beamlit/api/functions/{get_function_environment_logs.py → get_function_logs.py} +0 -0
- /beamlit/api/models/{get_model_environment_logs.py → get_model_logs.py} +0 -0
- {beamlit-0.0.56rc107.dist-info → beamlit-0.0.57.dist-info}/WHEEL +0 -0
- {beamlit-0.0.56rc107.dist-info → beamlit-0.0.57.dist-info}/entry_points.txt +0 -0
- {beamlit-0.0.56rc107.dist-info → beamlit-0.0.57.dist-info}/licenses/LICENSE +0 -0
@@ -1,188 +0,0 @@
|
|
1
|
-
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
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
|
-
if TYPE_CHECKING:
|
9
|
-
from ..models.mcp_hub_artifact_entrypoint import MCPHubArtifactEntrypoint
|
10
|
-
from ..models.mcp_hub_artifact_form import MCPHubArtifactForm
|
11
|
-
|
12
|
-
|
13
|
-
T = TypeVar("T", bound="MCPHubArtifact")
|
14
|
-
|
15
|
-
|
16
|
-
@_attrs_define
|
17
|
-
class MCPHubArtifact:
|
18
|
-
"""Artifact from the MCP Hub
|
19
|
-
|
20
|
-
Attributes:
|
21
|
-
categories (Union[Unset, list[Any]]): Categories of the artifact
|
22
|
-
coming_soon (Union[Unset, bool]): If the artifact is coming soon
|
23
|
-
description (Union[Unset, str]): Description of the artifact
|
24
|
-
display_name (Union[Unset, str]): Display name of the artifact
|
25
|
-
enterprise (Union[Unset, bool]): If the artifact is enterprise
|
26
|
-
entrypoint (Union[Unset, MCPHubArtifactEntrypoint]): Entrypoint of the artifact
|
27
|
-
form (Union[Unset, MCPHubArtifactForm]): Form of the artifact
|
28
|
-
icon (Union[Unset, str]): Icon of the artifact
|
29
|
-
integration (Union[Unset, str]): Integration of the artifact
|
30
|
-
long_description (Union[Unset, str]): Long description of the artifact
|
31
|
-
name (Union[Unset, str]): Name of the artifact
|
32
|
-
url (Union[Unset, str]): URL of the artifact
|
33
|
-
"""
|
34
|
-
|
35
|
-
categories: Union[Unset, list[Any]] = UNSET
|
36
|
-
coming_soon: Union[Unset, bool] = UNSET
|
37
|
-
description: Union[Unset, str] = UNSET
|
38
|
-
display_name: Union[Unset, str] = UNSET
|
39
|
-
enterprise: Union[Unset, bool] = UNSET
|
40
|
-
entrypoint: Union[Unset, "MCPHubArtifactEntrypoint"] = UNSET
|
41
|
-
form: Union[Unset, "MCPHubArtifactForm"] = UNSET
|
42
|
-
icon: Union[Unset, str] = UNSET
|
43
|
-
integration: Union[Unset, str] = UNSET
|
44
|
-
long_description: Union[Unset, str] = UNSET
|
45
|
-
name: Union[Unset, str] = UNSET
|
46
|
-
url: Union[Unset, str] = UNSET
|
47
|
-
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
48
|
-
|
49
|
-
def to_dict(self) -> dict[str, Any]:
|
50
|
-
categories: Union[Unset, list[Any]] = UNSET
|
51
|
-
if not isinstance(self.categories, Unset):
|
52
|
-
categories = self.categories
|
53
|
-
|
54
|
-
coming_soon = self.coming_soon
|
55
|
-
|
56
|
-
description = self.description
|
57
|
-
|
58
|
-
display_name = self.display_name
|
59
|
-
|
60
|
-
enterprise = self.enterprise
|
61
|
-
|
62
|
-
entrypoint: Union[Unset, dict[str, Any]] = UNSET
|
63
|
-
if self.entrypoint and not isinstance(self.entrypoint, Unset) and not isinstance(self.entrypoint, dict):
|
64
|
-
entrypoint = self.entrypoint.to_dict()
|
65
|
-
elif self.entrypoint and isinstance(self.entrypoint, dict):
|
66
|
-
entrypoint = self.entrypoint
|
67
|
-
|
68
|
-
form: Union[Unset, dict[str, Any]] = UNSET
|
69
|
-
if self.form and not isinstance(self.form, Unset) and not isinstance(self.form, dict):
|
70
|
-
form = self.form.to_dict()
|
71
|
-
elif self.form and isinstance(self.form, dict):
|
72
|
-
form = self.form
|
73
|
-
|
74
|
-
icon = self.icon
|
75
|
-
|
76
|
-
integration = self.integration
|
77
|
-
|
78
|
-
long_description = self.long_description
|
79
|
-
|
80
|
-
name = self.name
|
81
|
-
|
82
|
-
url = self.url
|
83
|
-
|
84
|
-
field_dict: dict[str, Any] = {}
|
85
|
-
field_dict.update(self.additional_properties)
|
86
|
-
field_dict.update({})
|
87
|
-
if categories is not UNSET:
|
88
|
-
field_dict["categories"] = categories
|
89
|
-
if coming_soon is not UNSET:
|
90
|
-
field_dict["coming_soon"] = coming_soon
|
91
|
-
if description is not UNSET:
|
92
|
-
field_dict["description"] = description
|
93
|
-
if display_name is not UNSET:
|
94
|
-
field_dict["displayName"] = display_name
|
95
|
-
if enterprise is not UNSET:
|
96
|
-
field_dict["enterprise"] = enterprise
|
97
|
-
if entrypoint is not UNSET:
|
98
|
-
field_dict["entrypoint"] = entrypoint
|
99
|
-
if form is not UNSET:
|
100
|
-
field_dict["form"] = form
|
101
|
-
if icon is not UNSET:
|
102
|
-
field_dict["icon"] = icon
|
103
|
-
if integration is not UNSET:
|
104
|
-
field_dict["integration"] = integration
|
105
|
-
if long_description is not UNSET:
|
106
|
-
field_dict["longDescription"] = long_description
|
107
|
-
if name is not UNSET:
|
108
|
-
field_dict["name"] = name
|
109
|
-
if url is not UNSET:
|
110
|
-
field_dict["url"] = url
|
111
|
-
|
112
|
-
return field_dict
|
113
|
-
|
114
|
-
@classmethod
|
115
|
-
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
116
|
-
from ..models.mcp_hub_artifact_entrypoint import MCPHubArtifactEntrypoint
|
117
|
-
from ..models.mcp_hub_artifact_form import MCPHubArtifactForm
|
118
|
-
|
119
|
-
if not src_dict:
|
120
|
-
return None
|
121
|
-
d = src_dict.copy()
|
122
|
-
categories = cast(list[Any], d.pop("categories", UNSET))
|
123
|
-
|
124
|
-
coming_soon = d.pop("coming_soon", UNSET)
|
125
|
-
|
126
|
-
description = d.pop("description", UNSET)
|
127
|
-
|
128
|
-
display_name = d.pop("displayName", UNSET)
|
129
|
-
|
130
|
-
enterprise = d.pop("enterprise", UNSET)
|
131
|
-
|
132
|
-
_entrypoint = d.pop("entrypoint", UNSET)
|
133
|
-
entrypoint: Union[Unset, MCPHubArtifactEntrypoint]
|
134
|
-
if isinstance(_entrypoint, Unset):
|
135
|
-
entrypoint = UNSET
|
136
|
-
else:
|
137
|
-
entrypoint = MCPHubArtifactEntrypoint.from_dict(_entrypoint)
|
138
|
-
|
139
|
-
_form = d.pop("form", UNSET)
|
140
|
-
form: Union[Unset, MCPHubArtifactForm]
|
141
|
-
if isinstance(_form, Unset):
|
142
|
-
form = UNSET
|
143
|
-
else:
|
144
|
-
form = MCPHubArtifactForm.from_dict(_form)
|
145
|
-
|
146
|
-
icon = d.pop("icon", UNSET)
|
147
|
-
|
148
|
-
integration = d.pop("integration", UNSET)
|
149
|
-
|
150
|
-
long_description = d.pop("longDescription", UNSET)
|
151
|
-
|
152
|
-
name = d.pop("name", UNSET)
|
153
|
-
|
154
|
-
url = d.pop("url", UNSET)
|
155
|
-
|
156
|
-
mcp_hub_artifact = cls(
|
157
|
-
categories=categories,
|
158
|
-
coming_soon=coming_soon,
|
159
|
-
description=description,
|
160
|
-
display_name=display_name,
|
161
|
-
enterprise=enterprise,
|
162
|
-
entrypoint=entrypoint,
|
163
|
-
form=form,
|
164
|
-
icon=icon,
|
165
|
-
integration=integration,
|
166
|
-
long_description=long_description,
|
167
|
-
name=name,
|
168
|
-
url=url,
|
169
|
-
)
|
170
|
-
|
171
|
-
mcp_hub_artifact.additional_properties = d
|
172
|
-
return mcp_hub_artifact
|
173
|
-
|
174
|
-
@property
|
175
|
-
def additional_keys(self) -> list[str]:
|
176
|
-
return list(self.additional_properties.keys())
|
177
|
-
|
178
|
-
def __getitem__(self, key: str) -> Any:
|
179
|
-
return self.additional_properties[key]
|
180
|
-
|
181
|
-
def __setitem__(self, key: str, value: Any) -> None:
|
182
|
-
self.additional_properties[key] = value
|
183
|
-
|
184
|
-
def __delitem__(self, key: str) -> None:
|
185
|
-
del self.additional_properties[key]
|
186
|
-
|
187
|
-
def __contains__(self, key: str) -> bool:
|
188
|
-
return key in self.additional_properties
|
@@ -1,45 +0,0 @@
|
|
1
|
-
from typing import Any, TypeVar
|
2
|
-
|
3
|
-
from attrs import define as _attrs_define
|
4
|
-
from attrs import field as _attrs_field
|
5
|
-
|
6
|
-
T = TypeVar("T", bound="MCPHubArtifactEntrypoint")
|
7
|
-
|
8
|
-
|
9
|
-
@_attrs_define
|
10
|
-
class MCPHubArtifactEntrypoint:
|
11
|
-
"""Entrypoint of the artifact"""
|
12
|
-
|
13
|
-
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
14
|
-
|
15
|
-
def to_dict(self) -> dict[str, Any]:
|
16
|
-
field_dict: dict[str, Any] = {}
|
17
|
-
field_dict.update(self.additional_properties)
|
18
|
-
|
19
|
-
return field_dict
|
20
|
-
|
21
|
-
@classmethod
|
22
|
-
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
23
|
-
if not src_dict:
|
24
|
-
return None
|
25
|
-
d = src_dict.copy()
|
26
|
-
mcp_hub_artifact_entrypoint = cls()
|
27
|
-
|
28
|
-
mcp_hub_artifact_entrypoint.additional_properties = d
|
29
|
-
return mcp_hub_artifact_entrypoint
|
30
|
-
|
31
|
-
@property
|
32
|
-
def additional_keys(self) -> list[str]:
|
33
|
-
return list(self.additional_properties.keys())
|
34
|
-
|
35
|
-
def __getitem__(self, key: str) -> Any:
|
36
|
-
return self.additional_properties[key]
|
37
|
-
|
38
|
-
def __setitem__(self, key: str, value: Any) -> None:
|
39
|
-
self.additional_properties[key] = value
|
40
|
-
|
41
|
-
def __delitem__(self, key: str) -> None:
|
42
|
-
del self.additional_properties[key]
|
43
|
-
|
44
|
-
def __contains__(self, key: str) -> bool:
|
45
|
-
return key in self.additional_properties
|
@@ -1,45 +0,0 @@
|
|
1
|
-
from typing import Any, TypeVar
|
2
|
-
|
3
|
-
from attrs import define as _attrs_define
|
4
|
-
from attrs import field as _attrs_field
|
5
|
-
|
6
|
-
T = TypeVar("T", bound="MCPHubArtifactForm")
|
7
|
-
|
8
|
-
|
9
|
-
@_attrs_define
|
10
|
-
class MCPHubArtifactForm:
|
11
|
-
"""Form of the artifact"""
|
12
|
-
|
13
|
-
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
14
|
-
|
15
|
-
def to_dict(self) -> dict[str, Any]:
|
16
|
-
field_dict: dict[str, Any] = {}
|
17
|
-
field_dict.update(self.additional_properties)
|
18
|
-
|
19
|
-
return field_dict
|
20
|
-
|
21
|
-
@classmethod
|
22
|
-
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
23
|
-
if not src_dict:
|
24
|
-
return None
|
25
|
-
d = src_dict.copy()
|
26
|
-
mcp_hub_artifact_form = cls()
|
27
|
-
|
28
|
-
mcp_hub_artifact_form.additional_properties = d
|
29
|
-
return mcp_hub_artifact_form
|
30
|
-
|
31
|
-
@property
|
32
|
-
def additional_keys(self) -> list[str]:
|
33
|
-
return list(self.additional_properties.keys())
|
34
|
-
|
35
|
-
def __getitem__(self, key: str) -> Any:
|
36
|
-
return self.additional_properties[key]
|
37
|
-
|
38
|
-
def __setitem__(self, key: str, value: Any) -> None:
|
39
|
-
self.additional_properties[key] = value
|
40
|
-
|
41
|
-
def __delitem__(self, key: str) -> None:
|
42
|
-
del self.additional_properties[key]
|
43
|
-
|
44
|
-
def __contains__(self, key: str) -> bool:
|
45
|
-
return key in self.additional_properties
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|