blaxel 0.1.16rc60__py3-none-any.whl → 0.1.18rc61__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.
- blaxel/authentication/clientcredentials.py +1 -1
- blaxel/client/api/jobs/__init__.py +0 -0
- blaxel/client/api/{default/get_template_file_contents.py → jobs/create_job.py} +57 -44
- blaxel/client/api/jobs/delete_job.py +154 -0
- blaxel/client/api/{default/get_template_contents.py → jobs/get_job.py} +43 -30
- blaxel/client/api/jobs/list_job_revisions.py +159 -0
- blaxel/client/api/jobs/list_jobs.py +135 -0
- blaxel/client/api/jobs/update_job.py +179 -0
- blaxel/client/models/__init__.py +34 -0
- blaxel/client/models/job.py +129 -0
- blaxel/client/models/job_execution_config.py +79 -0
- blaxel/client/models/job_metrics.py +199 -0
- blaxel/client/models/job_metrics_executions_chart.py +45 -0
- blaxel/client/models/job_metrics_executions_total.py +45 -0
- blaxel/client/models/job_metrics_tasks_chart.py +45 -0
- blaxel/client/models/job_metrics_tasks_total.py +45 -0
- blaxel/client/models/job_spec.py +208 -0
- blaxel/client/models/jobs_chart.py +94 -0
- blaxel/client/models/jobs_chart_value.py +70 -0
- blaxel/client/models/jobs_executions.py +88 -0
- blaxel/client/models/jobs_network_chart.py +94 -0
- blaxel/client/models/jobs_success_failed_chart.py +139 -0
- blaxel/client/models/jobs_tasks.py +88 -0
- blaxel/client/models/jobs_total.py +97 -0
- blaxel/client/models/preview_spec.py +55 -1
- blaxel/client/models/preview_spec_request_headers.py +48 -0
- blaxel/{sandbox/client/models/get_process_identifier_logs_response_200.py → client/models/preview_spec_response_headers.py} +6 -6
- blaxel/client/models/runtime.py +18 -0
- blaxel/client/models/serverless_config.py +9 -0
- blaxel/common/internal.py +0 -2
- blaxel/common/logger.py +2 -0
- blaxel/instrumentation/manager.py +1 -1
- blaxel/jobs/__init__.py +4 -8
- blaxel/sandbox/client/api/filesystem/delete_filesystem_path.py +4 -0
- blaxel/sandbox/client/api/filesystem/get_filesystem_path.py +4 -0
- blaxel/sandbox/client/api/filesystem/get_watch_filesystem_path.py +22 -1
- blaxel/sandbox/client/api/filesystem/put_filesystem_path.py +8 -4
- blaxel/sandbox/client/api/network/delete_network_process_pid_monitor.py +4 -0
- blaxel/sandbox/client/api/network/get_network_process_pid_ports.py +4 -0
- blaxel/sandbox/client/api/network/post_network_process_pid_monitor.py +4 -0
- blaxel/sandbox/client/api/process/delete_process_identifier.py +4 -0
- blaxel/sandbox/client/api/process/delete_process_identifier_kill.py +4 -0
- blaxel/sandbox/client/api/process/get_process_identifier_logs.py +16 -16
- blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py +4 -0
- blaxel/sandbox/client/api/process/get_ws_process_identifier_logs_stream.py +8 -8
- blaxel/sandbox/client/api/process/post_process.py +4 -0
- blaxel/sandbox/client/models/__init__.py +4 -2
- blaxel/sandbox/client/models/directory.py +9 -0
- blaxel/sandbox/client/models/file.py +9 -0
- blaxel/sandbox/client/models/file_with_content.py +9 -0
- blaxel/sandbox/client/models/process_logs.py +78 -0
- blaxel/sandbox/client/models/process_response.py +12 -4
- blaxel/sandbox/client/models/process_response_status.py +12 -0
- blaxel/sandbox/client/models/subdirectory.py +9 -0
- blaxel/sandbox/preview.py +13 -17
- blaxel/sandbox/process.py +8 -9
- {blaxel-0.1.16rc60.dist-info → blaxel-0.1.18rc61.dist-info}/METADATA +1 -1
- {blaxel-0.1.16rc60.dist-info → blaxel-0.1.18rc61.dist-info}/RECORD +60 -37
- {blaxel-0.1.16rc60.dist-info → blaxel-0.1.18rc61.dist-info}/WHEEL +0 -0
- {blaxel-0.1.16rc60.dist-info → blaxel-0.1.18rc61.dist-info}/licenses/LICENSE +0 -0
@@ -43,6 +43,10 @@ def _parse_response(*, client: Client, response: httpx.Response) -> Optional[Uni
|
|
43
43
|
response_400 = ErrorResponse.from_dict(response.json())
|
44
44
|
|
45
45
|
return response_400
|
46
|
+
if response.status_code == 422:
|
47
|
+
response_422 = ErrorResponse.from_dict(response.json())
|
48
|
+
|
49
|
+
return response_422
|
46
50
|
if response.status_code == 500:
|
47
51
|
response_500 = ErrorResponse.from_dict(response.json())
|
48
52
|
|
@@ -9,12 +9,13 @@ from .file import File
|
|
9
9
|
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
|
-
from .get_process_identifier_logs_response_200 import GetProcessIdentifierLogsResponse200
|
13
12
|
from .port_monitor_request import PortMonitorRequest
|
14
13
|
from .post_network_process_pid_monitor_response_200 import PostNetworkProcessPidMonitorResponse200
|
15
14
|
from .process_kill_request import ProcessKillRequest
|
15
|
+
from .process_logs import ProcessLogs
|
16
16
|
from .process_request import ProcessRequest
|
17
17
|
from .process_response import ProcessResponse
|
18
|
+
from .process_response_status import ProcessResponseStatus
|
18
19
|
from .subdirectory import Subdirectory
|
19
20
|
from .success_response import SuccessResponse
|
20
21
|
|
@@ -26,12 +27,13 @@ __all__ = (
|
|
26
27
|
"FileRequest",
|
27
28
|
"FileWithContent",
|
28
29
|
"GetNetworkProcessPidPortsResponse200",
|
29
|
-
"GetProcessIdentifierLogsResponse200",
|
30
30
|
"PortMonitorRequest",
|
31
31
|
"PostNetworkProcessPidMonitorResponse200",
|
32
32
|
"ProcessKillRequest",
|
33
|
+
"ProcessLogs",
|
33
34
|
"ProcessRequest",
|
34
35
|
"ProcessResponse",
|
36
|
+
"ProcessResponseStatus",
|
35
37
|
"Subdirectory",
|
36
38
|
"SuccessResponse",
|
37
39
|
)
|
@@ -18,11 +18,13 @@ class Directory:
|
|
18
18
|
"""
|
19
19
|
Attributes:
|
20
20
|
files (Union[Unset, list['File']]):
|
21
|
+
name (Union[Unset, str]):
|
21
22
|
path (Union[Unset, str]):
|
22
23
|
subdirectories (Union[Unset, list['Subdirectory']]): @name Subdirectories
|
23
24
|
"""
|
24
25
|
|
25
26
|
files: Union[Unset, list["File"]] = UNSET
|
27
|
+
name: Union[Unset, str] = UNSET
|
26
28
|
path: Union[Unset, str] = UNSET
|
27
29
|
subdirectories: Union[Unset, list["Subdirectory"]] = UNSET
|
28
30
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
@@ -38,6 +40,8 @@ class Directory:
|
|
38
40
|
files_item = files_item_data.to_dict()
|
39
41
|
files.append(files_item)
|
40
42
|
|
43
|
+
name = self.name
|
44
|
+
|
41
45
|
path = self.path
|
42
46
|
|
43
47
|
subdirectories: Union[Unset, list[dict[str, Any]]] = UNSET
|
@@ -55,6 +59,8 @@ class Directory:
|
|
55
59
|
field_dict.update({})
|
56
60
|
if files is not UNSET:
|
57
61
|
field_dict["files"] = files
|
62
|
+
if name is not UNSET:
|
63
|
+
field_dict["name"] = name
|
58
64
|
if path is not UNSET:
|
59
65
|
field_dict["path"] = path
|
60
66
|
if subdirectories is not UNSET:
|
@@ -77,6 +83,8 @@ class Directory:
|
|
77
83
|
|
78
84
|
files.append(files_item)
|
79
85
|
|
86
|
+
name = d.pop("name", UNSET)
|
87
|
+
|
80
88
|
path = d.pop("path", UNSET)
|
81
89
|
|
82
90
|
subdirectories = []
|
@@ -88,6 +96,7 @@ class Directory:
|
|
88
96
|
|
89
97
|
directory = cls(
|
90
98
|
files=files,
|
99
|
+
name=name,
|
91
100
|
path=path,
|
92
101
|
subdirectories=subdirectories,
|
93
102
|
)
|
@@ -14,6 +14,7 @@ class File:
|
|
14
14
|
Attributes:
|
15
15
|
group (Union[Unset, str]):
|
16
16
|
last_modified (Union[Unset, str]):
|
17
|
+
name (Union[Unset, str]):
|
17
18
|
owner (Union[Unset, str]):
|
18
19
|
path (Union[Unset, str]):
|
19
20
|
permissions (Union[Unset, str]):
|
@@ -22,6 +23,7 @@ class File:
|
|
22
23
|
|
23
24
|
group: Union[Unset, str] = UNSET
|
24
25
|
last_modified: Union[Unset, str] = UNSET
|
26
|
+
name: Union[Unset, str] = UNSET
|
25
27
|
owner: Union[Unset, str] = UNSET
|
26
28
|
path: Union[Unset, str] = UNSET
|
27
29
|
permissions: Union[Unset, str] = UNSET
|
@@ -33,6 +35,8 @@ class File:
|
|
33
35
|
|
34
36
|
last_modified = self.last_modified
|
35
37
|
|
38
|
+
name = self.name
|
39
|
+
|
36
40
|
owner = self.owner
|
37
41
|
|
38
42
|
path = self.path
|
@@ -48,6 +52,8 @@ class File:
|
|
48
52
|
field_dict["group"] = group
|
49
53
|
if last_modified is not UNSET:
|
50
54
|
field_dict["lastModified"] = last_modified
|
55
|
+
if name is not UNSET:
|
56
|
+
field_dict["name"] = name
|
51
57
|
if owner is not UNSET:
|
52
58
|
field_dict["owner"] = owner
|
53
59
|
if path is not UNSET:
|
@@ -68,6 +74,8 @@ class File:
|
|
68
74
|
|
69
75
|
last_modified = d.pop("lastModified", UNSET)
|
70
76
|
|
77
|
+
name = d.pop("name", UNSET)
|
78
|
+
|
71
79
|
owner = d.pop("owner", UNSET)
|
72
80
|
|
73
81
|
path = d.pop("path", UNSET)
|
@@ -79,6 +87,7 @@ class File:
|
|
79
87
|
file = cls(
|
80
88
|
group=group,
|
81
89
|
last_modified=last_modified,
|
90
|
+
name=name,
|
82
91
|
owner=owner,
|
83
92
|
path=path,
|
84
93
|
permissions=permissions,
|
@@ -15,6 +15,7 @@ class FileWithContent:
|
|
15
15
|
content (Union[Unset, str]):
|
16
16
|
group (Union[Unset, str]):
|
17
17
|
last_modified (Union[Unset, str]):
|
18
|
+
name (Union[Unset, str]):
|
18
19
|
owner (Union[Unset, str]):
|
19
20
|
path (Union[Unset, str]):
|
20
21
|
permissions (Union[Unset, str]):
|
@@ -24,6 +25,7 @@ class FileWithContent:
|
|
24
25
|
content: Union[Unset, str] = UNSET
|
25
26
|
group: Union[Unset, str] = UNSET
|
26
27
|
last_modified: Union[Unset, str] = UNSET
|
28
|
+
name: Union[Unset, str] = UNSET
|
27
29
|
owner: Union[Unset, str] = UNSET
|
28
30
|
path: Union[Unset, str] = UNSET
|
29
31
|
permissions: Union[Unset, str] = UNSET
|
@@ -37,6 +39,8 @@ class FileWithContent:
|
|
37
39
|
|
38
40
|
last_modified = self.last_modified
|
39
41
|
|
42
|
+
name = self.name
|
43
|
+
|
40
44
|
owner = self.owner
|
41
45
|
|
42
46
|
path = self.path
|
@@ -54,6 +58,8 @@ class FileWithContent:
|
|
54
58
|
field_dict["group"] = group
|
55
59
|
if last_modified is not UNSET:
|
56
60
|
field_dict["lastModified"] = last_modified
|
61
|
+
if name is not UNSET:
|
62
|
+
field_dict["name"] = name
|
57
63
|
if owner is not UNSET:
|
58
64
|
field_dict["owner"] = owner
|
59
65
|
if path is not UNSET:
|
@@ -76,6 +82,8 @@ class FileWithContent:
|
|
76
82
|
|
77
83
|
last_modified = d.pop("lastModified", UNSET)
|
78
84
|
|
85
|
+
name = d.pop("name", UNSET)
|
86
|
+
|
79
87
|
owner = d.pop("owner", UNSET)
|
80
88
|
|
81
89
|
path = d.pop("path", UNSET)
|
@@ -88,6 +96,7 @@ class FileWithContent:
|
|
88
96
|
content=content,
|
89
97
|
group=group,
|
90
98
|
last_modified=last_modified,
|
99
|
+
name=name,
|
91
100
|
owner=owner,
|
92
101
|
path=path,
|
93
102
|
permissions=permissions,
|
@@ -0,0 +1,78 @@
|
|
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="ProcessLogs")
|
9
|
+
|
10
|
+
|
11
|
+
@_attrs_define
|
12
|
+
class ProcessLogs:
|
13
|
+
"""
|
14
|
+
Attributes:
|
15
|
+
logs (Union[Unset, str]): Example: logs output.
|
16
|
+
stderr (Union[Unset, str]): Example: stderr output.
|
17
|
+
stdout (Union[Unset, str]): Example: stdout output.
|
18
|
+
"""
|
19
|
+
|
20
|
+
logs: Union[Unset, str] = UNSET
|
21
|
+
stderr: Union[Unset, str] = UNSET
|
22
|
+
stdout: Union[Unset, str] = UNSET
|
23
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
24
|
+
|
25
|
+
def to_dict(self) -> dict[str, Any]:
|
26
|
+
logs = self.logs
|
27
|
+
|
28
|
+
stderr = self.stderr
|
29
|
+
|
30
|
+
stdout = self.stdout
|
31
|
+
|
32
|
+
field_dict: dict[str, Any] = {}
|
33
|
+
field_dict.update(self.additional_properties)
|
34
|
+
field_dict.update({})
|
35
|
+
if logs is not UNSET:
|
36
|
+
field_dict["logs"] = logs
|
37
|
+
if stderr is not UNSET:
|
38
|
+
field_dict["stderr"] = stderr
|
39
|
+
if stdout is not UNSET:
|
40
|
+
field_dict["stdout"] = stdout
|
41
|
+
|
42
|
+
return field_dict
|
43
|
+
|
44
|
+
@classmethod
|
45
|
+
def from_dict(cls: type[T], src_dict: dict[str, Any]) -> T:
|
46
|
+
if not src_dict:
|
47
|
+
return None
|
48
|
+
d = src_dict.copy()
|
49
|
+
logs = d.pop("logs", UNSET)
|
50
|
+
|
51
|
+
stderr = d.pop("stderr", UNSET)
|
52
|
+
|
53
|
+
stdout = d.pop("stdout", UNSET)
|
54
|
+
|
55
|
+
process_logs = cls(
|
56
|
+
logs=logs,
|
57
|
+
stderr=stderr,
|
58
|
+
stdout=stdout,
|
59
|
+
)
|
60
|
+
|
61
|
+
process_logs.additional_properties = d
|
62
|
+
return process_logs
|
63
|
+
|
64
|
+
@property
|
65
|
+
def additional_keys(self) -> list[str]:
|
66
|
+
return list(self.additional_properties.keys())
|
67
|
+
|
68
|
+
def __getitem__(self, key: str) -> Any:
|
69
|
+
return self.additional_properties[key]
|
70
|
+
|
71
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
72
|
+
self.additional_properties[key] = value
|
73
|
+
|
74
|
+
def __delitem__(self, key: str) -> None:
|
75
|
+
del self.additional_properties[key]
|
76
|
+
|
77
|
+
def __contains__(self, key: str) -> bool:
|
78
|
+
return key in self.additional_properties
|
@@ -3,6 +3,7 @@ from typing import Any, TypeVar, Union
|
|
3
3
|
from attrs import define as _attrs_define
|
4
4
|
from attrs import field as _attrs_field
|
5
5
|
|
6
|
+
from ..models.process_response_status import ProcessResponseStatus
|
6
7
|
from ..types import UNSET, Unset
|
7
8
|
|
8
9
|
T = TypeVar("T", bound="ProcessResponse")
|
@@ -18,7 +19,7 @@ class ProcessResponse:
|
|
18
19
|
name (Union[Unset, str]): Example: my-process.
|
19
20
|
pid (Union[Unset, str]): Example: 1234.
|
20
21
|
started_at (Union[Unset, str]): Example: Wed, 01 Jan 2023 12:00:00 GMT.
|
21
|
-
status (Union[Unset,
|
22
|
+
status (Union[Unset, ProcessResponseStatus]): Example: running.
|
22
23
|
working_dir (Union[Unset, str]): Example: /home/user.
|
23
24
|
"""
|
24
25
|
|
@@ -28,7 +29,7 @@ class ProcessResponse:
|
|
28
29
|
name: Union[Unset, str] = UNSET
|
29
30
|
pid: Union[Unset, str] = UNSET
|
30
31
|
started_at: Union[Unset, str] = UNSET
|
31
|
-
status: Union[Unset,
|
32
|
+
status: Union[Unset, ProcessResponseStatus] = UNSET
|
32
33
|
working_dir: Union[Unset, str] = UNSET
|
33
34
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
34
35
|
|
@@ -45,7 +46,9 @@ class ProcessResponse:
|
|
45
46
|
|
46
47
|
started_at = self.started_at
|
47
48
|
|
48
|
-
status =
|
49
|
+
status: Union[Unset, str] = UNSET
|
50
|
+
if not isinstance(self.status, Unset):
|
51
|
+
status = self.status.value
|
49
52
|
|
50
53
|
working_dir = self.working_dir
|
51
54
|
|
@@ -88,7 +91,12 @@ class ProcessResponse:
|
|
88
91
|
|
89
92
|
started_at = d.pop("startedAt", UNSET)
|
90
93
|
|
91
|
-
|
94
|
+
_status = d.pop("status", UNSET)
|
95
|
+
status: Union[Unset, ProcessResponseStatus]
|
96
|
+
if isinstance(_status, Unset):
|
97
|
+
status = UNSET
|
98
|
+
else:
|
99
|
+
status = ProcessResponseStatus(_status)
|
92
100
|
|
93
101
|
working_dir = d.pop("workingDir", UNSET)
|
94
102
|
|
@@ -12,18 +12,24 @@ T = TypeVar("T", bound="Subdirectory")
|
|
12
12
|
class Subdirectory:
|
13
13
|
"""
|
14
14
|
Attributes:
|
15
|
+
name (Union[Unset, str]):
|
15
16
|
path (Union[Unset, str]):
|
16
17
|
"""
|
17
18
|
|
19
|
+
name: Union[Unset, str] = UNSET
|
18
20
|
path: Union[Unset, str] = UNSET
|
19
21
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
20
22
|
|
21
23
|
def to_dict(self) -> dict[str, Any]:
|
24
|
+
name = self.name
|
25
|
+
|
22
26
|
path = self.path
|
23
27
|
|
24
28
|
field_dict: dict[str, Any] = {}
|
25
29
|
field_dict.update(self.additional_properties)
|
26
30
|
field_dict.update({})
|
31
|
+
if name is not UNSET:
|
32
|
+
field_dict["name"] = name
|
27
33
|
if path is not UNSET:
|
28
34
|
field_dict["path"] = path
|
29
35
|
|
@@ -34,9 +40,12 @@ class Subdirectory:
|
|
34
40
|
if not src_dict:
|
35
41
|
return None
|
36
42
|
d = src_dict.copy()
|
43
|
+
name = d.pop("name", UNSET)
|
44
|
+
|
37
45
|
path = d.pop("path", UNSET)
|
38
46
|
|
39
47
|
subdirectory = cls(
|
48
|
+
name=name,
|
40
49
|
path=path,
|
41
50
|
)
|
42
51
|
|
blaxel/sandbox/preview.py
CHANGED
@@ -1,24 +1,20 @@
|
|
1
1
|
from dataclasses import dataclass
|
2
|
-
from datetime import datetime
|
2
|
+
from datetime import datetime
|
3
3
|
from typing import List, Optional
|
4
4
|
|
5
|
-
from ..client.api.compute.create_sandbox_preview import
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
from ..client.api.compute.delete_sandbox_preview import
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
from ..client.api.compute.get_sandbox_preview import
|
14
|
-
|
15
|
-
from ..client.api.compute.
|
16
|
-
asyncio as list_sandbox_preview_tokens
|
17
|
-
from ..client.api.compute.list_sandbox_previews import \
|
18
|
-
asyncio as list_sandbox_previews
|
5
|
+
from ..client.api.compute.create_sandbox_preview import asyncio as create_sandbox_preview
|
6
|
+
from ..client.api.compute.create_sandbox_preview_token import (
|
7
|
+
asyncio as create_sandbox_preview_token,
|
8
|
+
)
|
9
|
+
from ..client.api.compute.delete_sandbox_preview import asyncio as delete_sandbox_preview
|
10
|
+
from ..client.api.compute.delete_sandbox_preview_token import (
|
11
|
+
asyncio as delete_sandbox_preview_token,
|
12
|
+
)
|
13
|
+
from ..client.api.compute.get_sandbox_preview import asyncio as get_sandbox_preview
|
14
|
+
from ..client.api.compute.list_sandbox_preview_tokens import asyncio as list_sandbox_preview_tokens
|
15
|
+
from ..client.api.compute.list_sandbox_previews import asyncio as list_sandbox_previews
|
19
16
|
from ..client.client import client
|
20
|
-
from ..client.models import
|
21
|
-
PreviewTokenSpec, Sandbox)
|
17
|
+
from ..client.models import Preview, PreviewSpec, PreviewToken, PreviewTokenSpec, Sandbox
|
22
18
|
|
23
19
|
|
24
20
|
@dataclass
|
blaxel/sandbox/process.py
CHANGED
@@ -13,12 +13,7 @@ from .client.api.process.get_process_identifier_logs import (
|
|
13
13
|
asyncio_detailed as get_process_by_identifier_logs,
|
14
14
|
)
|
15
15
|
from .client.api.process.post_process import asyncio_detailed as post_process
|
16
|
-
from .client.models import
|
17
|
-
GetProcessIdentifierLogsResponse200,
|
18
|
-
ProcessKillRequest,
|
19
|
-
ProcessResponse,
|
20
|
-
SuccessResponse,
|
21
|
-
)
|
16
|
+
from .client.models import ProcessKillRequest, ProcessLogs, ProcessResponse, SuccessResponse
|
22
17
|
|
23
18
|
|
24
19
|
class SandboxProcess(SandboxHandleBase):
|
@@ -51,7 +46,11 @@ class SandboxProcess(SandboxHandleBase):
|
|
51
46
|
async def logs(self, identifier: str, type_: str = "stdout") -> str:
|
52
47
|
response = await get_process_by_identifier_logs(identifier=identifier, client=self.client)
|
53
48
|
self.handle_response(response)
|
54
|
-
data:
|
55
|
-
if type_
|
56
|
-
return data.
|
49
|
+
data: ProcessLogs = response.parsed
|
50
|
+
if type_ == "all":
|
51
|
+
return data.logs
|
52
|
+
elif type_ == "stderr":
|
53
|
+
return data.stderr
|
54
|
+
elif type_ == "stdout":
|
55
|
+
return data.stdout
|
57
56
|
raise Exception("Unsupported log type")
|
@@ -2,7 +2,7 @@ blaxel/__init__.py,sha256=qmuJKjl5oGnjj4TbqHcJqUkKoxk4PvCsMb6-8rp67pE,159
|
|
2
2
|
blaxel/agents/__init__.py,sha256=RDWkvfICIXXaQxJuuSu63jsFj_F8NBAL4U752hfN4AE,5262
|
3
3
|
blaxel/authentication/__init__.py,sha256=tL9XKNCek5ixszTqjlKRBvidXMg4Nj6ODlBKlxxA9uk,3283
|
4
4
|
blaxel/authentication/apikey.py,sha256=nOgLVba7EfVk3V-qm7cj-30LAL-BT7NOMIlGL9Ni1jY,1249
|
5
|
-
blaxel/authentication/clientcredentials.py,sha256=
|
5
|
+
blaxel/authentication/clientcredentials.py,sha256=RmkmCoWXCvZHiSmuTsJFHW4goA7F0H8_0m8TBR0Tf70,3804
|
6
6
|
blaxel/authentication/devicemode.py,sha256=kWbArs4okIIDqW-ql5oV2eQRE_LpRwfadCB6LG83irw,5986
|
7
7
|
blaxel/authentication/oauth.py,sha256=Q5J0taIK1JrvGB6BC-zz3hM77HPCNu01DPGf4l7xjPQ,1417
|
8
8
|
blaxel/authentication/types.py,sha256=E3lmfbmZuJ4Bc_kGA0Kc0GZC02Sjha1_2CbabP7z6oo,1603
|
@@ -41,8 +41,6 @@ blaxel/client/api/configurations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
41
41
|
blaxel/client/api/configurations/get_configuration.py,sha256=3RVFsuSGg0Vpr3ov54zHqMdc_a6XisT3dxpifNRajJc,3096
|
42
42
|
blaxel/client/api/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
blaxel/client/api/default/get_template.py,sha256=02XH6fDwe6-MTQskM9P4Q4o8lWtWTuz5uIRRarjWFO4,3579
|
44
|
-
blaxel/client/api/default/get_template_contents.py,sha256=b0A0C0a5HmCjPXjJKzsekhmjpUv8ovc9Yk7fwuFznBo,3373
|
45
|
-
blaxel/client/api/default/get_template_file_contents.py,sha256=wPDrG8P8-OPwyy6XwtlfCE2-bf1aOx79wmMTZVC9Zbw,3638
|
46
44
|
blaxel/client/api/default/list_mcp_hub_definitions.py,sha256=RzT4kavg9P2w04DHiOqBNvuY5OeJegnUZ6geP3e1Ccw,3262
|
47
45
|
blaxel/client/api/default/list_sandbox_hub_definitions.py,sha256=mZ7SIcMrQWNn5gDk8ClBuv9t4vFNL_9WuVoFAG1RJTs,3318
|
48
46
|
blaxel/client/api/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -64,6 +62,13 @@ blaxel/client/api/integrations/list_integration_connections.py,sha256=pRUfJpkmP8
|
|
64
62
|
blaxel/client/api/integrations/update_integration_connection.py,sha256=wa2S0zJiLbU1ftlbR9JI8W5BNNmiKnqmCkV8AIgpRHY,4783
|
65
63
|
blaxel/client/api/invitations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
64
|
blaxel/client/api/invitations/list_all_pending_invitations.py,sha256=yuZuAQtb0EEdrEswywilAEgwU0rilwcmoXje1NWTPCY,4010
|
65
|
+
blaxel/client/api/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
blaxel/client/api/jobs/create_job.py,sha256=JsMDW-6L1RhKqPlFaoBxgn9zVArsO5s2oBcyw3voe-w,3538
|
67
|
+
blaxel/client/api/jobs/delete_job.py,sha256=zaV9fDq48gOKs0tacDTLkUN22arRVt6l_KpG5MeEI5c,3358
|
68
|
+
blaxel/client/api/jobs/get_job.py,sha256=HvVodW6Zlgd4WFXGccMkdsC1oJ_gsIMmuwp6bnjSXtM,3369
|
69
|
+
blaxel/client/api/jobs/list_job_revisions.py,sha256=YyMO-Fgmrkh48dKvrrZzi39UR8LplOqa6W3ZlC336SU,3890
|
70
|
+
blaxel/client/api/jobs/list_jobs.py,sha256=j2rCm35rEnLDGHC39yCzcFekNA9YQQ9I43QNkqwaD8g,3372
|
71
|
+
blaxel/client/api/jobs/update_job.py,sha256=_zMi7lnA48lHU6z5udtYFh9ffDMGQ8rFuQB-EAhqlAs,3884
|
67
72
|
blaxel/client/api/knowledgebases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
73
|
blaxel/client/api/knowledgebases/create_knowledgebase.py,sha256=w98anup5uOiL5KvxYj40LcYIq5B-4fbRqsQjj83FDlc,3892
|
69
74
|
blaxel/client/api/knowledgebases/delete_knowledgebase.py,sha256=6gf0msScMimEiId4h9EPAjGqawB-VA9r9leogGvvxqE,3798
|
@@ -118,7 +123,7 @@ blaxel/client/api/workspaces/list_workspaces.py,sha256=MuVb4Ubp4e8KZZyIpukiMHoLQ
|
|
118
123
|
blaxel/client/api/workspaces/remove_workspace_user.py,sha256=OZ_Q5zvV3eUSxsmSmbkJ05r3tJgaAZEE3FrsdOpAOYE,2578
|
119
124
|
blaxel/client/api/workspaces/update_workspace.py,sha256=GJZBydA4AzUOREpQ630b_S2-3zGLkVVhU364BH1luyY,4202
|
120
125
|
blaxel/client/api/workspaces/update_workspace_user_role.py,sha256=MU4Rp_yE07wvhFcYoLV7fx_trsk-TcTYSNs59siO_W4,4866
|
121
|
-
blaxel/client/models/__init__.py,sha256=
|
126
|
+
blaxel/client/models/__init__.py,sha256=dKaZIR3ItIsJHz2Eaam5111ZcnftKexpvBJBdyD_wkA,12596
|
122
127
|
blaxel/client/models/acl.py,sha256=tH67gsl_BMaviSbTaaIkO1g9cWZgJ6VgAnYVjQSzGZY,3952
|
123
128
|
blaxel/client/models/agent.py,sha256=VN2GMWsd7LSoWhthbezLIAqPZjQhsvMN6bqM09jZSuU,4359
|
124
129
|
blaxel/client/models/agent_spec.py,sha256=YzBpVhagqSqrEBG5oh9xO5F4nvzlZgaV3xieGRtaQDg,12260
|
@@ -167,6 +172,21 @@ blaxel/client/models/integration_organization.py,sha256=nabwlixDnJyaGiOGyaVVR719
|
|
167
172
|
blaxel/client/models/integration_query_params.py,sha256=TV5nepXLqsDw2ww7bv1g2AOPDYKScyY4BqvLi38s3gw,1292
|
168
173
|
blaxel/client/models/integration_repository.py,sha256=d1jn1UgTKYFfIEvpWwR20jkC2OuNx0ZIkv8iWXLxVns,2674
|
169
174
|
blaxel/client/models/invite_workspace_user_body.py,sha256=ITmKPCuOGKTHn4VjnZ2EjIj6PGPoGh-M_rzgo0VMgNM,1612
|
175
|
+
blaxel/client/models/job.py,sha256=dX-92frBvIkcfmwy6EGsaljtyWLnCjOiu-jMJP15PpI,4327
|
176
|
+
blaxel/client/models/job_execution_config.py,sha256=HNsQ8I-Tr8gCb8TpftCHaGVc4nkUItUgIN6zAwvBXfk,2488
|
177
|
+
blaxel/client/models/job_metrics.py,sha256=7MabRmMiJD5b-pArSlhjk-5MpqaD0jCheXPtXyD3Y8E,8173
|
178
|
+
blaxel/client/models/job_metrics_executions_chart.py,sha256=OGBEQu-6vvdQJfcE1nWEC5_FCdi45Y8rEFlPJJox1Dk,1302
|
179
|
+
blaxel/client/models/job_metrics_executions_total.py,sha256=YSaxHgDPP4G2y24zFKpz5AfSSZKOqsfphOaNdr0Hxzw,1302
|
180
|
+
blaxel/client/models/job_metrics_tasks_chart.py,sha256=fJ-Lr76ZF6L7UIhhU8vpRzlTpJ83XnCpmCXDlvb9204,1272
|
181
|
+
blaxel/client/models/job_metrics_tasks_total.py,sha256=MjCKjj81S2LHWrnbNHXLt6LUxdZY-8vmzqbEVQFVlWY,1272
|
182
|
+
blaxel/client/models/job_spec.py,sha256=4WHrx_xKcktXTrlJmrT1mgLvx95nHB_qRIO3ASmpVIA,8245
|
183
|
+
blaxel/client/models/jobs_chart.py,sha256=XbpoY1WLbP9yRlw7NAY8_XmeQFavP5RQ43OpmvczBdQ,2944
|
184
|
+
blaxel/client/models/jobs_chart_value.py,sha256=1yGN7zeMS7kC-97SwG5jQSQuvXSM2X-2xhC9HwaIURY,1888
|
185
|
+
blaxel/client/models/jobs_executions.py,sha256=e9ryxYNPRPlE9a4ObwdbTMBFPi3gveGbd4QFuxO5lNA,2410
|
186
|
+
blaxel/client/models/jobs_network_chart.py,sha256=ZfomaJhR3pXMGLwepoZc2ElOcE7luA7iCWdJjnEwC8A,2958
|
187
|
+
blaxel/client/models/jobs_success_failed_chart.py,sha256=gxhxyGYh8JPXmr55ylbcGYru52CXV9R-WLp0NU2w9g0,4765
|
188
|
+
blaxel/client/models/jobs_tasks.py,sha256=U566rBp_kwxBYrMBGtxEiLvvJ6UkuPP5iW9WZaMOfHk,2380
|
189
|
+
blaxel/client/models/jobs_total.py,sha256=qfC-O93n8axJ1KBPJjnV4NT7caC1KP16iuVv1GL_H_s,2661
|
170
190
|
blaxel/client/models/knowledgebase.py,sha256=BJRBRvsdA50TVfIGEN1zUtOtjf25LVrdx5efPW0toCw,4487
|
171
191
|
blaxel/client/models/knowledgebase_spec.py,sha256=RTYk7hOsnvW-dS759DZXY7xe3P7JKlRaRSPHK9LJx6A,6026
|
172
192
|
blaxel/client/models/knowledgebase_spec_options.py,sha256=iwpiJZqO4UuXAkZFLI5Vx9Fd74fRqUSjOEv5BrjoVlI,1316
|
@@ -203,7 +223,9 @@ blaxel/client/models/policy_spec.py,sha256=A6LX0Q4HbealhZP6O0mtT6SrhfnvQHBf_3bNH
|
|
203
223
|
blaxel/client/models/port.py,sha256=3mMRcMnQsrDWA07O6DmeOPzHY4z-knugDcMd0wZtYgw,2107
|
204
224
|
blaxel/client/models/preview.py,sha256=CF493_n0Gwgd3HDwI7c4fKeZmywY0fLp-J_JCzU06LQ,3024
|
205
225
|
blaxel/client/models/preview_metadata.py,sha256=vka-rLcyn7XHQfcz0HWSg7sVD4EzP340iBeLHwQCt08,4231
|
206
|
-
blaxel/client/models/preview_spec.py,sha256=
|
226
|
+
blaxel/client/models/preview_spec.py,sha256=KkHZOzg0Ru-HF34MxEmpUhe6-eOcHRa7jNQekfJiKcQ,5071
|
227
|
+
blaxel/client/models/preview_spec_request_headers.py,sha256=9Ao8WAnrZfX6lh625JSpXh_7AdGzDoBup6gDVdJBYJk,1413
|
228
|
+
blaxel/client/models/preview_spec_response_headers.py,sha256=BQwk-6BFtry4zg-LYjGtsxhNI7rxkjoYD7ZqNH3ra-0,1401
|
207
229
|
blaxel/client/models/preview_token.py,sha256=eSJ5ZmR-_Pu8CDNhz67KBpHiGkMeKDQsUQEqrYUTg4A,3142
|
208
230
|
blaxel/client/models/preview_token_metadata.py,sha256=x7Enkor1L96AoTwrzHMTBh2PdlI1K07iOHA_Nd8t1R8,2902
|
209
231
|
blaxel/client/models/preview_token_spec.py,sha256=vpuT9b36fO4cyNPhvsp-FGElM8_Smc2W0ZSDfv9Uh8A,2210
|
@@ -227,13 +249,13 @@ blaxel/client/models/resource_metrics_rps_per_code.py,sha256=FsftR1uU46I2_gxMCYp
|
|
227
249
|
blaxel/client/models/resource_metrics_rps_per_code_previous.py,sha256=n-KmFpDEL1W3BuSWCg3MA1uAz0T1p7ob2gtROD_4KYA,1420
|
228
250
|
blaxel/client/models/revision_configuration.py,sha256=ZkwRL8Ncuh5NBbqptv8I__Q06j8dY9K9XEP23PwfvCI,2546
|
229
251
|
blaxel/client/models/revision_metadata.py,sha256=mxP6LfQCb3AgcECcbwd6lOuiK8jw6Yxa6nBsa28KRW0,3750
|
230
|
-
blaxel/client/models/runtime.py,sha256=
|
252
|
+
blaxel/client/models/runtime.py,sha256=6szTZIO1T7GLjl--gxcPGV5YSdwZFM9HheQ9YeBc5Rk,10736
|
231
253
|
blaxel/client/models/runtime_configuration.py,sha256=iWeN7pwuYzVYpX3L8IuEAxggROLKnutBCNUYoprVH0E,1291
|
232
254
|
blaxel/client/models/runtime_startup_probe.py,sha256=5FUuyl3eUW_pceopzrSGO9iZeNLNf9j503RzX3AmatI,1307
|
233
255
|
blaxel/client/models/sandbox.py,sha256=8IVAthkCUzWDkC2-D-2qze3s8FXD74JN4x9yNdxalcg,4418
|
234
256
|
blaxel/client/models/sandbox_definition.py,sha256=H0yTvcZ6kz2EnnAqmXkMZr6k0N6k9slsHprEc8qqSlg,5962
|
235
257
|
blaxel/client/models/sandbox_spec.py,sha256=Z3bj-qrW8B1lcIZ8cgg72I2-Kx8YGRnAwX4B362DS0o,8269
|
236
|
-
blaxel/client/models/serverless_config.py,sha256=
|
258
|
+
blaxel/client/models/serverless_config.py,sha256=0yYDHi6n46LhvRVLZdJwiyPWhNMVPJvaXricUNf47ro,4021
|
237
259
|
blaxel/client/models/serverless_config_configuration.py,sha256=bKx1mGHbBjlPyxn34lttSo_h3PdjOMriazPfPen9Y7I,1339
|
238
260
|
blaxel/client/models/spec_configuration.py,sha256=oGmMqoZSVEGedarAou-102vfw16bFevHUp4C_OW6h1k,1970
|
239
261
|
blaxel/client/models/start_sandbox.py,sha256=TiP-YW94Lm97clikXP0MZHTWsgzaxkM9PkCNtFsSmCw,2810
|
@@ -262,15 +284,15 @@ blaxel/client/models/workspace_runtime.py,sha256=dxEpmwCFPOCRKHRKhY-iW7j6TbtL5qU
|
|
262
284
|
blaxel/client/models/workspace_user.py,sha256=70CcifQWYbeWG7TDui4pblTzUe5sVK0AS19vNCzKE8g,3423
|
263
285
|
blaxel/common/autoload.py,sha256=NFuK71-IHOY2JQyEBSjDCVfUaQ8D8PJsEUEryIdG4AU,263
|
264
286
|
blaxel/common/env.py,sha256=wTbzPDdNgz4HMJiS2NCZmQlN0qpxy1PQEYBaZgtvhoc,1247
|
265
|
-
blaxel/common/internal.py,sha256=
|
266
|
-
blaxel/common/logger.py,sha256=
|
287
|
+
blaxel/common/internal.py,sha256=6lZENUQrh3bvpMIPLaie6-g2upiNzf21QG-dQ0hGJWU,2371
|
288
|
+
blaxel/common/logger.py,sha256=NPAS3g82ryROjvc_DEZaTIfrcehoLEZoP-JkLxADxc0,4113
|
267
289
|
blaxel/common/settings.py,sha256=7KTryuBdud0IfHqykX7xEEtpgq5M5h1Z8YEzYKsHB-Q,2327
|
268
290
|
blaxel/instrumentation/exporters.py,sha256=EoX3uaBVku1Rg49pSNXKFyHhgY5OV3Ih6UlqgjF5epw,1670
|
269
291
|
blaxel/instrumentation/log.py,sha256=RvQByRjZMoP_dRaAZu8oK6DTegsHs-xV4W-UIqis6CA,2461
|
270
|
-
blaxel/instrumentation/manager.py,sha256=
|
292
|
+
blaxel/instrumentation/manager.py,sha256=odiz9ew5eB3LnuG-pqU27Vf05V5ifjSbikZuLMZAj50,8974
|
271
293
|
blaxel/instrumentation/map.py,sha256=zZoiUiQHmik5WQZ4VCWNARSa6ppMi0r7D6hlb41N-Mg,1589
|
272
294
|
blaxel/instrumentation/span.py,sha256=X2lwfu_dyxwQTMQJT2vbXOrbVSChEhjRLc413QOxQJM,3244
|
273
|
-
blaxel/jobs/__init__.py,sha256=
|
295
|
+
blaxel/jobs/__init__.py,sha256=poA8uVN-3H_nKexavjKIC5WkLHXo_4m6KYwGqcX_yGo,6473
|
274
296
|
blaxel/mcp/__init__.py,sha256=KednMrtuc4Y0O3lv7u1Lla54FCk8UX9c1k0USjL3Ahk,69
|
275
297
|
blaxel/mcp/client.py,sha256=cFFXfpKXoMu8qTUly2ejF0pX2iBQkSNAxqwvDV1V6xY,4979
|
276
298
|
blaxel/mcp/server.py,sha256=GIldtA_NgIc2dzd7ZpPvpbhpIt_7AfKu5yS_YJ0bDGg,7310
|
@@ -287,8 +309,8 @@ blaxel/models/custom/llamaindex/cohere.py,sha256=Igj5Y1ozf1V4feIXfBHDdaTFU7od_wu
|
|
287
309
|
blaxel/models/custom/pydantic/gemini.py,sha256=rbsunh-M7EEKlD5ir3GlA-8a12JzPFcvsf6NISjzE5I,1052
|
288
310
|
blaxel/sandbox/base.py,sha256=J5rd2uJ8N9vrti97EU4D21TaEzP7Jyfwf7s0248XIZw,2285
|
289
311
|
blaxel/sandbox/filesystem.py,sha256=3dvg92owjHypv0aFmBdx6i9QfMSfp6z9Z0D93yKfeiQ,4653
|
290
|
-
blaxel/sandbox/preview.py,sha256=
|
291
|
-
blaxel/sandbox/process.py,sha256=
|
312
|
+
blaxel/sandbox/preview.py,sha256=2L9JVfyvD7-65YXqLlvj3rOjq3p-Q-ich9gVAjMbDPs,4893
|
313
|
+
blaxel/sandbox/process.py,sha256=Xma8fIMgDoJM8z-XZOeqU8R-0yjDFGDgnxW8Fi4YPJQ,2531
|
292
314
|
blaxel/sandbox/sandbox.py,sha256=xKxNmD3mNBWw48eHWCtBghNta8MGQIEl2rEnK50Zo00,3078
|
293
315
|
blaxel/sandbox/client/__init__.py,sha256=N26bD5o1jsTb48oExow6Rgivd8ylaU9jaWZfZsVilP8,128
|
294
316
|
blaxel/sandbox/client/client.py,sha256=tcP8cJ4Q3dV9aB3yQ01dDXO-ekfsa3WGGFz4DQAEf8I,7079
|
@@ -297,39 +319,40 @@ blaxel/sandbox/client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebT
|
|
297
319
|
blaxel/sandbox/client/types.py,sha256=E1hhDh_zXfsSQ0NCt9-uw90_Mr5iIlsdfnfvxv5HarU,1005
|
298
320
|
blaxel/sandbox/client/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
299
321
|
blaxel/sandbox/client/api/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
|
-
blaxel/sandbox/client/api/filesystem/delete_filesystem_path.py,sha256=
|
301
|
-
blaxel/sandbox/client/api/filesystem/get_filesystem_path.py,sha256=
|
302
|
-
blaxel/sandbox/client/api/filesystem/get_watch_filesystem_path.py,sha256=
|
322
|
+
blaxel/sandbox/client/api/filesystem/delete_filesystem_path.py,sha256=t83lLDhA78sf8u9ul6nSnRNgsQYl4ftuP50tkTd6Uoc,4911
|
323
|
+
blaxel/sandbox/client/api/filesystem/get_filesystem_path.py,sha256=zYaR0SDG-_-qDZ_IWisZiA6Tzosx00fb9icnih60M7Y,5139
|
324
|
+
blaxel/sandbox/client/api/filesystem/get_watch_filesystem_path.py,sha256=sNAl-9e1yI1ZI39Yn8rtyn7n-pFUAZBkOtGljUVH18c,4946
|
303
325
|
blaxel/sandbox/client/api/filesystem/get_ws_watch_filesystem_path.py,sha256=9odJ6wWJBjk5kiONo1f-n8A6E6smJaFL2U5ZbZcAgHo,4334
|
304
|
-
blaxel/sandbox/client/api/filesystem/put_filesystem_path.py,sha256=
|
326
|
+
blaxel/sandbox/client/api/filesystem/put_filesystem_path.py,sha256=jGtJnbef6Wm-n2hm_BGAyMcvOQveQd5gX2iBcfQHjKU,4896
|
305
327
|
blaxel/sandbox/client/api/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
306
|
-
blaxel/sandbox/client/api/network/delete_network_process_pid_monitor.py,sha256=
|
307
|
-
blaxel/sandbox/client/api/network/get_network_process_pid_ports.py,sha256=
|
308
|
-
blaxel/sandbox/client/api/network/post_network_process_pid_monitor.py,sha256=
|
328
|
+
blaxel/sandbox/client/api/network/delete_network_process_pid_monitor.py,sha256=Kj_TJobog1W9q45IHfnih9M0wIS3B9JDXYibyGUWkzM,4710
|
329
|
+
blaxel/sandbox/client/api/network/get_network_process_pid_ports.py,sha256=6akX0-oJAqJoBJLEbGoUF1oXomKTJgFBGsM4M8OYPoQ,4584
|
330
|
+
blaxel/sandbox/client/api/network/post_network_process_pid_monitor.py,sha256=ee-xWgw_r2sSusT_Rxi5Y9soAzfd0OWwZ9Sgvmk4C6o,5364
|
309
331
|
blaxel/sandbox/client/api/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
310
|
-
blaxel/sandbox/client/api/process/delete_process_identifier.py,sha256=
|
311
|
-
blaxel/sandbox/client/api/process/delete_process_identifier_kill.py,sha256=
|
332
|
+
blaxel/sandbox/client/api/process/delete_process_identifier.py,sha256=IRc7jRa5mQIk7MG6LD473QOhqYboPKcXOaihfyBWZ4Y,4308
|
333
|
+
blaxel/sandbox/client/api/process/delete_process_identifier_kill.py,sha256=dkfAoIKJ-2rN4AvS9hGdz-smds7bcXnJtBOVvbqWg4I,4987
|
312
334
|
blaxel/sandbox/client/api/process/get_process.py,sha256=XWf_hNFZLkS14eWjBjir22QwdtV313_llrQGExJ7lZo,3588
|
313
335
|
blaxel/sandbox/client/api/process/get_process_identifier.py,sha256=OqmxuKKHDGX6rwS0Mavn6nnL0X_7AasPUdS5RS04URc,4159
|
314
|
-
blaxel/sandbox/client/api/process/get_process_identifier_logs.py,sha256=
|
315
|
-
blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py,sha256=
|
316
|
-
blaxel/sandbox/client/api/process/get_ws_process_identifier_logs_stream.py,sha256=
|
317
|
-
blaxel/sandbox/client/api/process/post_process.py,sha256=
|
318
|
-
blaxel/sandbox/client/models/__init__.py,sha256=
|
336
|
+
blaxel/sandbox/client/api/process/get_process_identifier_logs.py,sha256=TPqSGrIb99fJW_CT5eALpK_Pvz7p_FMlDpC434zH47U,4314
|
337
|
+
blaxel/sandbox/client/api/process/get_process_identifier_logs_stream.py,sha256=Gk5hhmMsLzt0kNV5k8QrfkXEKHlhVd9RLQTKRRqFX7w,4766
|
338
|
+
blaxel/sandbox/client/api/process/get_ws_process_identifier_logs_stream.py,sha256=4n6anipxxJYvhnvu34Xx1cM43r6Hye7QtZcip_OIRkU,4450
|
339
|
+
blaxel/sandbox/client/api/process/post_process.py,sha256=wUTMYnrXreeMVCnKD_jHYVPNFKUbSt6IGLI61MZ0TLo,4656
|
340
|
+
blaxel/sandbox/client/models/__init__.py,sha256=GGznzjKvYVyPyHkGm1iHLdXLpfXragpEb0xQh29V05Q,1359
|
319
341
|
blaxel/sandbox/client/models/delete_network_process_pid_monitor_response_200.py,sha256=9cQgKDjG98sMridjXKgeR2oZzFKcQ0G9QIojhwYFosI,1376
|
320
|
-
blaxel/sandbox/client/models/directory.py,sha256=
|
342
|
+
blaxel/sandbox/client/models/directory.py,sha256=7ZLnVo94VWsvT0tI-ceDRsjYqrI483lNLhaL2WVviqU,3821
|
321
343
|
blaxel/sandbox/client/models/error_response.py,sha256=lI15zKBoD2X9yHzSiEaYGUn5TPTxWM7j1Tu5crtd23M,1581
|
322
|
-
blaxel/sandbox/client/models/file.py,sha256=
|
344
|
+
blaxel/sandbox/client/models/file.py,sha256=LXjXjnY2p3frh5utiptpVNQGlRSh3gCKhmDxlHAIN6w,3037
|
323
345
|
blaxel/sandbox/client/models/file_request.py,sha256=xOZSru-fae-En-_2YBgkHa_6iGbqbJsG3RLqBuajVY0,2227
|
324
|
-
blaxel/sandbox/client/models/file_with_content.py,sha256=
|
346
|
+
blaxel/sandbox/client/models/file_with_content.py,sha256=55vccuRO-n613Ej7W5DXAd7cifHqOUeSSSD27Vf7RP8,3355
|
325
347
|
blaxel/sandbox/client/models/get_network_process_pid_ports_response_200.py,sha256=x4uv80kK0GVroWO98l5sE84a6uwZ8pnUKTpGg81ipWA,1351
|
326
|
-
blaxel/sandbox/client/models/get_process_identifier_logs_response_200.py,sha256=pEs9vxD29oxrojOgeyppXXmFVvem7beWzm5_i4TkgDc,1343
|
327
348
|
blaxel/sandbox/client/models/port_monitor_request.py,sha256=LK7sjAK1TF1ojgG4vGytaKLVtV6-SNXxfZ3sxew1cRE,1698
|
328
349
|
blaxel/sandbox/client/models/post_network_process_pid_monitor_response_200.py,sha256=Y8BvNGKU8SlzTGqhaQZk_WWIrmFpNU0LVcmLFjNvqhA,1366
|
329
350
|
blaxel/sandbox/client/models/process_kill_request.py,sha256=TqhuOmVPm_yKZj52YFv3yyu2UA8eVgXEio4sgCVAR-0,1614
|
351
|
+
blaxel/sandbox/client/models/process_logs.py,sha256=2yMnJcEDBFX3nWqv-msVqGXLMQ_pfIJF-UVdO03a0DY,2100
|
330
352
|
blaxel/sandbox/client/models/process_request.py,sha256=7iWyPgIiV7HKO2IopPGyKoUFMYhOOUIWi05NQPdYGmU,3281
|
331
|
-
blaxel/sandbox/client/models/process_response.py,sha256=
|
332
|
-
blaxel/sandbox/client/models/
|
353
|
+
blaxel/sandbox/client/models/process_response.py,sha256=13UN4aTg0OZJnABCD-bzsHNzVRqkeJtsuqDaK0DsyBI,4011
|
354
|
+
blaxel/sandbox/client/models/process_response_status.py,sha256=hCE1gCtheV83T6PYURG3k-rPZSauvyTFhsxLEtudgYE,246
|
355
|
+
blaxel/sandbox/client/models/subdirectory.py,sha256=j1ORkqO74vAdPQ-oUMer85P8Gb2mAwky3P2gBCnqyGQ,1761
|
333
356
|
blaxel/sandbox/client/models/success_response.py,sha256=JQbCUIdVJy_TJ3mp8IuvCGbKgCm_iZQMMrqn8uZkxCk,1874
|
334
357
|
blaxel/tools/__init__.py,sha256=4lzqDt0FNWcO8L0DkFzY1KTHLNtgEux66id4Psq7sXY,11520
|
335
358
|
blaxel/tools/common.py,sha256=JGK052v_fvwWBFYnIArlBnFFViYyFrqdDn3gdVf53EU,1332
|
@@ -341,7 +364,7 @@ blaxel/tools/llamaindex.py,sha256=-gQ-C9V_h9a11J4ItsbWjXrCJOg0lRKsb98v9rVsNak,71
|
|
341
364
|
blaxel/tools/openai.py,sha256=GuFXkj6bXEwldyVr89jEsRAi5ihZUVEVe327QuWiGNs,653
|
342
365
|
blaxel/tools/pydantic.py,sha256=CvnNbAG_J4yBtA-XFI4lQrq3FYKjNd39hu841vZT004,1801
|
343
366
|
blaxel/tools/types.py,sha256=YPCGJ4vZDhqR0X2H_TWtc5chQScsC32nGTQdRKJlO8Y,707
|
344
|
-
blaxel-0.1.
|
345
|
-
blaxel-0.1.
|
346
|
-
blaxel-0.1.
|
347
|
-
blaxel-0.1.
|
367
|
+
blaxel-0.1.18rc61.dist-info/METADATA,sha256=9IYqyMHfZIabRsrdrNaHntEL9K3QhwNNeHPJ62g0N8E,11936
|
368
|
+
blaxel-0.1.18rc61.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
369
|
+
blaxel-0.1.18rc61.dist-info/licenses/LICENSE,sha256=p5PNQvpvyDT_0aYBDgmV1fFI_vAD2aSV0wWG7VTgRis,1069
|
370
|
+
blaxel-0.1.18rc61.dist-info/RECORD,,
|
File without changes
|