beamlit 0.0.29rc30__py3-none-any.whl → 0.0.29rc32__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.
@@ -5,6 +5,7 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
+ from ...models.trace_ids_response import TraceIdsResponse
8
9
  from ...types import UNSET, Response, Unset
9
10
 
10
11
 
@@ -28,14 +29,22 @@ def _get_kwargs(
28
29
  return _kwargs
29
30
 
30
31
 
31
- def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
32
+ def _parse_response(
33
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
34
+ ) -> Optional[TraceIdsResponse]:
35
+ if response.status_code == 200:
36
+ response_200 = TraceIdsResponse.from_dict(response.json())
37
+
38
+ return response_200
32
39
  if client.raise_on_unexpected_status:
33
40
  raise errors.UnexpectedStatus(response.status_code, response.content)
34
41
  else:
35
42
  return None
36
43
 
37
44
 
38
- def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
45
+ def _build_response(
46
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
47
+ ) -> Response[TraceIdsResponse]:
39
48
  return Response(
40
49
  status_code=HTTPStatus(response.status_code),
41
50
  content=response.content,
@@ -49,7 +58,7 @@ def sync_detailed(
49
58
  *,
50
59
  client: AuthenticatedClient,
51
60
  environment: Union[Unset, str] = UNSET,
52
- ) -> Response[Any]:
61
+ ) -> Response[TraceIdsResponse]:
53
62
  """Get agent trace IDs
54
63
 
55
64
  Args:
@@ -61,7 +70,7 @@ def sync_detailed(
61
70
  httpx.TimeoutException: If the request takes longer than Client.timeout.
62
71
 
63
72
  Returns:
64
- Response[Any]
73
+ Response[TraceIdsResponse]
65
74
  """
66
75
 
67
76
  kwargs = _get_kwargs(
@@ -76,12 +85,39 @@ def sync_detailed(
76
85
  return _build_response(client=client, response=response)
77
86
 
78
87
 
88
+ def sync(
89
+ agent_name: str,
90
+ *,
91
+ client: AuthenticatedClient,
92
+ environment: Union[Unset, str] = UNSET,
93
+ ) -> Optional[TraceIdsResponse]:
94
+ """Get agent trace IDs
95
+
96
+ Args:
97
+ agent_name (str):
98
+ environment (Union[Unset, str]):
99
+
100
+ Raises:
101
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
102
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
103
+
104
+ Returns:
105
+ TraceIdsResponse
106
+ """
107
+
108
+ return sync_detailed(
109
+ agent_name=agent_name,
110
+ client=client,
111
+ environment=environment,
112
+ ).parsed
113
+
114
+
79
115
  async def asyncio_detailed(
80
116
  agent_name: str,
81
117
  *,
82
118
  client: AuthenticatedClient,
83
119
  environment: Union[Unset, str] = UNSET,
84
- ) -> Response[Any]:
120
+ ) -> Response[TraceIdsResponse]:
85
121
  """Get agent trace IDs
86
122
 
87
123
  Args:
@@ -93,7 +129,7 @@ async def asyncio_detailed(
93
129
  httpx.TimeoutException: If the request takes longer than Client.timeout.
94
130
 
95
131
  Returns:
96
- Response[Any]
132
+ Response[TraceIdsResponse]
97
133
  """
98
134
 
99
135
  kwargs = _get_kwargs(
@@ -104,3 +140,32 @@ async def asyncio_detailed(
104
140
  response = await client.get_async_httpx_client().request(**kwargs)
105
141
 
106
142
  return _build_response(client=client, response=response)
143
+
144
+
145
+ async def asyncio(
146
+ agent_name: str,
147
+ *,
148
+ client: AuthenticatedClient,
149
+ environment: Union[Unset, str] = UNSET,
150
+ ) -> Optional[TraceIdsResponse]:
151
+ """Get agent trace IDs
152
+
153
+ Args:
154
+ agent_name (str):
155
+ environment (Union[Unset, str]):
156
+
157
+ Raises:
158
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
159
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
160
+
161
+ Returns:
162
+ TraceIdsResponse
163
+ """
164
+
165
+ return (
166
+ await asyncio_detailed(
167
+ agent_name=agent_name,
168
+ client=client,
169
+ environment=environment,
170
+ )
171
+ ).parsed
@@ -5,6 +5,7 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
+ from ...models.trace_ids_response import TraceIdsResponse
8
9
  from ...types import UNSET, Response, Unset
9
10
 
10
11
 
@@ -28,14 +29,22 @@ def _get_kwargs(
28
29
  return _kwargs
29
30
 
30
31
 
31
- def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
32
+ def _parse_response(
33
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
34
+ ) -> Optional[TraceIdsResponse]:
35
+ if response.status_code == 200:
36
+ response_200 = TraceIdsResponse.from_dict(response.json())
37
+
38
+ return response_200
32
39
  if client.raise_on_unexpected_status:
33
40
  raise errors.UnexpectedStatus(response.status_code, response.content)
34
41
  else:
35
42
  return None
36
43
 
37
44
 
38
- def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
45
+ def _build_response(
46
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
47
+ ) -> Response[TraceIdsResponse]:
39
48
  return Response(
40
49
  status_code=HTTPStatus(response.status_code),
41
50
  content=response.content,
@@ -49,7 +58,7 @@ def sync_detailed(
49
58
  *,
50
59
  client: AuthenticatedClient,
51
60
  environment: Union[Unset, str] = UNSET,
52
- ) -> Response[Any]:
61
+ ) -> Response[TraceIdsResponse]:
53
62
  """Get function trace IDs
54
63
 
55
64
  Args:
@@ -61,7 +70,7 @@ def sync_detailed(
61
70
  httpx.TimeoutException: If the request takes longer than Client.timeout.
62
71
 
63
72
  Returns:
64
- Response[Any]
73
+ Response[TraceIdsResponse]
65
74
  """
66
75
 
67
76
  kwargs = _get_kwargs(
@@ -76,12 +85,39 @@ def sync_detailed(
76
85
  return _build_response(client=client, response=response)
77
86
 
78
87
 
88
+ def sync(
89
+ function_name: str,
90
+ *,
91
+ client: AuthenticatedClient,
92
+ environment: Union[Unset, str] = UNSET,
93
+ ) -> Optional[TraceIdsResponse]:
94
+ """Get function trace IDs
95
+
96
+ Args:
97
+ function_name (str):
98
+ environment (Union[Unset, str]):
99
+
100
+ Raises:
101
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
102
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
103
+
104
+ Returns:
105
+ TraceIdsResponse
106
+ """
107
+
108
+ return sync_detailed(
109
+ function_name=function_name,
110
+ client=client,
111
+ environment=environment,
112
+ ).parsed
113
+
114
+
79
115
  async def asyncio_detailed(
80
116
  function_name: str,
81
117
  *,
82
118
  client: AuthenticatedClient,
83
119
  environment: Union[Unset, str] = UNSET,
84
- ) -> Response[Any]:
120
+ ) -> Response[TraceIdsResponse]:
85
121
  """Get function trace IDs
86
122
 
87
123
  Args:
@@ -93,7 +129,7 @@ async def asyncio_detailed(
93
129
  httpx.TimeoutException: If the request takes longer than Client.timeout.
94
130
 
95
131
  Returns:
96
- Response[Any]
132
+ Response[TraceIdsResponse]
97
133
  """
98
134
 
99
135
  kwargs = _get_kwargs(
@@ -104,3 +140,32 @@ async def asyncio_detailed(
104
140
  response = await client.get_async_httpx_client().request(**kwargs)
105
141
 
106
142
  return _build_response(client=client, response=response)
143
+
144
+
145
+ async def asyncio(
146
+ function_name: str,
147
+ *,
148
+ client: AuthenticatedClient,
149
+ environment: Union[Unset, str] = UNSET,
150
+ ) -> Optional[TraceIdsResponse]:
151
+ """Get function trace IDs
152
+
153
+ Args:
154
+ function_name (str):
155
+ environment (Union[Unset, str]):
156
+
157
+ Raises:
158
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
159
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
160
+
161
+ Returns:
162
+ TraceIdsResponse
163
+ """
164
+
165
+ return (
166
+ await asyncio_detailed(
167
+ function_name=function_name,
168
+ client=client,
169
+ environment=environment,
170
+ )
171
+ ).parsed
@@ -5,6 +5,7 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
+ from ...models.trace_ids_response import TraceIdsResponse
8
9
  from ...types import UNSET, Response, Unset
9
10
 
10
11
 
@@ -28,14 +29,22 @@ def _get_kwargs(
28
29
  return _kwargs
29
30
 
30
31
 
31
- def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
32
+ def _parse_response(
33
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
34
+ ) -> Optional[TraceIdsResponse]:
35
+ if response.status_code == 200:
36
+ response_200 = TraceIdsResponse.from_dict(response.json())
37
+
38
+ return response_200
32
39
  if client.raise_on_unexpected_status:
33
40
  raise errors.UnexpectedStatus(response.status_code, response.content)
34
41
  else:
35
42
  return None
36
43
 
37
44
 
38
- def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
45
+ def _build_response(
46
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
47
+ ) -> Response[TraceIdsResponse]:
39
48
  return Response(
40
49
  status_code=HTTPStatus(response.status_code),
41
50
  content=response.content,
@@ -49,7 +58,7 @@ def sync_detailed(
49
58
  *,
50
59
  client: AuthenticatedClient,
51
60
  environment: Union[Unset, str] = UNSET,
52
- ) -> Response[Any]:
61
+ ) -> Response[TraceIdsResponse]:
53
62
  """Get model trace IDs
54
63
 
55
64
  Args:
@@ -61,7 +70,7 @@ def sync_detailed(
61
70
  httpx.TimeoutException: If the request takes longer than Client.timeout.
62
71
 
63
72
  Returns:
64
- Response[Any]
73
+ Response[TraceIdsResponse]
65
74
  """
66
75
 
67
76
  kwargs = _get_kwargs(
@@ -76,12 +85,39 @@ def sync_detailed(
76
85
  return _build_response(client=client, response=response)
77
86
 
78
87
 
88
+ def sync(
89
+ model_name: str,
90
+ *,
91
+ client: AuthenticatedClient,
92
+ environment: Union[Unset, str] = UNSET,
93
+ ) -> Optional[TraceIdsResponse]:
94
+ """Get model trace IDs
95
+
96
+ Args:
97
+ model_name (str):
98
+ environment (Union[Unset, str]):
99
+
100
+ Raises:
101
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
102
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
103
+
104
+ Returns:
105
+ TraceIdsResponse
106
+ """
107
+
108
+ return sync_detailed(
109
+ model_name=model_name,
110
+ client=client,
111
+ environment=environment,
112
+ ).parsed
113
+
114
+
79
115
  async def asyncio_detailed(
80
116
  model_name: str,
81
117
  *,
82
118
  client: AuthenticatedClient,
83
119
  environment: Union[Unset, str] = UNSET,
84
- ) -> Response[Any]:
120
+ ) -> Response[TraceIdsResponse]:
85
121
  """Get model trace IDs
86
122
 
87
123
  Args:
@@ -93,7 +129,7 @@ async def asyncio_detailed(
93
129
  httpx.TimeoutException: If the request takes longer than Client.timeout.
94
130
 
95
131
  Returns:
96
- Response[Any]
132
+ Response[TraceIdsResponse]
97
133
  """
98
134
 
99
135
  kwargs = _get_kwargs(
@@ -104,3 +140,32 @@ async def asyncio_detailed(
104
140
  response = await client.get_async_httpx_client().request(**kwargs)
105
141
 
106
142
  return _build_response(client=client, response=response)
143
+
144
+
145
+ async def asyncio(
146
+ model_name: str,
147
+ *,
148
+ client: AuthenticatedClient,
149
+ environment: Union[Unset, str] = UNSET,
150
+ ) -> Optional[TraceIdsResponse]:
151
+ """Get model trace IDs
152
+
153
+ Args:
154
+ model_name (str):
155
+ environment (Union[Unset, str]):
156
+
157
+ Raises:
158
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
159
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
160
+
161
+ Returns:
162
+ TraceIdsResponse
163
+ """
164
+
165
+ return (
166
+ await asyncio_detailed(
167
+ model_name=model_name,
168
+ client=client,
169
+ environment=environment,
170
+ )
171
+ ).parsed
@@ -1,20 +1,15 @@
1
+ import os
1
2
  from dataclasses import dataclass
2
3
  from typing import Dict, Generator
3
- import os
4
-
5
- from httpx import Auth, Request, Response
6
4
 
7
5
  from beamlit.common.settings import Settings, get_settings
6
+ from httpx import Auth, Request, Response
8
7
 
9
8
  from ..client import AuthenticatedClient
10
9
  from .apikey import ApiKeyProvider
11
10
  from .clientcredentials import ClientCredentials
12
- from .credentials import (
13
- Credentials,
14
- current_context,
15
- load_credentials,
16
- load_credentials_from_settings,
17
- )
11
+ from .credentials import (Credentials, current_context, load_credentials,
12
+ load_credentials_from_settings)
18
13
  from .device_mode import BearerToken
19
14
 
20
15
 
@@ -27,13 +22,15 @@ class PublicProvider(Auth):
27
22
  class RunClientWithCredentials:
28
23
  credentials: Credentials
29
24
  workspace: str
30
- api_url: str = "https://api.beamlit.com/v0"
31
- run_url: str = "https://run.beamlit.com/v0"
25
+ api_url: str = ""
26
+ run_url: str = ""
32
27
 
33
28
  def __post_init__(self):
34
- if os.getenv('BL_ENV') == 'dev':
35
- self.api_url = "https://api.beamlit.dev/v0"
36
- self.run_url = "https://run.beamlit.dev/v0"
29
+ from ..common.settings import get_settings
30
+
31
+ settings = get_settings()
32
+ self.api_url = settings.base_url
33
+ self.run_url = settings.run_url
37
34
 
38
35
 
39
36
  def new_client_from_settings(settings: Settings):
beamlit/client.py CHANGED
@@ -1,4 +1,3 @@
1
- import os
2
1
  import ssl
3
2
  from typing import Any, Optional, Union
4
3
 
@@ -38,13 +37,8 @@ class Client:
38
37
 
39
38
  """
40
39
 
41
- # Determine the base URL based on the environment
42
- default_base_url = "https://api.beamlit.com/v0"
43
- if os.getenv("BL_ENV") == "dev":
44
- default_base_url = "https://api.beamlit.dev/v0"
45
-
46
40
  raise_on_unexpected_status: bool = field(default=True, kw_only=True)
47
- _base_url: str = field(alias="base_url", default=default_base_url)
41
+ _base_url: str = field(alias="base_url", default="")
48
42
  _cookies: dict[str, str] = field(factory=dict, kw_only=True, alias="cookies")
49
43
  _headers: dict[str, str] = field(factory=dict, kw_only=True, alias="headers")
50
44
  _provider: httpx.Auth = field(default=None, alias="provider")
@@ -55,6 +49,12 @@ class Client:
55
49
  _client: Optional[httpx.Client] = field(default=None, init=False)
56
50
  _async_client: Optional[httpx.AsyncClient] = field(default=None, init=False)
57
51
 
52
+ def __post_init__(self):
53
+ from .common.settings import get_settings
54
+
55
+ settings = get_settings()
56
+ self._base_url = settings.base_url
57
+
58
58
  def with_headers(self, headers: dict[str, str]) -> "Client":
59
59
  """Get a new client matching this one with additional headers"""
60
60
  if self._client is not None:
@@ -175,13 +175,8 @@ class AuthenticatedClient:
175
175
  provider: AuthProvider to use for authentication
176
176
  """
177
177
 
178
- # Determine the base URL based on the environment
179
- default_base_url = "https://api.beamlit.com/v0"
180
- if os.getenv("BL_ENV") == "dev":
181
- default_base_url = "https://api.beamlit.dev/v0"
182
-
183
178
  raise_on_unexpected_status: bool = field(default=True, kw_only=True)
184
- _base_url: str = field(alias="base_url", default=default_base_url)
179
+ _base_url: str = field(alias="base_url", default="")
185
180
  _cookies: dict[str, str] = field(factory=dict, kw_only=True, alias="cookies")
186
181
  _headers: dict[str, str] = field(factory=dict, kw_only=True, alias="headers")
187
182
  _provider: httpx.Auth = field(default=None, alias="provider")
@@ -192,6 +187,12 @@ class AuthenticatedClient:
192
187
  _client: Optional[httpx.Client] = field(default=None, init=False)
193
188
  _async_client: Optional[httpx.AsyncClient] = field(default=None, init=False)
194
189
 
190
+ def __post_init__(self):
191
+ from .common.settings import get_settings
192
+
193
+ settings = get_settings()
194
+ self._base_url = settings.base_url
195
+
195
196
  def with_headers(self, headers: dict[str, str]) -> "AuthenticatedClient":
196
197
  """Get a new client matching this one with additional headers"""
197
198
  if self._client is not None:
@@ -93,6 +93,7 @@ from .store_function_kit import StoreFunctionKit
93
93
  from .store_function_labels import StoreFunctionLabels
94
94
  from .store_function_parameter import StoreFunctionParameter
95
95
  from .time_fields import TimeFields
96
+ from .trace_ids_response import TraceIdsResponse
96
97
  from .update_workspace_service_account_body import UpdateWorkspaceServiceAccountBody
97
98
  from .update_workspace_service_account_response_200 import UpdateWorkspaceServiceAccountResponse200
98
99
  from .update_workspace_user_role_body import UpdateWorkspaceUserRoleBody
@@ -191,6 +192,7 @@ __all__ = (
191
192
  "StoreFunctionLabels",
192
193
  "StoreFunctionParameter",
193
194
  "TimeFields",
195
+ "TraceIdsResponse",
194
196
  "UpdateWorkspaceServiceAccountBody",
195
197
  "UpdateWorkspaceServiceAccountResponse200",
196
198
  "UpdateWorkspaceUserRoleBody",
@@ -0,0 +1,63 @@
1
+ from typing import 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
+ T = TypeVar("T", bound="TraceIdsResponse")
9
+
10
+
11
+ @_attrs_define
12
+ class TraceIdsResponse:
13
+ """Response containing trace IDs
14
+
15
+ Attributes:
16
+ trace_ids (Union[Unset, list[str]]): List of trace IDs
17
+ """
18
+
19
+ trace_ids: Union[Unset, list[str]] = UNSET
20
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
21
+
22
+ def to_dict(self) -> dict[str, Any]:
23
+ trace_ids: Union[Unset, list[str]] = UNSET
24
+ if not isinstance(self.trace_ids, Unset):
25
+ trace_ids = self.trace_ids
26
+
27
+ field_dict: dict[str, Any] = {}
28
+ field_dict.update(self.additional_properties)
29
+ field_dict.update({})
30
+ if trace_ids is not UNSET:
31
+ field_dict["trace_ids"] = trace_ids
32
+
33
+ return field_dict
34
+
35
+ @classmethod
36
+ def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
37
+ if not src_dict:
38
+ return None
39
+ d = src_dict.copy()
40
+ trace_ids = cast(list[str], d.pop("trace_ids", UNSET))
41
+
42
+ trace_ids_response = cls(
43
+ trace_ids=trace_ids,
44
+ )
45
+
46
+ trace_ids_response.additional_properties = d
47
+ return trace_ids_response
48
+
49
+ @property
50
+ def additional_keys(self) -> list[str]:
51
+ return list(self.additional_properties.keys())
52
+
53
+ def __getitem__(self, key: str) -> Any:
54
+ return self.additional_properties[key]
55
+
56
+ def __setitem__(self, key: str, value: Any) -> None:
57
+ self.additional_properties[key] = value
58
+
59
+ def __delitem__(self, key: str) -> None:
60
+ del self.additional_properties[key]
61
+
62
+ def __contains__(self, key: str) -> bool:
63
+ return key in self.additional_properties
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beamlit
3
- Version: 0.0.29rc30
3
+ Version: 0.0.29rc32
4
4
  Summary: Add your description here
5
5
  Author-email: cploujoux <ch.ploujoux@gmail.com>
6
6
  Requires-Python: >=3.12
@@ -1,5 +1,5 @@
1
1
  beamlit/__init__.py,sha256=545gFC-wLLwUktWcOAjUWe_Glha40tBetRTOYSfHnbI,164
2
- beamlit/client.py,sha256=SmJ46egRqKwRrLXCHmwrik0D_dD6s46-87YeVhBgxSU,12817
2
+ beamlit/client.py,sha256=PnR6ybZk5dLIJPnDKAf2epHOeQC_7yL0fG4muvphHjA,12695
3
3
  beamlit/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
4
4
  beamlit/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
5
5
  beamlit/run.py,sha256=RLwMv5f_S8lw7Wq7O6DvEcOl0nGYh769qjGl_SmR9Z0,1338
@@ -18,7 +18,7 @@ beamlit/api/agents/get_agent.py,sha256=IBMiNb36CyNKKyW-RvMSakmOaGrP2hSm3HRa_Gm_c
18
18
  beamlit/api/agents/get_agent_environment_logs.py,sha256=Fdd_mvlJXO17BQHbnl0YpUbXcX-1BsuZI2WKz6cgacA,3759
19
19
  beamlit/api/agents/get_agent_history.py,sha256=sDKZQhul8wrSbuRY8WNI6jRNYgFcYtCnaU2fgR1owM8,3846
20
20
  beamlit/api/agents/get_agent_metrics.py,sha256=IRdex5XAekCHSep6T7KQHB9T1J1f9egDx-MaiNynRVU,4344
21
- beamlit/api/agents/get_agent_trace_ids.py,sha256=5VXdgE7wveS-K-kcJpk2_SzKPh5vcs9kOkYLO74Nx6M,2729
21
+ beamlit/api/agents/get_agent_trace_ids.py,sha256=nCYXzCCmu8VXeLvPRX8Rc6N2JKMLVTTObbKtiCOzIg0,4365
22
22
  beamlit/api/agents/list_agent_history.py,sha256=ZMTG5PSSkfd4OLmVHDIvDZy13bElrhQivF7QtBDLK9w,3775
23
23
  beamlit/api/agents/list_agents.py,sha256=d6j_LM-8--2nfTHFjueRkoimHf02RRMAOWTpt8anJGg,4101
24
24
  beamlit/api/agents/put_agent_history.py,sha256=lt1_9yFW_vEgeS_jlh-4EumgbTZCdcZYy9GbA91gewU,4590
@@ -43,7 +43,7 @@ beamlit/api/functions/delete_function.py,sha256=dzCBAL50Yg18bDUpcC1COjwFstnfBpqt
43
43
  beamlit/api/functions/get_function.py,sha256=U4dXy47eKQh7spED7hyyHOepj6bU2U6QFJ0a2RS2y_8,4301
44
44
  beamlit/api/functions/get_function_environment_logs.py,sha256=Ia7bDcx8k7qCBhxsm8jdDSbYGKwdTDYhkAcgv25Zz-o,3816
45
45
  beamlit/api/functions/get_function_metrics.py,sha256=8FC7OCyj2QTXKRHyY7BPKfF2EAzXw0rg-r8yM19fQSc,4413
46
- beamlit/api/functions/get_function_trace_ids.py,sha256=MaTT6TGTJZTNkBn6Li9KfMrhpTaIM_GnTBbg-Bp_jiw,2768
46
+ beamlit/api/functions/get_function_trace_ids.py,sha256=Sz0DNr7K7z0Qzs9wJ8KYb7C8_vZj1aqoFk38MRYC_Xw,4434
47
47
  beamlit/api/functions/list_functions.py,sha256=Z9PaBzpRCv4cfEMSiBaVLnKzRoWCBys4jOXXBWOzEU8,4167
48
48
  beamlit/api/functions/update_function.py,sha256=sH-Oy2epz-X-59_eDnazzeeUsZMVNqG5J8VPe6nYJkg,4084
49
49
  beamlit/api/history/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -78,7 +78,7 @@ beamlit/api/models/delete_model.py,sha256=4uENeuBKoIooCfniM1uZFjScqgHzlEDxl7aLjA
78
78
  beamlit/api/models/get_model.py,sha256=sTE7fGpJ91svBMSKy7PGySqSOVy5g1YH3oHjhWbMr9s,4285
79
79
  beamlit/api/models/get_model_environment_logs.py,sha256=Xi4c3I0y7y_JbqUDeZEH64oLom9DZ1Uk735j47QvDT0,3939
80
80
  beamlit/api/models/get_model_metrics.py,sha256=06BcFFYS1Ml0tifIbDos9EqH6gSgGnwssKq75vhO5eU,4516
81
- beamlit/api/models/get_model_trace_ids.py,sha256=7LuYPCmmt98BwrMGVZBK5E4izXA7iGZ21pHmx03-YG4,2729
81
+ beamlit/api/models/get_model_trace_ids.py,sha256=xIUVeVf3oa1j8m3x7PO58bB3P3y_5mskKEOpWeJteIk,4365
82
82
  beamlit/api/models/list_models.py,sha256=Keqg_qyTTGB-aJNA6JiMGnLdNwUSLIkzr08sdhhXxo4,4297
83
83
  beamlit/api/models/release_model.py,sha256=ik1HHjOUVnaVJEvbbSS1ByQ2TMzkkUbNiGUXmlTiwBo,3893
84
84
  beamlit/api/models/update_model.py,sha256=odMblGfUK6EAJHpu5mWUtpSNjFB8NvyTgqDp0JUygDA,4521
@@ -124,7 +124,7 @@ beamlit/api/workspaces/update_workspace.py,sha256=qa5DV2UJSUYuB_ibALb4E9ghKpT1Ha
124
124
  beamlit/api/workspaces/update_workspace_user_role.py,sha256=Yn9iuJ4tKtauzBiJyU4-wYUMS9g98X2Om8zs7UkzrY8,4917
125
125
  beamlit/authentication/__init__.py,sha256=wiXqRbc7E-ulrH_ueA9duOGFvXeo7-RvhSD1XbFogMo,1020
126
126
  beamlit/authentication/apikey.py,sha256=KNBTgdi0VBzBAAmSwU2X1QoB58vRbg8wkXb8-GTZCQo,657
127
- beamlit/authentication/authentication.py,sha256=ZH3zS7PVa9kw8szZTplwZvCbhBJ-oXHsxEtnAhKjxzM,3409
127
+ beamlit/authentication/authentication.py,sha256=8R-3WdQSykNjCbebAW2p8Glvw5nlAmSEZr6Ylo-vPuc,3377
128
128
  beamlit/authentication/clientcredentials.py,sha256=cxZPPu--CgizwqX0pdfFQ91gJt1EFKwyy-aBB_dXX7I,3990
129
129
  beamlit/authentication/credentials.py,sha256=p_1xenabCbQuRz7BiFk7oTK4uCxAt_zoyku5o-jcKGE,5343
130
130
  beamlit/authentication/device_mode.py,sha256=tmr22gllKOZwBRub_QjF5pYa425x-nE8tQNpZ_EGR6g,3644
@@ -151,7 +151,7 @@ beamlit/functions/mcp/mcp.py,sha256=gXzvUPAKmvGQPHUKTVzMiINukxpw1BV6H8M2iOWvIGU,
151
151
  beamlit/functions/remote/remote.py,sha256=x2eHh4oYkWwHuZWwg5XeylY-E9Opa6SzfN_0396ePZw,3775
152
152
  beamlit/functions/search/__init__.py,sha256=5NAthQ9PBwrkNg1FpLRx4flauvv0HyWuwaVS589c1Pw,49
153
153
  beamlit/functions/search/search.py,sha256=8s9ECltq7YE17j6rTxb12uY2EQY4_eTLHmwlIMThI0w,515
154
- beamlit/models/__init__.py,sha256=O16oX1-oBJqB5LZEHAfu_hZZZh6_PX2LqZpVl4fNQRs,7730
154
+ beamlit/models/__init__.py,sha256=0BldOldXzMn1A6d1bOhsU8mk7i3uRmh33_U-0IYjIRY,7803
155
155
  beamlit/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
156
156
  beamlit/models/agent.py,sha256=oGZBwd2Hy-i6q_up4WQ0IvOmxqouR5I1Gk8vXvfLKvc,3384
157
157
  beamlit/models/agent_chain.py,sha256=8PN8wVSayS-LoBN2nahZsOmr6r3t62H_LPDK_8fnkM8,2255
@@ -243,6 +243,7 @@ beamlit/models/store_function_kit.py,sha256=S0i3KMHkJ6FwWwMcPqUOYfXi8AYZ21WC7TLI
243
243
  beamlit/models/store_function_labels.py,sha256=ZoEKD_CUDs7HcdHEobDsPz8OcUAZ11pFW3pVYrbz0KQ,1274
244
244
  beamlit/models/store_function_parameter.py,sha256=0iuvA6WVExwzqt5HRNusS9PFtke5_qwVu8fT2MFOH8c,2553
245
245
  beamlit/models/time_fields.py,sha256=5X-SFQ1-cfs5gTvyFjuQ8tfMJJrAGoK0OBZLuOM5phY,2006
246
+ beamlit/models/trace_ids_response.py,sha256=fmXsxlIc6dNEduKjCG-Yd-oC6MhsI2VSUWkWk9MSQ0s,1806
246
247
  beamlit/models/update_workspace_service_account_body.py,sha256=fz2MGqwRfrYkMmL8PaFHQdsu3RQcRljvP6n6JIru45o,2004
247
248
  beamlit/models/update_workspace_service_account_response_200.py,sha256=nCLPHFP_iR1MIpicgQMpbiyme97ZMfTFhyQUEbhzkHI,2968
248
249
  beamlit/models/update_workspace_user_role_body.py,sha256=FyLCWy9oRgUxoFPxxtrDvwzh1kHLkoTZ1pL5w3ayexM,1572
@@ -254,6 +255,6 @@ beamlit/serve/app.py,sha256=OpwPjRdyHZK6J-ziPwhiRDGGa2mvCrFVcBFE6alJVOM,3071
254
255
  beamlit/serve/middlewares/__init__.py,sha256=1dVmnOmhAQWvWktqHkKSIX-YoF6fmMU8xkUQuhg_rJU,148
255
256
  beamlit/serve/middlewares/accesslog.py,sha256=Mu4T4_9OvHybjA0ApzZFpgi2C8f3X1NbUk-76v634XM,631
256
257
  beamlit/serve/middlewares/processtime.py,sha256=lDAaIasZ4bwvN-HKHvZpaD9r-yrkVNZYx4abvbjbrCg,411
257
- beamlit-0.0.29rc30.dist-info/METADATA,sha256=6-VFTeQPP-z_5qCUf-kLXKSzfmaZkvbjocg1oGUJIY0,2405
258
- beamlit-0.0.29rc30.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
259
- beamlit-0.0.29rc30.dist-info/RECORD,,
258
+ beamlit-0.0.29rc32.dist-info/METADATA,sha256=SX1BoOg-Mqw3GzEHwX9bdwJPkkQ01jE1AHgRdGKXjvY,2405
259
+ beamlit-0.0.29rc32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
260
+ beamlit-0.0.29rc32.dist-info/RECORD,,