blaxel 0.1.10rc39__py3-none-any.whl → 0.1.10rc41__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 (41) hide show
  1. blaxel/client/api/compute/create_sandbox_preview.py +179 -0
  2. blaxel/client/api/compute/create_sandbox_preview_token.py +192 -0
  3. blaxel/client/api/compute/delete_sandbox_preview.py +167 -0
  4. blaxel/client/api/compute/delete_sandbox_preview_token.py +180 -0
  5. blaxel/client/api/compute/get_sandbox_preview.py +167 -0
  6. blaxel/client/api/compute/list_sandbox_preview_tokens.py +172 -0
  7. blaxel/client/api/compute/list_sandbox_previews.py +159 -0
  8. blaxel/client/api/compute/update_sandbox_preview.py +192 -0
  9. blaxel/client/api/integrations/get_integration.py +64 -7
  10. blaxel/client/api/workspaces/check_workspace_availability.py +165 -0
  11. blaxel/client/models/__init__.py +32 -2
  12. blaxel/client/models/check_workspace_availability_body.py +60 -0
  13. blaxel/client/models/delete_sandbox_preview_token_response_200.py +60 -0
  14. blaxel/client/models/integration.py +197 -0
  15. blaxel/client/models/integration_additional_infos.py +45 -0
  16. blaxel/client/models/integration_endpoint.py +143 -0
  17. blaxel/client/models/integration_endpoint_token.py +79 -0
  18. blaxel/client/models/integration_endpoints.py +61 -0
  19. blaxel/client/models/integration_headers.py +45 -0
  20. blaxel/client/models/integration_organization.py +88 -0
  21. blaxel/client/models/integration_query_params.py +45 -0
  22. blaxel/client/models/metrics.py +9 -0
  23. blaxel/client/models/preview.py +96 -0
  24. blaxel/client/models/preview_metadata.py +133 -0
  25. blaxel/client/models/preview_spec.py +79 -0
  26. blaxel/client/models/preview_token.py +96 -0
  27. blaxel/client/models/preview_token_metadata.py +97 -0
  28. blaxel/client/models/preview_token_spec.py +88 -0
  29. blaxel/sandbox/client/api/process/get_process_identifier_logs.py +22 -1
  30. blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py +190 -0
  31. blaxel/sandbox/client/models/__init__.py +6 -0
  32. blaxel/sandbox/client/models/directory.py +5 -3
  33. blaxel/sandbox/client/models/file.py +1 -1
  34. blaxel/sandbox/client/models/file_with_content.py +1 -1
  35. blaxel/sandbox/client/models/get_process_identifier_logs_stream_response_200.py +45 -0
  36. blaxel/sandbox/client/models/subdirectory.py +60 -0
  37. {blaxel-0.1.10rc39.dist-info → blaxel-0.1.10rc41.dist-info}/METADATA +1 -1
  38. {blaxel-0.1.10rc39.dist-info → blaxel-0.1.10rc41.dist-info}/RECORD +40 -13
  39. blaxel/client/models/sandboxes.py +0 -129
  40. {blaxel-0.1.10rc39.dist-info → blaxel-0.1.10rc41.dist-info}/WHEEL +0 -0
  41. {blaxel-0.1.10rc39.dist-info → blaxel-0.1.10rc41.dist-info}/licenses/LICENSE +0 -0
@@ -7,15 +7,24 @@ from ... import errors
7
7
  from ...client import Client
8
8
  from ...models.error_response import ErrorResponse
9
9
  from ...models.get_process_identifier_logs_response_200 import GetProcessIdentifierLogsResponse200
10
- from ...types import Response
10
+ from ...types import UNSET, Response, Unset
11
11
 
12
12
 
13
13
  def _get_kwargs(
14
14
  identifier: str,
15
+ *,
16
+ stream: Union[Unset, bool] = UNSET,
15
17
  ) -> dict[str, Any]:
18
+ params: dict[str, Any] = {}
19
+
20
+ params["stream"] = stream
21
+
22
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
23
+
16
24
  _kwargs: dict[str, Any] = {
17
25
  "method": "get",
18
26
  "url": f"/process/{identifier}/logs",
27
+ "params": params,
19
28
  }
20
29
 
21
30
  return _kwargs
@@ -57,6 +66,7 @@ def sync_detailed(
57
66
  identifier: str,
58
67
  *,
59
68
  client: Union[Client],
69
+ stream: Union[Unset, bool] = UNSET,
60
70
  ) -> Response[Union[ErrorResponse, GetProcessIdentifierLogsResponse200]]:
61
71
  """Get process logs
62
72
 
@@ -64,6 +74,7 @@ def sync_detailed(
64
74
 
65
75
  Args:
66
76
  identifier (str):
77
+ stream (Union[Unset, bool]):
67
78
 
68
79
  Raises:
69
80
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -75,6 +86,7 @@ def sync_detailed(
75
86
 
76
87
  kwargs = _get_kwargs(
77
88
  identifier=identifier,
89
+ stream=stream,
78
90
  )
79
91
 
80
92
  response = client.get_httpx_client().request(
@@ -88,6 +100,7 @@ def sync(
88
100
  identifier: str,
89
101
  *,
90
102
  client: Union[Client],
103
+ stream: Union[Unset, bool] = UNSET,
91
104
  ) -> Optional[Union[ErrorResponse, GetProcessIdentifierLogsResponse200]]:
92
105
  """Get process logs
93
106
 
@@ -95,6 +108,7 @@ def sync(
95
108
 
96
109
  Args:
97
110
  identifier (str):
111
+ stream (Union[Unset, bool]):
98
112
 
99
113
  Raises:
100
114
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -107,6 +121,7 @@ def sync(
107
121
  return sync_detailed(
108
122
  identifier=identifier,
109
123
  client=client,
124
+ stream=stream,
110
125
  ).parsed
111
126
 
112
127
 
@@ -114,6 +129,7 @@ async def asyncio_detailed(
114
129
  identifier: str,
115
130
  *,
116
131
  client: Union[Client],
132
+ stream: Union[Unset, bool] = UNSET,
117
133
  ) -> Response[Union[ErrorResponse, GetProcessIdentifierLogsResponse200]]:
118
134
  """Get process logs
119
135
 
@@ -121,6 +137,7 @@ async def asyncio_detailed(
121
137
 
122
138
  Args:
123
139
  identifier (str):
140
+ stream (Union[Unset, bool]):
124
141
 
125
142
  Raises:
126
143
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -132,6 +149,7 @@ async def asyncio_detailed(
132
149
 
133
150
  kwargs = _get_kwargs(
134
151
  identifier=identifier,
152
+ stream=stream,
135
153
  )
136
154
 
137
155
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -143,6 +161,7 @@ async def asyncio(
143
161
  identifier: str,
144
162
  *,
145
163
  client: Union[Client],
164
+ stream: Union[Unset, bool] = UNSET,
146
165
  ) -> Optional[Union[ErrorResponse, GetProcessIdentifierLogsResponse200]]:
147
166
  """Get process logs
148
167
 
@@ -150,6 +169,7 @@ async def asyncio(
150
169
 
151
170
  Args:
152
171
  identifier (str):
172
+ stream (Union[Unset, bool]):
153
173
 
154
174
  Raises:
155
175
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -163,5 +183,6 @@ async def asyncio(
163
183
  await asyncio_detailed(
164
184
  identifier=identifier,
165
185
  client=client,
186
+ stream=stream,
166
187
  )
167
188
  ).parsed
@@ -0,0 +1,190 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import Client
8
+ from ...models.error_response import ErrorResponse
9
+ from ...models.get_process_identifier_logs_stream_response_200 import (
10
+ GetProcessIdentifierLogsStreamResponse200,
11
+ )
12
+ from ...types import UNSET, Response, Unset
13
+
14
+
15
+ def _get_kwargs(
16
+ identifier: str,
17
+ *,
18
+ stream: Union[Unset, bool] = UNSET,
19
+ ) -> dict[str, Any]:
20
+ params: dict[str, Any] = {}
21
+
22
+ params["stream"] = stream
23
+
24
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
25
+
26
+ _kwargs: dict[str, Any] = {
27
+ "method": "get",
28
+ "url": f"/process/{identifier}/logs/stream",
29
+ "params": params,
30
+ }
31
+
32
+ return _kwargs
33
+
34
+
35
+ def _parse_response(
36
+ *, client: Client, response: httpx.Response
37
+ ) -> Optional[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
38
+ if response.status_code == 200:
39
+ response_200 = GetProcessIdentifierLogsStreamResponse200.from_dict(response.json())
40
+
41
+ return response_200
42
+ if response.status_code == 404:
43
+ response_404 = ErrorResponse.from_dict(response.json())
44
+
45
+ return response_404
46
+ if response.status_code == 500:
47
+ response_500 = ErrorResponse.from_dict(response.json())
48
+
49
+ return response_500
50
+ if client.raise_on_unexpected_status:
51
+ raise errors.UnexpectedStatus(response.status_code, response.content)
52
+ else:
53
+ return None
54
+
55
+
56
+ def _build_response(
57
+ *, client: Client, response: httpx.Response
58
+ ) -> Response[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
59
+ return Response(
60
+ status_code=HTTPStatus(response.status_code),
61
+ content=response.content,
62
+ headers=response.headers,
63
+ parsed=_parse_response(client=client, response=response),
64
+ )
65
+
66
+
67
+ def sync_detailed(
68
+ identifier: str,
69
+ *,
70
+ client: Union[Client],
71
+ stream: Union[Unset, bool] = UNSET,
72
+ ) -> Response[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
73
+ """Get process logs in realtime
74
+
75
+ Get the stdout and stderr output of a process in realtime
76
+
77
+ Args:
78
+ identifier (str):
79
+ stream (Union[Unset, bool]):
80
+
81
+ Raises:
82
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
83
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
84
+
85
+ Returns:
86
+ Response[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]
87
+ """
88
+
89
+ kwargs = _get_kwargs(
90
+ identifier=identifier,
91
+ stream=stream,
92
+ )
93
+
94
+ response = client.get_httpx_client().request(
95
+ **kwargs,
96
+ )
97
+
98
+ return _build_response(client=client, response=response)
99
+
100
+
101
+ def sync(
102
+ identifier: str,
103
+ *,
104
+ client: Union[Client],
105
+ stream: Union[Unset, bool] = UNSET,
106
+ ) -> Optional[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
107
+ """Get process logs in realtime
108
+
109
+ Get the stdout and stderr output of a process in realtime
110
+
111
+ Args:
112
+ identifier (str):
113
+ stream (Union[Unset, bool]):
114
+
115
+ Raises:
116
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
117
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
118
+
119
+ Returns:
120
+ Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]
121
+ """
122
+
123
+ return sync_detailed(
124
+ identifier=identifier,
125
+ client=client,
126
+ stream=stream,
127
+ ).parsed
128
+
129
+
130
+ async def asyncio_detailed(
131
+ identifier: str,
132
+ *,
133
+ client: Union[Client],
134
+ stream: Union[Unset, bool] = UNSET,
135
+ ) -> Response[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
136
+ """Get process logs in realtime
137
+
138
+ Get the stdout and stderr output of a process in realtime
139
+
140
+ Args:
141
+ identifier (str):
142
+ stream (Union[Unset, bool]):
143
+
144
+ Raises:
145
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
146
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
147
+
148
+ Returns:
149
+ Response[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]
150
+ """
151
+
152
+ kwargs = _get_kwargs(
153
+ identifier=identifier,
154
+ stream=stream,
155
+ )
156
+
157
+ response = await client.get_async_httpx_client().request(**kwargs)
158
+
159
+ return _build_response(client=client, response=response)
160
+
161
+
162
+ async def asyncio(
163
+ identifier: str,
164
+ *,
165
+ client: Union[Client],
166
+ stream: Union[Unset, bool] = UNSET,
167
+ ) -> Optional[Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]]:
168
+ """Get process logs in realtime
169
+
170
+ Get the stdout and stderr output of a process in realtime
171
+
172
+ Args:
173
+ identifier (str):
174
+ stream (Union[Unset, bool]):
175
+
176
+ Raises:
177
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
178
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
179
+
180
+ Returns:
181
+ Union[ErrorResponse, GetProcessIdentifierLogsStreamResponse200]
182
+ """
183
+
184
+ return (
185
+ await asyncio_detailed(
186
+ identifier=identifier,
187
+ client=client,
188
+ stream=stream,
189
+ )
190
+ ).parsed
@@ -10,11 +10,15 @@ from .file_request import FileRequest
10
10
  from .file_with_content import FileWithContent
11
11
  from .get_network_process_pid_ports_response_200 import GetNetworkProcessPidPortsResponse200
12
12
  from .get_process_identifier_logs_response_200 import GetProcessIdentifierLogsResponse200
13
+ from .get_process_identifier_logs_stream_response_200 import (
14
+ GetProcessIdentifierLogsStreamResponse200,
15
+ )
13
16
  from .port_monitor_request import PortMonitorRequest
14
17
  from .post_network_process_pid_monitor_response_200 import PostNetworkProcessPidMonitorResponse200
15
18
  from .process_kill_request import ProcessKillRequest
16
19
  from .process_request import ProcessRequest
17
20
  from .process_response import ProcessResponse
21
+ from .subdirectory import Subdirectory
18
22
  from .success_response import SuccessResponse
19
23
 
20
24
  __all__ = (
@@ -26,10 +30,12 @@ __all__ = (
26
30
  "FileWithContent",
27
31
  "GetNetworkProcessPidPortsResponse200",
28
32
  "GetProcessIdentifierLogsResponse200",
33
+ "GetProcessIdentifierLogsStreamResponse200",
29
34
  "PortMonitorRequest",
30
35
  "PostNetworkProcessPidMonitorResponse200",
31
36
  "ProcessKillRequest",
32
37
  "ProcessRequest",
33
38
  "ProcessResponse",
39
+ "Subdirectory",
34
40
  "SuccessResponse",
35
41
  )
@@ -7,6 +7,7 @@ from ..types import UNSET, Unset
7
7
 
8
8
  if TYPE_CHECKING:
9
9
  from ..models.file import File
10
+ from ..models.subdirectory import Subdirectory
10
11
 
11
12
 
12
13
  T = TypeVar("T", bound="Directory")
@@ -18,12 +19,12 @@ class Directory:
18
19
  Attributes:
19
20
  files (Union[Unset, list['File']]):
20
21
  path (Union[Unset, str]):
21
- subdirectories (Union[Unset, list['Directory']]): @name Subdirectories
22
+ subdirectories (Union[Unset, list['Subdirectory']]): @name Subdirectories
22
23
  """
23
24
 
24
25
  files: Union[Unset, list["File"]] = UNSET
25
26
  path: Union[Unset, str] = UNSET
26
- subdirectories: Union[Unset, list["Directory"]] = UNSET
27
+ subdirectories: Union[Unset, list["Subdirectory"]] = UNSET
27
28
  additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
28
29
 
29
30
  def to_dict(self) -> dict[str, Any]:
@@ -64,6 +65,7 @@ class Directory:
64
65
  @classmethod
65
66
  def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
66
67
  from ..models.file import File
68
+ from ..models.subdirectory import Subdirectory
67
69
 
68
70
  if not src_dict:
69
71
  return None
@@ -80,7 +82,7 @@ class Directory:
80
82
  subdirectories = []
81
83
  _subdirectories = d.pop("subdirectories", UNSET)
82
84
  for subdirectories_item_data in _subdirectories or []:
83
- subdirectories_item = Directory.from_dict(subdirectories_item_data)
85
+ subdirectories_item = Subdirectory.from_dict(subdirectories_item_data)
84
86
 
85
87
  subdirectories.append(subdirectories_item)
86
88
 
@@ -16,7 +16,7 @@ class File:
16
16
  last_modified (Union[Unset, str]):
17
17
  owner (Union[Unset, str]):
18
18
  path (Union[Unset, str]):
19
- permissions (Union[Unset, str]): swagger:strfmt string
19
+ permissions (Union[Unset, str]):
20
20
  size (Union[Unset, int]):
21
21
  """
22
22
 
@@ -17,7 +17,7 @@ class FileWithContent:
17
17
  last_modified (Union[Unset, str]):
18
18
  owner (Union[Unset, str]):
19
19
  path (Union[Unset, str]):
20
- permissions (Union[Unset, str]): swagger:strfmt string
20
+ permissions (Union[Unset, str]):
21
21
  size (Union[Unset, int]):
22
22
  """
23
23
 
@@ -0,0 +1,45 @@
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="GetProcessIdentifierLogsStreamResponse200")
7
+
8
+
9
+ @_attrs_define
10
+ class GetProcessIdentifierLogsStreamResponse200:
11
+ """ """
12
+
13
+ additional_properties: dict[str, str] = _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
+ get_process_identifier_logs_stream_response_200 = cls()
27
+
28
+ get_process_identifier_logs_stream_response_200.additional_properties = d
29
+ return get_process_identifier_logs_stream_response_200
30
+
31
+ @property
32
+ def additional_keys(self) -> list[str]:
33
+ return list(self.additional_properties.keys())
34
+
35
+ def __getitem__(self, key: str) -> str:
36
+ return self.additional_properties[key]
37
+
38
+ def __setitem__(self, key: str, value: str) -> 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
@@ -0,0 +1,60 @@
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="Subdirectory")
9
+
10
+
11
+ @_attrs_define
12
+ class Subdirectory:
13
+ """
14
+ Attributes:
15
+ path (Union[Unset, str]):
16
+ """
17
+
18
+ path: Union[Unset, str] = UNSET
19
+ additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
20
+
21
+ def to_dict(self) -> dict[str, Any]:
22
+ path = self.path
23
+
24
+ field_dict: dict[str, Any] = {}
25
+ field_dict.update(self.additional_properties)
26
+ field_dict.update({})
27
+ if path is not UNSET:
28
+ field_dict["path"] = path
29
+
30
+ return field_dict
31
+
32
+ @classmethod
33
+ def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
34
+ if not src_dict:
35
+ return None
36
+ d = src_dict.copy()
37
+ path = d.pop("path", UNSET)
38
+
39
+ subdirectory = cls(
40
+ path=path,
41
+ )
42
+
43
+ subdirectory.additional_properties = d
44
+ return subdirectory
45
+
46
+ @property
47
+ def additional_keys(self) -> list[str]:
48
+ return list(self.additional_properties.keys())
49
+
50
+ def __getitem__(self, key: str) -> Any:
51
+ return self.additional_properties[key]
52
+
53
+ def __setitem__(self, key: str, value: Any) -> None:
54
+ self.additional_properties[key] = value
55
+
56
+ def __delitem__(self, key: str) -> None:
57
+ del self.additional_properties[key]
58
+
59
+ def __contains__(self, key: str) -> bool:
60
+ return key in self.additional_properties
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: blaxel
3
- Version: 0.1.10rc39
3
+ Version: 0.1.10rc41
4
4
  Summary: Add your description here
5
5
  Author-email: cploujoux <cploujoux@blaxel.ai>
6
6
  License-File: LICENSE
@@ -23,12 +23,20 @@ blaxel/client/api/agents/list_agents.py,sha256=YtuJCp_1q07VMJ0NtQijphJEWanMF3l-p
23
23
  blaxel/client/api/agents/update_agent.py,sha256=JK8lb3Vh3vuWy8mn75EmZ3plfdNFb1SOCcdDX-QKs1s,3898
24
24
  blaxel/client/api/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  blaxel/client/api/compute/create_sandbox.py,sha256=59_VNsoAd1XiyJpjN-O3TcfrvvFI-gSLng6sbQ5gnvk,3787
26
+ blaxel/client/api/compute/create_sandbox_preview.py,sha256=1Hn4CZV7JzcN0ZuO4ypYpcrn6G4jqOkFfegM2WtWjXQ,4155
27
+ blaxel/client/api/compute/create_sandbox_preview_token.py,sha256=f30DzGy8WTGtvNWo1lvJJcN75qJQsQslwk_ZcVB5Rls,4779
26
28
  blaxel/client/api/compute/delete_sandbox.py,sha256=1Dm_c_G2VHSBMbbTLMWyY8K0-LYwG-Il8d9e0SLj9kY,3555
29
+ blaxel/client/api/compute/delete_sandbox_preview.py,sha256=U4qopP03F0rLKT3eCuNewlJ8-KEFMS3gLnvormE5TAo,4014
30
+ blaxel/client/api/compute/delete_sandbox_preview_token.py,sha256=SXpnOMa8OURamEawJhIWLQc9tFSnjeeG3TSy6qrQ1iM,4841
27
31
  blaxel/client/api/compute/get_sandbox.py,sha256=M1Bu-01hh36dJCvI3mMSuuJ2Y3qkyRPEtv5IcD6LK48,3540
32
+ blaxel/client/api/compute/get_sandbox_preview.py,sha256=79gqiklfJF0OaZwNsn3EGurBlTZChsXMd6Bqz_QgVGQ,3999
33
+ blaxel/client/api/compute/list_sandbox_preview_tokens.py,sha256=OKGvaRylvv5AhCfll_muDzvwjtD7Y2-jJxzIl6YhzNY,4383
34
+ blaxel/client/api/compute/list_sandbox_previews.py,sha256=TQrU5g0JuOP6RvErremwjUMus9Mn1gUpaeWhphH1F7I,3932
28
35
  blaxel/client/api/compute/list_sandboxes.py,sha256=E_Y6PxnH_okG-5hR_BTxY6-MIqKVJUztBG-XBae2UIo,3469
29
36
  blaxel/client/api/compute/start_sandbox.py,sha256=zDZOfPtJ09S8pmwMyFRKrN4ju1XpfMrmsjTQCKRSbvc,3845
30
37
  blaxel/client/api/compute/stop_sandbox.py,sha256=IOvnmpQSYDGt09kXb7ijmYUO3YHY8Kn6bksEOHbxB2Y,3823
31
38
  blaxel/client/api/compute/update_sandbox.py,sha256=efKbl6GRsDXH6UNIq9_TPf06k1Yy-nkoVYs3RuVMxco,4201
39
+ blaxel/client/api/compute/update_sandbox_preview.py,sha256=LLf3l3c92ggKVO5Roy0G43N_CkLWjXG_4-x8s_tqfOg,4612
32
40
  blaxel/client/api/configurations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
41
  blaxel/client/api/configurations/get_configuration.py,sha256=3RVFsuSGg0Vpr3ov54zHqMdc_a6XisT3dxpifNRajJc,3096
34
42
  blaxel/client/api/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -47,7 +55,7 @@ blaxel/client/api/functions/update_function.py,sha256=_6FbRnYKwRpVjICXJua2ku59xx
47
55
  blaxel/client/api/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
56
  blaxel/client/api/integrations/create_integration_connection.py,sha256=iViAGZh1TGg0bdKbMpJnoqgZNudBbzC-RZkxFwwLVIY,4163
49
57
  blaxel/client/api/integrations/delete_integration_connection.py,sha256=6ERiCNGfEj0NkXhCiaf6I1ZO-n-QYPGjPjPHCuorYx8,4015
50
- blaxel/client/api/integrations/get_integration.py,sha256=B5al3esJgjibHHsjhB-DbLttpIJDP7WSkJjkbYOaZjM,2384
58
+ blaxel/client/api/integrations/get_integration.py,sha256=w5V47wK5fQlLhICREcQrlT27wbCAV2hkuWQq5F3xtpw,3795
51
59
  blaxel/client/api/integrations/get_integration_connection.py,sha256=gLw_xLrUrHKlwn6M46gO8-gpEwrDz2pK2gE9PJbMn6E,4000
52
60
  blaxel/client/api/integrations/get_integration_connection_model.py,sha256=JJvKXQ9AGgPmcfHorLC6Ow6k_ZPBXeyqQXb5uApMDoA,2619
53
61
  blaxel/client/api/integrations/get_integration_connection_model_endpoint_configurations.py,sha256=p7G7t_l5W2MAPok7d6-7XYFYEBFzRhZjH-9MIrVtnE4,2499
@@ -98,6 +106,7 @@ blaxel/client/api/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
98
106
  blaxel/client/api/templates/list_templates.py,sha256=Im9cZFy37FLBqPer_FJQ7zKNYUsuas2enJK5ouQtEqM,3414
99
107
  blaxel/client/api/workspaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
108
  blaxel/client/api/workspaces/accept_workspace_invitation.py,sha256=zSYDXrG78l0zRb2BZMHCZW13ZocZQSolgeWVCCrdh_E,4142
109
+ blaxel/client/api/workspaces/check_workspace_availability.py,sha256=rYsBY72YjqGuWVP54Gqo76FAQ7z6XPnGEcHwGMUsxA0,4005
101
110
  blaxel/client/api/workspaces/create_worspace.py,sha256=YFjDjaunD6NDdTTlyj0che5Mo27gp5oQvzuyGy6x148,3744
102
111
  blaxel/client/api/workspaces/decline_workspace_invitation.py,sha256=zJtdDgb1qwWGAeUI-ybLrCfktiyyfxTo0gfYK33ClR8,3845
103
112
  blaxel/client/api/workspaces/delete_workspace.py,sha256=mEuQCQ-DHXpGymgAIUK0MSFrdaA6JQJuKNLRG7AE1gU,3634
@@ -109,11 +118,12 @@ blaxel/client/api/workspaces/list_workspaces.py,sha256=MuVb4Ubp4e8KZZyIpukiMHoLQ
109
118
  blaxel/client/api/workspaces/remove_workspace_user.py,sha256=OZ_Q5zvV3eUSxsmSmbkJ05r3tJgaAZEE3FrsdOpAOYE,2578
110
119
  blaxel/client/api/workspaces/update_workspace.py,sha256=GJZBydA4AzUOREpQ630b_S2-3zGLkVVhU364BH1luyY,4202
111
120
  blaxel/client/api/workspaces/update_workspace_user_role.py,sha256=MU4Rp_yE07wvhFcYoLV7fx_trsk-TcTYSNs59siO_W4,4866
112
- blaxel/client/models/__init__.py,sha256=7D2xg28cjcBFXP5xhMxR98g3ZNWVKRH2-5-uX5e6cRw,10083
121
+ blaxel/client/models/__init__.py,sha256=kTMY6DiU5A97a9PqWd81MVXWOpdMqXfqN1TNXd92jMQ,11356
113
122
  blaxel/client/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
114
123
  blaxel/client/models/agent.py,sha256=VN2GMWsd7LSoWhthbezLIAqPZjQhsvMN6bqM09jZSuU,4359
115
124
  blaxel/client/models/agent_spec.py,sha256=YzBpVhagqSqrEBG5oh9xO5F4nvzlZgaV3xieGRtaQDg,12260
116
125
  blaxel/client/models/api_key.py,sha256=9k7XvNfdssY18CkNSVgE2pnmilMNjz-GpeyqkM_vP1s,4277
126
+ blaxel/client/models/check_workspace_availability_body.py,sha256=fGW874LWTPUC-Os12Fbo4vRkDWSPOqKPdsb4alpzHDA,1549
117
127
  blaxel/client/models/configuration.py,sha256=kBRcw-KrajLGyUcevHkMJkUJP-JtYjmbKHWBKQpbVk0,2760
118
128
  blaxel/client/models/continent.py,sha256=_gQJci2_MUmCiGGG4iCMnUDTww9OqcTsNVqwPVigy3U,1880
119
129
  blaxel/client/models/core_event.py,sha256=KGIlp-C1K0Qq0_A7featcQohUwVfI7-H_coQZJ0AzXE,2618
@@ -123,6 +133,7 @@ blaxel/client/models/country.py,sha256=IYUZ6ErVduc3vmB01UEN8nIi6h5htupqFvyhRqEmK
123
133
  blaxel/client/models/create_api_key_for_service_account_body.py,sha256=_D6aHXfZP8ksJeFlP-vEd5kEUuQAvofkaq5_N8ej_XM,2005
124
134
  blaxel/client/models/create_workspace_service_account_body.py,sha256=UHKYL3MSfVGMj4CNw0CzCsjnxdOxdnw6D8ujPrc76Xw,1958
125
135
  blaxel/client/models/create_workspace_service_account_response_200.py,sha256=qYHg4tbUWJWpFrSFS1pKFeBNidgwfRb2QoP_gV99dMM,3349
136
+ blaxel/client/models/delete_sandbox_preview_token_response_200.py,sha256=VZd8-qe3zvJ-Dtr4Na6DIFIkHk7eIXU1i-az2capq8o,1721
126
137
  blaxel/client/models/delete_workspace_service_account_response_200.py,sha256=wJt9T1kkoiDpMq5pE9uTZhXgeTqC0ZaTB51YBPBKo0M,2968
127
138
  blaxel/client/models/entrypoint.py,sha256=TZ8DyP2337SJzO77377Q4XuYuLxJTOKv2twFWphaEDI,2796
128
139
  blaxel/client/models/entrypoint_env.py,sha256=vX34kBBjOkcNbisOzquU-1c9X77Ieji2AVOTKxVD_Dw,1241
@@ -141,11 +152,19 @@ blaxel/client/models/function_spec.py,sha256=vjvvpz4THUW05q5nYvnMxvZ5BA6cvh7e0ji
141
152
  blaxel/client/models/get_workspace_service_accounts_response_200_item.py,sha256=ATEojS0VhRmL6a9JPWT3-fl3plosONbIWa5Jpoe4Pag,2981
142
153
  blaxel/client/models/histogram_bucket.py,sha256=d80wa8ksfi4bwPQiEN9s5IArkgc8jSfZwOAEFDZOTBk,2055
143
154
  blaxel/client/models/histogram_stats.py,sha256=CJMkvEhzeF8YuxQu9ZF3Ft8qoMIDyWB7fXEej6z4SXY,2342
155
+ blaxel/client/models/integration.py,sha256=XfxuUyJnVc8GiaUZWnjGYPnQmKiyGEBEa-v7AcO7w4c,8068
156
+ blaxel/client/models/integration_additional_infos.py,sha256=2Rq6IdGxoZCu7vGWEjJN6AlpqnOFOREyy8JXVlXU_Wo,1316
144
157
  blaxel/client/models/integration_connection.py,sha256=w3FZOQTDFqPVMEiXcL5NeLVp_uvIFpa72TijZbdqLkw,3162
145
158
  blaxel/client/models/integration_connection_spec.py,sha256=p0YvnqdAXNDg4mR5hiT8WYr4kCJkMnOG8EokVw2ERMU,4047
146
159
  blaxel/client/models/integration_connection_spec_config.py,sha256=B-EEdfSSyTfm7zFTpmoz_9mbOSu3S5UCIELLD8x6OU8,1360
147
160
  blaxel/client/models/integration_connection_spec_secret.py,sha256=j3haJQTt_uOO2ihzWJLrWS2rM8sOr6pJ0ckaHFRuHhE,1334
161
+ blaxel/client/models/integration_endpoint.py,sha256=ylAdTs4tYIXvNMnzkYTxppK40CNILnNXNMjUl5s6w7Q,4992
162
+ blaxel/client/models/integration_endpoint_token.py,sha256=FMVB0omPwHeFT7pGivERlVMWMUIQbuq8Cx9aGt5DXk8,2234
163
+ blaxel/client/models/integration_endpoints.py,sha256=qElM9HCQ5EsFM295TxW1Q11NP_DNXsNP7ADJi0gnEuQ,1914
164
+ blaxel/client/models/integration_headers.py,sha256=f7XQ2PFtgYXWxGaP-s6O9uK06thQYOlOi6gmlmAKVEA,1264
148
165
  blaxel/client/models/integration_model.py,sha256=-2_UVeP_5xWqYfP42gU2tckirN43LKTqUyRapwke090,5086
166
+ blaxel/client/models/integration_organization.py,sha256=nabwlixDnJyaGiOGyaVVR719yP_y59ewhMgZ_cjNOiE,2542
167
+ blaxel/client/models/integration_query_params.py,sha256=TV5nepXLqsDw2ww7bv1g2AOPDYKScyY4BqvLi38s3gw,1292
149
168
  blaxel/client/models/integration_repository.py,sha256=d1jn1UgTKYFfIEvpWwR20jkC2OuNx0ZIkv8iWXLxVns,2674
150
169
  blaxel/client/models/invite_workspace_user_body.py,sha256=ITmKPCuOGKTHn4VjnZ2EjIj6PGPoGh-M_rzgo0VMgNM,1612
151
170
  blaxel/client/models/knowledgebase.py,sha256=BJRBRvsdA50TVfIGEN1zUtOtjf25LVrdx5efPW0toCw,4487
@@ -161,7 +180,7 @@ blaxel/client/models/memory_allocation_metric.py,sha256=MOEUPZsXiCCepBv0nIJmKA97
161
180
  blaxel/client/models/metadata.py,sha256=kUrFB-DMTb7eRMDANjBvzJeQ67GjqQ2yN6J4gGN34rA,4385
162
181
  blaxel/client/models/metadata_labels.py,sha256=HA_fKLmJBlJlPfQKmWqZvckUpQhmMSBW9X7F4KZJ4-8,1231
163
182
  blaxel/client/models/metric.py,sha256=-XUIUtDu4OTH55kJuNVPBiNsp3F-iQRM1Nv5d0QxPP4,2157
164
- blaxel/client/models/metrics.py,sha256=P4WCH2s27Lii3eBY4wXDIAfmfReNPUKPU4oz0fzgIak,7210
183
+ blaxel/client/models/metrics.py,sha256=aUy1o4o6nLJwPtFTRzW1VGwP2Xodoe8rBVQfOunPYHw,7511
165
184
  blaxel/client/models/metrics_models.py,sha256=efxsNsedpUR8sywmcGwf89zSeF9Nctd0Qt6FPwKQdqU,1238
166
185
  blaxel/client/models/metrics_request_total_per_code.py,sha256=PT5Zfn4CPXpP-mGtJMzDQ0LIVnVZVehWf6lER8IxG2Q,1348
167
186
  blaxel/client/models/metrics_rps_per_code.py,sha256=CBhe8-hqpsK3lS4KepgqveAlnJRtjANoYnfXFU2lulE,1311
@@ -182,6 +201,12 @@ blaxel/client/models/policy_location.py,sha256=MSNHIcfK2v3FVICy1r6sJwlkJ7ClASt_5
182
201
  blaxel/client/models/policy_max_tokens.py,sha256=KFAKKJ8yG3Nfqg6r6HsANKrkivQI2KCKLgQGVGzOQYI,3138
183
202
  blaxel/client/models/policy_spec.py,sha256=A6LX0Q4HbealhZP6O0mtT6SrhfnvQHBf_3bNHt2g0uk,6066
184
203
  blaxel/client/models/port.py,sha256=3mMRcMnQsrDWA07O6DmeOPzHY4z-knugDcMd0wZtYgw,2107
204
+ blaxel/client/models/preview.py,sha256=CF493_n0Gwgd3HDwI7c4fKeZmywY0fLp-J_JCzU06LQ,3024
205
+ blaxel/client/models/preview_metadata.py,sha256=vka-rLcyn7XHQfcz0HWSg7sVD4EzP340iBeLHwQCt08,4231
206
+ blaxel/client/models/preview_spec.py,sha256=B3R5VoYNEhA4UBEBJ1WtaOMgSzK3PU6t6jBBh6evOak,2087
207
+ blaxel/client/models/preview_token.py,sha256=eSJ5ZmR-_Pu8CDNhz67KBpHiGkMeKDQsUQEqrYUTg4A,3142
208
+ blaxel/client/models/preview_token_metadata.py,sha256=x7Enkor1L96AoTwrzHMTBh2PdlI1K07iOHA_Nd8t1R8,2902
209
+ blaxel/client/models/preview_token_spec.py,sha256=0ifGZoeQVUZi-qFHA-gLvC34c6GLIMkj-Tnt77v3SZo,2486
185
210
  blaxel/client/models/private_cluster.py,sha256=7n5GIgiCBbD9HDNlnZNHuIIf5-nr6wZb2DSi-25O9v0,6519
186
211
  blaxel/client/models/private_location.py,sha256=EhXB6EcQMnMbe4-RMBNlawJhx9a0T5i0xebrbVFjlrE,1609
187
212
  blaxel/client/models/repository.py,sha256=y179VzQivkOSXq2zW-z0mGxVwIG-rZWSs_JRxxfSBhE,1791
@@ -208,7 +233,6 @@ blaxel/client/models/runtime_startup_probe.py,sha256=5FUuyl3eUW_pceopzrSGO9iZeNL
208
233
  blaxel/client/models/sandbox.py,sha256=8IVAthkCUzWDkC2-D-2qze3s8FXD74JN4x9yNdxalcg,4418
209
234
  blaxel/client/models/sandbox_definition.py,sha256=H0yTvcZ6kz2EnnAqmXkMZr6k0N6k9slsHprEc8qqSlg,5962
210
235
  blaxel/client/models/sandbox_spec.py,sha256=Z3bj-qrW8B1lcIZ8cgg72I2-Kx8YGRnAwX4B362DS0o,8269
211
- blaxel/client/models/sandboxes.py,sha256=rBN9RxDvPhTsSb4jyPzeR0x0TDLymWVVF0jW4fromNM,4428
212
236
  blaxel/client/models/serverless_config.py,sha256=vaEFezvBUevm6hTRfC3Z_yWVZDhZnbTO0FqlqbzZYNc,3673
213
237
  blaxel/client/models/serverless_config_configuration.py,sha256=bKx1mGHbBjlPyxn34lttSo_h3PdjOMriazPfPen9Y7I,1339
214
238
  blaxel/client/models/spec_configuration.py,sha256=oGmMqoZSVEGedarAou-102vfw16bFevHUp4C_OW6h1k,1970
@@ -283,22 +307,25 @@ blaxel/sandbox/client/api/process/delete_process_identifier.py,sha256=7ihlG9_R7p
283
307
  blaxel/sandbox/client/api/process/delete_process_identifier_kill.py,sha256=1x_KMc7uJD_fap8uoTmZkWIDTgLJKmCTGcOP1Mr6X1E,4858
284
308
  blaxel/sandbox/client/api/process/get_process.py,sha256=XWf_hNFZLkS14eWjBjir22QwdtV313_llrQGExJ7lZo,3588
285
309
  blaxel/sandbox/client/api/process/get_process_identifier.py,sha256=OqmxuKKHDGX6rwS0Mavn6nnL0X_7AasPUdS5RS04URc,4159
286
- blaxel/sandbox/client/api/process/get_process_identifier_logs.py,sha256=m34pQjMLpEUJsqkjEh0OafdNaMbDhR0NhzaJ1jWLJVk,4513
310
+ blaxel/sandbox/client/api/process/get_process_identifier_logs.py,sha256=Mj07ddD2CHonZuiNIi4RzxVC9KQEr64MhLE5820Bc9Y,5152
311
+ blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py,sha256=hvhZWPxAir1EQA0L-5aI6WdRzaCOvnk5jPoBlfdjPZE,5343
287
312
  blaxel/sandbox/client/api/process/post_process.py,sha256=cemvWEtrZ24RBx3QHusE9Al_yrgQip9nBSkaQhSGUkI,4527
288
- blaxel/sandbox/client/models/__init__.py,sha256=KiSEopbp_UpGTz_3kcRG_XDd7Vfcn3LbOAmj8Ex-PFs,1288
313
+ blaxel/sandbox/client/models/__init__.py,sha256=wNEW4zTQ9Y0aIsnjfTtMrUHaMBm6mavWuTCzF-hAzms,1508
289
314
  blaxel/sandbox/client/models/delete_network_process_pid_monitor_response_200.py,sha256=9cQgKDjG98sMridjXKgeR2oZzFKcQ0G9QIojhwYFosI,1376
290
- blaxel/sandbox/client/models/directory.py,sha256=pHJ2lX4IjuMIdZSkb7plmzPsmALP3EwUymfH0Ra4YgA,3482
315
+ blaxel/sandbox/client/models/directory.py,sha256=ApgBGjZApuhbTD6HKEzOIwk1IurrhpjuyupKlZcBj4c,3597
291
316
  blaxel/sandbox/client/models/error_response.py,sha256=lI15zKBoD2X9yHzSiEaYGUn5TPTxWM7j1Tu5crtd23M,1581
292
- blaxel/sandbox/client/models/file.py,sha256=-SwKgrzbXfPQfxhAp2S_P8On-vT5Ac4Q-ODKRdwdsts,2835
317
+ blaxel/sandbox/client/models/file.py,sha256=0CHScaMKrE_Eu3XfMVPAY7GAppQUKwG3VhSr5rp7T1A,2813
293
318
  blaxel/sandbox/client/models/file_request.py,sha256=xOZSru-fae-En-_2YBgkHa_6iGbqbJsG3RLqBuajVY0,2227
294
- blaxel/sandbox/client/models/file_with_content.py,sha256=CGRXhUrrYtLAxQIsJi01kFUVAt1Bkj2tFUalULLA77Q,3153
319
+ blaxel/sandbox/client/models/file_with_content.py,sha256=Fou1vfbdPPOg2l2YTU2Q2M23V7iaFy3BFVKSGQ3jvN8,3131
295
320
  blaxel/sandbox/client/models/get_network_process_pid_ports_response_200.py,sha256=x4uv80kK0GVroWO98l5sE84a6uwZ8pnUKTpGg81ipWA,1351
296
321
  blaxel/sandbox/client/models/get_process_identifier_logs_response_200.py,sha256=pEs9vxD29oxrojOgeyppXXmFVvem7beWzm5_i4TkgDc,1343
322
+ blaxel/sandbox/client/models/get_process_identifier_logs_stream_response_200.py,sha256=EZndHWB9OhAv9PNC_NCOSEF0vZjDQfJibjCXi3l76pw,1376
297
323
  blaxel/sandbox/client/models/port_monitor_request.py,sha256=LK7sjAK1TF1ojgG4vGytaKLVtV6-SNXxfZ3sxew1cRE,1698
298
324
  blaxel/sandbox/client/models/post_network_process_pid_monitor_response_200.py,sha256=Y8BvNGKU8SlzTGqhaQZk_WWIrmFpNU0LVcmLFjNvqhA,1366
299
325
  blaxel/sandbox/client/models/process_kill_request.py,sha256=TqhuOmVPm_yKZj52YFv3yyu2UA8eVgXEio4sgCVAR-0,1614
300
326
  blaxel/sandbox/client/models/process_request.py,sha256=FGWl2SnuHdBY-8t_YatpKwYCUfA3LMHt8RnU0hjPcLc,3598
301
327
  blaxel/sandbox/client/models/process_response.py,sha256=WMfxuNTrL5wo5QT7HOR4_CTyf9XztO5cPvmtlHMdNd8,3624
328
+ blaxel/sandbox/client/models/subdirectory.py,sha256=nJxyF6vc3iHK-36uR3oi-yhuBCJfmoLo8-4dwBjJJLU,1537
302
329
  blaxel/sandbox/client/models/success_response.py,sha256=JQbCUIdVJy_TJ3mp8IuvCGbKgCm_iZQMMrqn8uZkxCk,1874
303
330
  blaxel/tools/__init__.py,sha256=4lzqDt0FNWcO8L0DkFzY1KTHLNtgEux66id4Psq7sXY,11520
304
331
  blaxel/tools/common.py,sha256=JGK052v_fvwWBFYnIArlBnFFViYyFrqdDn3gdVf53EU,1332
@@ -310,7 +337,7 @@ blaxel/tools/llamaindex.py,sha256=-gQ-C9V_h9a11J4ItsbWjXrCJOg0lRKsb98v9rVsNak,71
310
337
  blaxel/tools/openai.py,sha256=GuFXkj6bXEwldyVr89jEsRAi5ihZUVEVe327QuWiGNs,653
311
338
  blaxel/tools/pydantic.py,sha256=CvnNbAG_J4yBtA-XFI4lQrq3FYKjNd39hu841vZT004,1801
312
339
  blaxel/tools/types.py,sha256=YPCGJ4vZDhqR0X2H_TWtc5chQScsC32nGTQdRKJlO8Y,707
313
- blaxel-0.1.10rc39.dist-info/METADATA,sha256=EQelat7hNQYQqQRoDE2dpk5HDKDb2JgLRUMAd3lpO5Q,11607
314
- blaxel-0.1.10rc39.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
315
- blaxel-0.1.10rc39.dist-info/licenses/LICENSE,sha256=p5PNQvpvyDT_0aYBDgmV1fFI_vAD2aSV0wWG7VTgRis,1069
316
- blaxel-0.1.10rc39.dist-info/RECORD,,
340
+ blaxel-0.1.10rc41.dist-info/METADATA,sha256=NHGYX-OdSN91gUDGRJMTVBeKBA-r47jwAKNV85L3aHQ,11607
341
+ blaxel-0.1.10rc41.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
342
+ blaxel-0.1.10rc41.dist-info/licenses/LICENSE,sha256=p5PNQvpvyDT_0aYBDgmV1fFI_vAD2aSV0wWG7VTgRis,1069
343
+ blaxel-0.1.10rc41.dist-info/RECORD,,