structifyai 1.175.0__py3-none-any.whl → 1.176.0__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.
- structify/_version.py +1 -1
- structify/resources/sandbox.py +1 -110
- structify/resources/sessions.py +12 -2
- structify/types/__init__.py +0 -1
- structify/types/admin/admin_sandbox.py +6 -2
- structify/types/sandbox.py +6 -2
- structify/types/session_request_confirmation_params.py +3 -1
- structify/types/team.py +2 -0
- {structifyai-1.175.0.dist-info → structifyai-1.176.0.dist-info}/METADATA +1 -1
- {structifyai-1.175.0.dist-info → structifyai-1.176.0.dist-info}/RECORD +12 -13
- structify/types/sandbox_create_params.py +0 -22
- {structifyai-1.175.0.dist-info → structifyai-1.176.0.dist-info}/WHEEL +0 -0
- {structifyai-1.175.0.dist-info → structifyai-1.176.0.dist-info}/licenses/LICENSE +0 -0
structify/_version.py
CHANGED
structify/resources/sandbox.py
CHANGED
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import Optional
|
|
6
|
-
from typing_extensions import Literal
|
|
7
6
|
|
|
8
7
|
import httpx
|
|
9
8
|
|
|
10
|
-
from ..types import sandbox_get_params,
|
|
9
|
+
from ..types import sandbox_get_params, sandbox_update_status_params
|
|
11
10
|
from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
12
11
|
from .._utils import maybe_transform, async_maybe_transform
|
|
13
12
|
from .._compat import cached_property
|
|
@@ -45,54 +44,6 @@ class SandboxResource(SyncAPIResource):
|
|
|
45
44
|
"""
|
|
46
45
|
return SandboxResourceWithStreamingResponse(self)
|
|
47
46
|
|
|
48
|
-
def create(
|
|
49
|
-
self,
|
|
50
|
-
chat_id: str,
|
|
51
|
-
*,
|
|
52
|
-
chat_session_id: str,
|
|
53
|
-
modal_id: str,
|
|
54
|
-
modal_url: str,
|
|
55
|
-
status: Literal["alive", "terminated"],
|
|
56
|
-
latest_node: Optional[str] | Omit = omit,
|
|
57
|
-
session_id: Optional[str] | Omit = omit,
|
|
58
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
59
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
60
|
-
extra_headers: Headers | None = None,
|
|
61
|
-
extra_query: Query | None = None,
|
|
62
|
-
extra_body: Body | None = None,
|
|
63
|
-
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
64
|
-
) -> Sandbox:
|
|
65
|
-
"""
|
|
66
|
-
Args:
|
|
67
|
-
extra_headers: Send extra headers
|
|
68
|
-
|
|
69
|
-
extra_query: Add additional query parameters to the request
|
|
70
|
-
|
|
71
|
-
extra_body: Add additional JSON properties to the request
|
|
72
|
-
|
|
73
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
|
74
|
-
"""
|
|
75
|
-
if not chat_id:
|
|
76
|
-
raise ValueError(f"Expected a non-empty value for `chat_id` but received {chat_id!r}")
|
|
77
|
-
return self._post(
|
|
78
|
-
f"/sandbox/{chat_id}",
|
|
79
|
-
body=maybe_transform(
|
|
80
|
-
{
|
|
81
|
-
"chat_session_id": chat_session_id,
|
|
82
|
-
"modal_id": modal_id,
|
|
83
|
-
"modal_url": modal_url,
|
|
84
|
-
"status": status,
|
|
85
|
-
"latest_node": latest_node,
|
|
86
|
-
"session_id": session_id,
|
|
87
|
-
},
|
|
88
|
-
sandbox_create_params.SandboxCreateParams,
|
|
89
|
-
),
|
|
90
|
-
options=make_request_options(
|
|
91
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
92
|
-
),
|
|
93
|
-
cast_to=Sandbox,
|
|
94
|
-
)
|
|
95
|
-
|
|
96
47
|
def list(
|
|
97
48
|
self,
|
|
98
49
|
chat_id: str,
|
|
@@ -216,54 +167,6 @@ class AsyncSandboxResource(AsyncAPIResource):
|
|
|
216
167
|
"""
|
|
217
168
|
return AsyncSandboxResourceWithStreamingResponse(self)
|
|
218
169
|
|
|
219
|
-
async def create(
|
|
220
|
-
self,
|
|
221
|
-
chat_id: str,
|
|
222
|
-
*,
|
|
223
|
-
chat_session_id: str,
|
|
224
|
-
modal_id: str,
|
|
225
|
-
modal_url: str,
|
|
226
|
-
status: Literal["alive", "terminated"],
|
|
227
|
-
latest_node: Optional[str] | Omit = omit,
|
|
228
|
-
session_id: Optional[str] | Omit = omit,
|
|
229
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
230
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
231
|
-
extra_headers: Headers | None = None,
|
|
232
|
-
extra_query: Query | None = None,
|
|
233
|
-
extra_body: Body | None = None,
|
|
234
|
-
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
235
|
-
) -> Sandbox:
|
|
236
|
-
"""
|
|
237
|
-
Args:
|
|
238
|
-
extra_headers: Send extra headers
|
|
239
|
-
|
|
240
|
-
extra_query: Add additional query parameters to the request
|
|
241
|
-
|
|
242
|
-
extra_body: Add additional JSON properties to the request
|
|
243
|
-
|
|
244
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
|
245
|
-
"""
|
|
246
|
-
if not chat_id:
|
|
247
|
-
raise ValueError(f"Expected a non-empty value for `chat_id` but received {chat_id!r}")
|
|
248
|
-
return await self._post(
|
|
249
|
-
f"/sandbox/{chat_id}",
|
|
250
|
-
body=await async_maybe_transform(
|
|
251
|
-
{
|
|
252
|
-
"chat_session_id": chat_session_id,
|
|
253
|
-
"modal_id": modal_id,
|
|
254
|
-
"modal_url": modal_url,
|
|
255
|
-
"status": status,
|
|
256
|
-
"latest_node": latest_node,
|
|
257
|
-
"session_id": session_id,
|
|
258
|
-
},
|
|
259
|
-
sandbox_create_params.SandboxCreateParams,
|
|
260
|
-
),
|
|
261
|
-
options=make_request_options(
|
|
262
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
263
|
-
),
|
|
264
|
-
cast_to=Sandbox,
|
|
265
|
-
)
|
|
266
|
-
|
|
267
170
|
async def list(
|
|
268
171
|
self,
|
|
269
172
|
chat_id: str,
|
|
@@ -373,9 +276,6 @@ class SandboxResourceWithRawResponse:
|
|
|
373
276
|
def __init__(self, sandbox: SandboxResource) -> None:
|
|
374
277
|
self._sandbox = sandbox
|
|
375
278
|
|
|
376
|
-
self.create = to_raw_response_wrapper(
|
|
377
|
-
sandbox.create,
|
|
378
|
-
)
|
|
379
279
|
self.list = to_raw_response_wrapper(
|
|
380
280
|
sandbox.list,
|
|
381
281
|
)
|
|
@@ -391,9 +291,6 @@ class AsyncSandboxResourceWithRawResponse:
|
|
|
391
291
|
def __init__(self, sandbox: AsyncSandboxResource) -> None:
|
|
392
292
|
self._sandbox = sandbox
|
|
393
293
|
|
|
394
|
-
self.create = async_to_raw_response_wrapper(
|
|
395
|
-
sandbox.create,
|
|
396
|
-
)
|
|
397
294
|
self.list = async_to_raw_response_wrapper(
|
|
398
295
|
sandbox.list,
|
|
399
296
|
)
|
|
@@ -409,9 +306,6 @@ class SandboxResourceWithStreamingResponse:
|
|
|
409
306
|
def __init__(self, sandbox: SandboxResource) -> None:
|
|
410
307
|
self._sandbox = sandbox
|
|
411
308
|
|
|
412
|
-
self.create = to_streamed_response_wrapper(
|
|
413
|
-
sandbox.create,
|
|
414
|
-
)
|
|
415
309
|
self.list = to_streamed_response_wrapper(
|
|
416
310
|
sandbox.list,
|
|
417
311
|
)
|
|
@@ -427,9 +321,6 @@ class AsyncSandboxResourceWithStreamingResponse:
|
|
|
427
321
|
def __init__(self, sandbox: AsyncSandboxResource) -> None:
|
|
428
322
|
self._sandbox = sandbox
|
|
429
323
|
|
|
430
|
-
self.create = async_to_streamed_response_wrapper(
|
|
431
|
-
sandbox.create,
|
|
432
|
-
)
|
|
433
324
|
self.list = async_to_streamed_response_wrapper(
|
|
434
325
|
sandbox.list,
|
|
435
326
|
)
|
structify/resources/sessions.py
CHANGED
|
@@ -483,6 +483,7 @@ class SessionsResource(SyncAPIResource):
|
|
|
483
483
|
self,
|
|
484
484
|
node_id: str,
|
|
485
485
|
*,
|
|
486
|
+
operation: Literal["tag", "pdf", "web", "match"],
|
|
486
487
|
row_count: int,
|
|
487
488
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
488
489
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -506,7 +507,11 @@ class SessionsResource(SyncAPIResource):
|
|
|
506
507
|
return self._post(
|
|
507
508
|
f"/sessions/nodes/{node_id}/request_confirmation",
|
|
508
509
|
body=maybe_transform(
|
|
509
|
-
{
|
|
510
|
+
{
|
|
511
|
+
"operation": operation,
|
|
512
|
+
"row_count": row_count,
|
|
513
|
+
},
|
|
514
|
+
session_request_confirmation_params.SessionRequestConfirmationParams,
|
|
510
515
|
),
|
|
511
516
|
options=make_request_options(
|
|
512
517
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
@@ -1145,6 +1150,7 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
1145
1150
|
self,
|
|
1146
1151
|
node_id: str,
|
|
1147
1152
|
*,
|
|
1153
|
+
operation: Literal["tag", "pdf", "web", "match"],
|
|
1148
1154
|
row_count: int,
|
|
1149
1155
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1150
1156
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -1168,7 +1174,11 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
1168
1174
|
return await self._post(
|
|
1169
1175
|
f"/sessions/nodes/{node_id}/request_confirmation",
|
|
1170
1176
|
body=await async_maybe_transform(
|
|
1171
|
-
{
|
|
1177
|
+
{
|
|
1178
|
+
"operation": operation,
|
|
1179
|
+
"row_count": row_count,
|
|
1180
|
+
},
|
|
1181
|
+
session_request_confirmation_params.SessionRequestConfirmationParams,
|
|
1172
1182
|
),
|
|
1173
1183
|
options=make_request_options(
|
|
1174
1184
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
structify/types/__init__.py
CHANGED
|
@@ -125,7 +125,6 @@ from .knowledge_graph_param import KnowledgeGraphParam as KnowledgeGraphParam
|
|
|
125
125
|
from .list_members_response import ListMembersResponse as ListMembersResponse
|
|
126
126
|
from .llm_information_store import LlmInformationStore as LlmInformationStore
|
|
127
127
|
from .project_update_params import ProjectUpdateParams as ProjectUpdateParams
|
|
128
|
-
from .sandbox_create_params import SandboxCreateParams as SandboxCreateParams
|
|
129
128
|
from .sandbox_list_response import SandboxListResponse as SandboxListResponse
|
|
130
129
|
from .update_table_response import UpdateTableResponse as UpdateTableResponse
|
|
131
130
|
from .workflow_session_edge import WorkflowSessionEdge as WorkflowSessionEdge
|
|
@@ -17,18 +17,22 @@ class AdminSandbox(BaseModel):
|
|
|
17
17
|
|
|
18
18
|
created_at: datetime
|
|
19
19
|
|
|
20
|
+
provider: Literal["modal", "daytona"]
|
|
21
|
+
|
|
20
22
|
sandbox_type: SandboxType
|
|
21
23
|
|
|
22
24
|
status: Literal["alive", "terminated"]
|
|
23
25
|
|
|
24
26
|
updated_at: datetime
|
|
25
27
|
|
|
28
|
+
api_url: Optional[str] = None
|
|
29
|
+
|
|
26
30
|
chat_session_id: Optional[str] = None
|
|
27
31
|
|
|
28
32
|
exploration_run_id: Optional[str] = None
|
|
29
33
|
|
|
30
34
|
latest_node: Optional[str] = None
|
|
31
35
|
|
|
32
|
-
|
|
36
|
+
provider_id: Optional[str] = None
|
|
33
37
|
|
|
34
|
-
|
|
38
|
+
tunnel_url: Optional[str] = None
|
structify/types/sandbox.py
CHANGED
|
@@ -16,14 +16,18 @@ class Sandbox(BaseModel):
|
|
|
16
16
|
|
|
17
17
|
created_at: datetime
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
provider: Literal["modal", "daytona"]
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
provider_id: str
|
|
22
22
|
|
|
23
23
|
status: Literal["alive", "terminated"]
|
|
24
24
|
|
|
25
|
+
tunnel_url: str
|
|
26
|
+
|
|
25
27
|
updated_at: datetime
|
|
26
28
|
|
|
29
|
+
api_url: Optional[str] = None
|
|
30
|
+
|
|
27
31
|
latest_node: Optional[str] = None
|
|
28
32
|
|
|
29
33
|
session_id: Optional[str] = None
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing_extensions import Required, TypedDict
|
|
5
|
+
from typing_extensions import Literal, Required, TypedDict
|
|
6
6
|
|
|
7
7
|
__all__ = ["SessionRequestConfirmationParams"]
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class SessionRequestConfirmationParams(TypedDict, total=False):
|
|
11
|
+
operation: Required[Literal["tag", "pdf", "web", "match"]]
|
|
12
|
+
|
|
11
13
|
row_count: Required[int]
|
structify/types/team.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: structifyai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.176.0
|
|
4
4
|
Summary: The official Python library for the structify API
|
|
5
5
|
Project-URL: Homepage, https://github.com/StructifyAI/structify-python
|
|
6
6
|
Project-URL: Repository, https://github.com/StructifyAI/structify-python
|
|
@@ -11,7 +11,7 @@ structify/_resource.py,sha256=tJi4pDQooQZ_zJwEwrLj-U-ye2hC-cbmr1GzIwCT10Y,1118
|
|
|
11
11
|
structify/_response.py,sha256=RuNhMDiZUdPqEbmFJHDVI4FMPDszk8QjK9LVWm1Fagk,28806
|
|
12
12
|
structify/_streaming.py,sha256=n4C9M7ITmANYn9LaWHNoqJdIIyF7svLco2qst7u3M7U,10233
|
|
13
13
|
structify/_types.py,sha256=jj4p-m3vpUma0AdhPWIaljHZXeb4RKnrAusjVdpDy5Y,7597
|
|
14
|
-
structify/_version.py,sha256=
|
|
14
|
+
structify/_version.py,sha256=C-z2ahCT3LQNv2ig26SHc5WH_7-dvQp792tmp9wsHn4,163
|
|
15
15
|
structify/pagination.py,sha256=ycybhWcpKk4ztsMcCA6C0WZiJejGrSx6bSr8LLskJUY,4346
|
|
16
16
|
structify/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
structify/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -42,10 +42,10 @@ structify/resources/nango.py,sha256=Zl0M1XhlVe61jHVd-SdYI9uEbEhIRmskvlk7Xp0Lh8g,
|
|
|
42
42
|
structify/resources/polars.py,sha256=KFeiRPCVGIssbFdTnGtTUEXNW46j6nHzmHN5rPeqhRA,59995
|
|
43
43
|
structify/resources/projects.py,sha256=YDikBDB9D1EXyZ2GyRx4GlpQ83snw51YlNuU1sLHqho,14117
|
|
44
44
|
structify/resources/public_sessions.py,sha256=_JmssE0MMjeGdxT0FWtrkcceSV4skeEkVGYeO2FkJes,9976
|
|
45
|
-
structify/resources/sandbox.py,sha256=
|
|
45
|
+
structify/resources/sandbox.py,sha256=KgpZ623G6T_3_oovCgjlxO81M63NanMBAezVDdesOCc,12807
|
|
46
46
|
structify/resources/scrape.py,sha256=vAEjjOqH0gVOlEs_JvHLMQ-W9zfF28vwdm45CCO2bSs,12119
|
|
47
47
|
structify/resources/server.py,sha256=39G3yhj3NYWgnLq0PdS86lwDvXK6MIWAIl7G0ZLMJro,4934
|
|
48
|
-
structify/resources/sessions.py,sha256=
|
|
48
|
+
structify/resources/sessions.py,sha256=N_ilELx5tjeng3Lw6Laa-y548QegkEN7tZFuhopoWiE,66179
|
|
49
49
|
structify/resources/slack.py,sha256=CSMW3Eo-XRjISvNOgAcGyBdnmI9SdkQplE0P0lqTnjM,13082
|
|
50
50
|
structify/resources/sources.py,sha256=K5jLPKu3LNH5vKL9V1NQlHaG8UI982H74enN_cjdf-0,13181
|
|
51
51
|
structify/resources/structure.py,sha256=jXcVdUuNc6Q-HwUhSDcsJONbBqRf_FcPAjNtjXYxrdo,33124
|
|
@@ -77,7 +77,7 @@ structify/resources/user/__init__.py,sha256=vkGsM7uGlBXVVwuEZlICVLlIY3F75n_MIMpm
|
|
|
77
77
|
structify/resources/user/api_keys.py,sha256=LgKvDGkHPGIumWmEsPCA1XYAKNuRN48nqG6anv8AVHE,14331
|
|
78
78
|
structify/resources/user/stripe.py,sha256=MazkGQ5VuNY7TxMPXxJULBVerMGmOXaEcXpfQsUYoNs,13574
|
|
79
79
|
structify/resources/user/user.py,sha256=Hk8D5KB8in-A9eJSYFIosILz4HgSWDwDDAVIQeQ8Sew,25411
|
|
80
|
-
structify/types/__init__.py,sha256
|
|
80
|
+
structify/types/__init__.py,sha256=iysU4RCVpcamOqJTXjmk3wd4nFykazAxUpueJF3ONCw,28167
|
|
81
81
|
structify/types/accept_invitation_response.py,sha256=hWIn0Sscg7U0uOqoZA5SG8ENZQuM0tsbgOlrJbcW37s,260
|
|
82
82
|
structify/types/add_member_response.py,sha256=_YjqwGpsfdR9Dw6SAQ99TveFSD8Hov1IjVPMH2KC3CM,882
|
|
83
83
|
structify/types/admin_grant_access_response.py,sha256=xCPdmejgZs1oXOsfgbW-cYKZa8getHRotRnsCav5QPU,390
|
|
@@ -299,8 +299,7 @@ structify/types/relationship_merge_strategy.py,sha256=NuGqglfBplohE6SInMgDcv3VeH
|
|
|
299
299
|
structify/types/relationship_merge_strategy_param.py,sha256=MGuGW7nOUtOGhSTKKFPCOf_RYaTOCOlYqxj7cF3BenE,1291
|
|
300
300
|
structify/types/relationship_param.py,sha256=IdyrBxiNpg-6iUMmPdB0SMs3d8ZQzJHzGQCtEZN5RAk,418
|
|
301
301
|
structify/types/remove_member_response.py,sha256=G4_HFunfGePaEAl7WXpKXMFz9_09LK2wOQjZ_IY2OlM,214
|
|
302
|
-
structify/types/sandbox.py,sha256=
|
|
303
|
-
structify/types/sandbox_create_params.py,sha256=By-yJ8hmYodIUrPY-1Kz6vd1YPAMnZkl6nFuwX1FRdE,509
|
|
302
|
+
structify/types/sandbox.py,sha256=AjZzTcArrDHSqTpO4SzVlJA1y5VOxbLX9T9caZJXDl8,599
|
|
304
303
|
structify/types/sandbox_get_params.py,sha256=VWKzOTnMERaTlR4d3pnUgvOmz7xd9XuUZT3-nkjgdYI,406
|
|
305
304
|
structify/types/sandbox_list_response.py,sha256=e75FANom1TQzkEEr_bJpccrPwzqX-L9p9qbGrHnl-mY,264
|
|
306
305
|
structify/types/sandbox_update_status_params.py,sha256=tKbys3xeWDNbbjUyAUEdeCmcdZHDIgyYZScl-QvHgow,299
|
|
@@ -321,7 +320,7 @@ structify/types/session_get_node_progress_response.py,sha256=cmQMtCmPoZWcls5qAc9
|
|
|
321
320
|
structify/types/session_kill_jobs_params.py,sha256=AUtrh9WAJVEDWzq4eJpoDl9D5V3OJ2wgc10xGV14H1E,310
|
|
322
321
|
structify/types/session_kill_jobs_response.py,sha256=nv-X10icEzOsfQWGlNbmEG4ZcTi0v9phBXPlqGLMOUg,272
|
|
323
322
|
structify/types/session_mark_errored_params.py,sha256=h9AKahlA9zPuAintBt46CtFmYOwC0FHBKo2S095XkNA,479
|
|
324
|
-
structify/types/session_request_confirmation_params.py,sha256=
|
|
323
|
+
structify/types/session_request_confirmation_params.py,sha256=M_SxEfbod-EdeAE5CQ1h82NSvhiCZbBAyNiHrtscazs,389
|
|
325
324
|
structify/types/session_update_node_params.py,sha256=kuPrrAdMs2H6ikDKsUkIWKsPcvNnkBAj2bTeXNNF9B4,538
|
|
326
325
|
structify/types/session_update_node_progress_params.py,sha256=Ow_oam4MR73s_Cvon0RNM5dk66NTq9IVODKItUuVDMw,430
|
|
327
326
|
structify/types/session_upload_dashboard_layout_params.py,sha256=JKO4UHdIvnpco0zCDvXiBsoCpsFNgt_8uOCk0mREiZs,392
|
|
@@ -354,7 +353,7 @@ structify/types/structure_run_async_response.py,sha256=RTK4Vh2A-51560FjLrRJiqKNg
|
|
|
354
353
|
structify/types/survey_submission_response.py,sha256=OTjhVLOGQWATs7VEsn1_OVNxu5oKOS_WwSu82UhmtbE,240
|
|
355
354
|
structify/types/table.py,sha256=Zx9V6jSUeCYAOn3ghA5xejTXVaplVm6Mew_qOVHxkIY,915
|
|
356
355
|
structify/types/table_param.py,sha256=l3Xfw-bNgtgDwAtHw7pQLUReAmVz2SdHXedCGhvD-kA,1047
|
|
357
|
-
structify/types/team.py,sha256=
|
|
356
|
+
structify/types/team.py,sha256=A8IKadmDAYUEbv0TZacN7PXx_dw_AmyN_ThjGuIoDuc,688
|
|
358
357
|
structify/types/team_accept_invitation_params.py,sha256=szwKVdKklkjcFIjTwFJFnpojwI1S9gykppaHMGMa45k,300
|
|
359
358
|
structify/types/team_add_member_params.py,sha256=Tam3Nsx-ZyAANjGVOkrGpdmakiNd-q8WopnZk6pPVJY,349
|
|
360
359
|
structify/types/team_create_link_code_params.py,sha256=IXOQuTc04EFq549vNBwg2IxFzk_x10H3kCnXDBGcMbY,298
|
|
@@ -408,7 +407,7 @@ structify/types/admin/__init__.py,sha256=sI2YUoXg3jsKmOp7cu3j_z2PoGhwQ5x7aTf822d
|
|
|
408
407
|
structify/types/admin/admin_dataset_return.py,sha256=hRSCIBTiaCb1O1lcxsKyxnzGiYuIUEvnMxXkNbyj4_U,495
|
|
409
408
|
structify/types/admin/admin_delete_jobs_response.py,sha256=c3IO7bCqAoEN9PHYM88gO0JT0e6hCaHyIBtxC84Tw38,225
|
|
410
409
|
structify/types/admin/admin_list_jobs_response.py,sha256=27IoyuBSaBJPnSSyiZt3q5dHfeyBzrGtnq7nGvJcapM,4867
|
|
411
|
-
structify/types/admin/admin_sandbox.py,sha256=
|
|
410
|
+
structify/types/admin/admin_sandbox.py,sha256=Wn1TwugdP-eF2usCaTivYxwSB5OXI6gfXGg8XKROstk,761
|
|
412
411
|
structify/types/admin/admin_teams_list_response.py,sha256=FDrXxx3dQKuHuLfByYzaS5EzZYkZAtyJH7E7t6UoUX4,1167
|
|
413
412
|
structify/types/admin/cancel_subscription_response.py,sha256=ph43hCKHtpjp2eSV9X9eitJA-mpnrRdjwe8KxPLJdKY,246
|
|
414
413
|
structify/types/admin/chat_template_create_params.py,sha256=GCP3Uhb1_wPfaC4iFkQF2oTualQhEUAajblKymgsQuc,459
|
|
@@ -491,7 +490,7 @@ structify/types/user/stripe_create_portal_session_params.py,sha256=5AYRC8z_SlKmd
|
|
|
491
490
|
structify/types/user/stripe_create_session_params.py,sha256=DFcNLNzEWeupkGQ9J5PafsuL_bIU9cLEIhAmFPsRlfo,387
|
|
492
491
|
structify/types/user/stripe_create_subscription_params.py,sha256=d8HfiC94gJbG-cC_WvBz6xYCvxKJO_EP2yyVmVvufrU,424
|
|
493
492
|
structify/types/user/subscription_plan.py,sha256=qKJMM-zPpYolYC1DlypOwPpxlyJBLkQqFK_0VpwktJs,222
|
|
494
|
-
structifyai-1.
|
|
495
|
-
structifyai-1.
|
|
496
|
-
structifyai-1.
|
|
497
|
-
structifyai-1.
|
|
493
|
+
structifyai-1.176.0.dist-info/METADATA,sha256=P2YpGpNFJ4qaAt0F_WVLMWPKD1kdOAkob-3wpnIIYPs,16399
|
|
494
|
+
structifyai-1.176.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
495
|
+
structifyai-1.176.0.dist-info/licenses/LICENSE,sha256=9CwgrmGz3rZSTT-KqGc1gua-7g8B4ThTgMtUgPALh5c,11339
|
|
496
|
+
structifyai-1.176.0.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
from typing import Optional
|
|
6
|
-
from typing_extensions import Literal, Required, TypedDict
|
|
7
|
-
|
|
8
|
-
__all__ = ["SandboxCreateParams"]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class SandboxCreateParams(TypedDict, total=False):
|
|
12
|
-
chat_session_id: Required[str]
|
|
13
|
-
|
|
14
|
-
modal_id: Required[str]
|
|
15
|
-
|
|
16
|
-
modal_url: Required[str]
|
|
17
|
-
|
|
18
|
-
status: Required[Literal["alive", "terminated"]]
|
|
19
|
-
|
|
20
|
-
latest_node: Optional[str]
|
|
21
|
-
|
|
22
|
-
session_id: Optional[str]
|
|
File without changes
|
|
File without changes
|