groundx 2.6.0__py3-none-any.whl → 2.6.3__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.
groundx/__init__.py CHANGED
@@ -72,12 +72,12 @@ from .types import (
72
72
  WorkflowsResponse,
73
73
  )
74
74
  from .errors import BadRequestError, UnauthorizedError
75
- from . import buckets, customer, documents, groups, health, search, workflow
75
+ from . import buckets, customer, documents, groups, health, search, workflows
76
76
  from .environment import GroundXEnvironment
77
77
  from .ingest import AsyncGroundX, GroundX
78
78
  from .search import SearchContentRequestId
79
79
  from .version import __version__
80
- from .workflow import WorkflowGetRequestId
80
+ from .workflows import WorkflowsGetRequestId
81
81
 
82
82
  __all__ = [
83
83
  "AsyncGroundX",
@@ -139,7 +139,6 @@ __all__ = [
139
139
  "WorkflowEngine",
140
140
  "WorkflowEngineReasoningEffort",
141
141
  "WorkflowEngineService",
142
- "WorkflowGetRequestId",
143
142
  "WorkflowPrompt",
144
143
  "WorkflowPromptGroup",
145
144
  "WorkflowPromptRole",
@@ -153,6 +152,7 @@ __all__ = [
153
152
  "WorkflowStepsSearchQuery",
154
153
  "WorkflowStepsSectInstruct",
155
154
  "WorkflowStepsSectSummary",
155
+ "WorkflowsGetRequestId",
156
156
  "WorkflowsResponse",
157
157
  "__version__",
158
158
  "buckets",
@@ -161,5 +161,5 @@ __all__ = [
161
161
  "groups",
162
162
  "health",
163
163
  "search",
164
- "workflow",
164
+ "workflows",
165
165
  ]
groundx/client.py CHANGED
@@ -11,7 +11,7 @@ from .environment import GroundXEnvironment
11
11
  from .groups.client import AsyncGroupsClient, GroupsClient
12
12
  from .health.client import AsyncHealthClient, HealthClient
13
13
  from .search.client import AsyncSearchClient, SearchClient
14
- from .workflow.client import AsyncWorkflowClient, WorkflowClient
14
+ from .workflows.client import AsyncWorkflowsClient, WorkflowsClient
15
15
 
16
16
 
17
17
  class GroundXBase:
@@ -78,7 +78,7 @@ class GroundXBase:
78
78
  self.search = SearchClient(client_wrapper=self._client_wrapper)
79
79
  self.buckets = BucketsClient(client_wrapper=self._client_wrapper)
80
80
  self.groups = GroupsClient(client_wrapper=self._client_wrapper)
81
- self.workflow = WorkflowClient(client_wrapper=self._client_wrapper)
81
+ self.workflows = WorkflowsClient(client_wrapper=self._client_wrapper)
82
82
  self.customer = CustomerClient(client_wrapper=self._client_wrapper)
83
83
  self.health = HealthClient(client_wrapper=self._client_wrapper)
84
84
 
@@ -147,7 +147,7 @@ class AsyncGroundXBase:
147
147
  self.search = AsyncSearchClient(client_wrapper=self._client_wrapper)
148
148
  self.buckets = AsyncBucketsClient(client_wrapper=self._client_wrapper)
149
149
  self.groups = AsyncGroupsClient(client_wrapper=self._client_wrapper)
150
- self.workflow = AsyncWorkflowClient(client_wrapper=self._client_wrapper)
150
+ self.workflows = AsyncWorkflowsClient(client_wrapper=self._client_wrapper)
151
151
  self.customer = AsyncCustomerClient(client_wrapper=self._client_wrapper)
152
152
  self.health = AsyncHealthClient(client_wrapper=self._client_wrapper)
153
153
 
@@ -14,10 +14,10 @@ class BaseClientWrapper:
14
14
 
15
15
  def get_headers(self) -> typing.Dict[str, str]:
16
16
  headers: typing.Dict[str, str] = {
17
- "User-Agent": "groundx/2.6.0",
17
+ "User-Agent": "groundx/2.6.3",
18
18
  "X-Fern-Language": "Python",
19
19
  "X-Fern-SDK-Name": "groundx",
20
- "X-Fern-SDK-Version": "2.6.0",
20
+ "X-Fern-SDK-Version": "2.6.3",
21
21
  }
22
22
  headers["X-API-Key"] = self.api_key
23
23
  return headers
@@ -2,6 +2,6 @@
2
2
 
3
3
  # isort: skip_file
4
4
 
5
- from .types import WorkflowGetRequestId
5
+ from .types import WorkflowsGetRequestId
6
6
 
7
- __all__ = ["WorkflowGetRequestId"]
7
+ __all__ = ["WorkflowsGetRequestId"]
@@ -8,25 +8,25 @@ from ..types.message_response import MessageResponse
8
8
  from ..types.workflow_response import WorkflowResponse
9
9
  from ..types.workflow_steps import WorkflowSteps
10
10
  from ..types.workflows_response import WorkflowsResponse
11
- from .raw_client import AsyncRawWorkflowClient, RawWorkflowClient
12
- from .types.workflow_get_request_id import WorkflowGetRequestId
11
+ from .raw_client import AsyncRawWorkflowsClient, RawWorkflowsClient
12
+ from .types.workflows_get_request_id import WorkflowsGetRequestId
13
13
 
14
14
  # this is used as the default value for optional parameters
15
15
  OMIT = typing.cast(typing.Any, ...)
16
16
 
17
17
 
18
- class WorkflowClient:
18
+ class WorkflowsClient:
19
19
  def __init__(self, *, client_wrapper: SyncClientWrapper):
20
- self._raw_client = RawWorkflowClient(client_wrapper=client_wrapper)
20
+ self._raw_client = RawWorkflowsClient(client_wrapper=client_wrapper)
21
21
 
22
22
  @property
23
- def with_raw_response(self) -> RawWorkflowClient:
23
+ def with_raw_response(self) -> RawWorkflowsClient:
24
24
  """
25
25
  Retrieves a raw implementation of this client that returns raw responses.
26
26
 
27
27
  Returns
28
28
  -------
29
- RawWorkflowClient
29
+ RawWorkflowsClient
30
30
  """
31
31
  return self._raw_client
32
32
 
@@ -51,7 +51,7 @@ class WorkflowClient:
51
51
  client = GroundX(
52
52
  api_key="YOUR_API_KEY",
53
53
  )
54
- client.workflow.list()
54
+ client.workflows.list()
55
55
  """
56
56
  _response = self._raw_client.list(request_options=request_options)
57
57
  return _response.data
@@ -88,12 +88,12 @@ class WorkflowClient:
88
88
  client = GroundX(
89
89
  api_key="YOUR_API_KEY",
90
90
  )
91
- client.workflow.create()
91
+ client.workflows.create()
92
92
  """
93
93
  _response = self._raw_client.create(name=name, steps=steps, request_options=request_options)
94
94
  return _response.data
95
95
 
96
- def relationship_add_to_account(
96
+ def add_to_account(
97
97
  self, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
98
98
  ) -> MessageResponse:
99
99
  """
@@ -119,18 +119,14 @@ class WorkflowClient:
119
119
  client = GroundX(
120
120
  api_key="YOUR_API_KEY",
121
121
  )
122
- client.workflow.relationship_add_to_account(
122
+ client.workflows.add_to_account(
123
123
  workflow_id="workflowId",
124
124
  )
125
125
  """
126
- _response = self._raw_client.relationship_add_to_account(
127
- workflow_id=workflow_id, request_options=request_options
128
- )
126
+ _response = self._raw_client.add_to_account(workflow_id=workflow_id, request_options=request_options)
129
127
  return _response.data
130
128
 
131
- def relationship_remove_from_account(
132
- self, *, request_options: typing.Optional[RequestOptions] = None
133
- ) -> MessageResponse:
129
+ def remove_from_account(self, *, request_options: typing.Optional[RequestOptions] = None) -> MessageResponse:
134
130
  """
135
131
  Removes the assigned workflow from the customer account.
136
132
 
@@ -151,12 +147,12 @@ class WorkflowClient:
151
147
  client = GroundX(
152
148
  api_key="YOUR_API_KEY",
153
149
  )
154
- client.workflow.relationship_remove_from_account()
150
+ client.workflows.remove_from_account()
155
151
  """
156
- _response = self._raw_client.relationship_remove_from_account(request_options=request_options)
152
+ _response = self._raw_client.remove_from_account(request_options=request_options)
157
153
  return _response.data
158
154
 
159
- def relationship_add_to_id(
155
+ def add_to_id(
160
156
  self, id: int, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
161
157
  ) -> MessageResponse:
162
158
  """
@@ -185,19 +181,15 @@ class WorkflowClient:
185
181
  client = GroundX(
186
182
  api_key="YOUR_API_KEY",
187
183
  )
188
- client.workflow.relationship_add_to_id(
184
+ client.workflows.add_to_id(
189
185
  id=1,
190
186
  workflow_id="workflowId",
191
187
  )
192
188
  """
193
- _response = self._raw_client.relationship_add_to_id(
194
- id, workflow_id=workflow_id, request_options=request_options
195
- )
189
+ _response = self._raw_client.add_to_id(id, workflow_id=workflow_id, request_options=request_options)
196
190
  return _response.data
197
191
 
198
- def relationship_remove_from_id(
199
- self, id: int, *, request_options: typing.Optional[RequestOptions] = None
200
- ) -> MessageResponse:
192
+ def remove_from_id(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> MessageResponse:
201
193
  """
202
194
  Removes the assigned workflow from the customer account.
203
195
 
@@ -221,22 +213,22 @@ class WorkflowClient:
221
213
  client = GroundX(
222
214
  api_key="YOUR_API_KEY",
223
215
  )
224
- client.workflow.relationship_remove_from_id(
216
+ client.workflows.remove_from_id(
225
217
  id=1,
226
218
  )
227
219
  """
228
- _response = self._raw_client.relationship_remove_from_id(id, request_options=request_options)
220
+ _response = self._raw_client.remove_from_id(id, request_options=request_options)
229
221
  return _response.data
230
222
 
231
223
  def get(
232
- self, id: WorkflowGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
224
+ self, id: WorkflowsGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
233
225
  ) -> WorkflowResponse:
234
226
  """
235
227
  look up a specific workflow by groupId, bucketId, or workflowId.
236
228
 
237
229
  Parameters
238
230
  ----------
239
- id : WorkflowGetRequestId
231
+ id : WorkflowsGetRequestId
240
232
  The id of the group, bucket, or workflow to look up.
241
233
 
242
234
  request_options : typing.Optional[RequestOptions]
@@ -254,7 +246,7 @@ class WorkflowClient:
254
246
  client = GroundX(
255
247
  api_key="YOUR_API_KEY",
256
248
  )
257
- client.workflow.get(
249
+ client.workflows.get(
258
250
  id=1,
259
251
  )
260
252
  """
@@ -301,7 +293,7 @@ class WorkflowClient:
301
293
  client = GroundX(
302
294
  api_key="YOUR_API_KEY",
303
295
  )
304
- client.workflow.update(
296
+ client.workflows.update(
305
297
  id="id",
306
298
  workflow_id="workflowId",
307
299
  )
@@ -335,7 +327,7 @@ class WorkflowClient:
335
327
  client = GroundX(
336
328
  api_key="YOUR_API_KEY",
337
329
  )
338
- client.workflow.delete(
330
+ client.workflows.delete(
339
331
  id="id",
340
332
  )
341
333
  """
@@ -343,18 +335,18 @@ class WorkflowClient:
343
335
  return _response.data
344
336
 
345
337
 
346
- class AsyncWorkflowClient:
338
+ class AsyncWorkflowsClient:
347
339
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
348
- self._raw_client = AsyncRawWorkflowClient(client_wrapper=client_wrapper)
340
+ self._raw_client = AsyncRawWorkflowsClient(client_wrapper=client_wrapper)
349
341
 
350
342
  @property
351
- def with_raw_response(self) -> AsyncRawWorkflowClient:
343
+ def with_raw_response(self) -> AsyncRawWorkflowsClient:
352
344
  """
353
345
  Retrieves a raw implementation of this client that returns raw responses.
354
346
 
355
347
  Returns
356
348
  -------
357
- AsyncRawWorkflowClient
349
+ AsyncRawWorkflowsClient
358
350
  """
359
351
  return self._raw_client
360
352
 
@@ -384,7 +376,7 @@ class AsyncWorkflowClient:
384
376
 
385
377
 
386
378
  async def main() -> None:
387
- await client.workflow.list()
379
+ await client.workflows.list()
388
380
 
389
381
 
390
382
  asyncio.run(main())
@@ -429,7 +421,7 @@ class AsyncWorkflowClient:
429
421
 
430
422
 
431
423
  async def main() -> None:
432
- await client.workflow.create()
424
+ await client.workflows.create()
433
425
 
434
426
 
435
427
  asyncio.run(main())
@@ -437,7 +429,7 @@ class AsyncWorkflowClient:
437
429
  _response = await self._raw_client.create(name=name, steps=steps, request_options=request_options)
438
430
  return _response.data
439
431
 
440
- async def relationship_add_to_account(
432
+ async def add_to_account(
441
433
  self, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
442
434
  ) -> MessageResponse:
443
435
  """
@@ -468,21 +460,17 @@ class AsyncWorkflowClient:
468
460
 
469
461
 
470
462
  async def main() -> None:
471
- await client.workflow.relationship_add_to_account(
463
+ await client.workflows.add_to_account(
472
464
  workflow_id="workflowId",
473
465
  )
474
466
 
475
467
 
476
468
  asyncio.run(main())
477
469
  """
478
- _response = await self._raw_client.relationship_add_to_account(
479
- workflow_id=workflow_id, request_options=request_options
480
- )
470
+ _response = await self._raw_client.add_to_account(workflow_id=workflow_id, request_options=request_options)
481
471
  return _response.data
482
472
 
483
- async def relationship_remove_from_account(
484
- self, *, request_options: typing.Optional[RequestOptions] = None
485
- ) -> MessageResponse:
473
+ async def remove_from_account(self, *, request_options: typing.Optional[RequestOptions] = None) -> MessageResponse:
486
474
  """
487
475
  Removes the assigned workflow from the customer account.
488
476
 
@@ -508,15 +496,15 @@ class AsyncWorkflowClient:
508
496
 
509
497
 
510
498
  async def main() -> None:
511
- await client.workflow.relationship_remove_from_account()
499
+ await client.workflows.remove_from_account()
512
500
 
513
501
 
514
502
  asyncio.run(main())
515
503
  """
516
- _response = await self._raw_client.relationship_remove_from_account(request_options=request_options)
504
+ _response = await self._raw_client.remove_from_account(request_options=request_options)
517
505
  return _response.data
518
506
 
519
- async def relationship_add_to_id(
507
+ async def add_to_id(
520
508
  self, id: int, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
521
509
  ) -> MessageResponse:
522
510
  """
@@ -550,7 +538,7 @@ class AsyncWorkflowClient:
550
538
 
551
539
 
552
540
  async def main() -> None:
553
- await client.workflow.relationship_add_to_id(
541
+ await client.workflows.add_to_id(
554
542
  id=1,
555
543
  workflow_id="workflowId",
556
544
  )
@@ -558,12 +546,10 @@ class AsyncWorkflowClient:
558
546
 
559
547
  asyncio.run(main())
560
548
  """
561
- _response = await self._raw_client.relationship_add_to_id(
562
- id, workflow_id=workflow_id, request_options=request_options
563
- )
549
+ _response = await self._raw_client.add_to_id(id, workflow_id=workflow_id, request_options=request_options)
564
550
  return _response.data
565
551
 
566
- async def relationship_remove_from_id(
552
+ async def remove_from_id(
567
553
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
568
554
  ) -> MessageResponse:
569
555
  """
@@ -594,25 +580,25 @@ class AsyncWorkflowClient:
594
580
 
595
581
 
596
582
  async def main() -> None:
597
- await client.workflow.relationship_remove_from_id(
583
+ await client.workflows.remove_from_id(
598
584
  id=1,
599
585
  )
600
586
 
601
587
 
602
588
  asyncio.run(main())
603
589
  """
604
- _response = await self._raw_client.relationship_remove_from_id(id, request_options=request_options)
590
+ _response = await self._raw_client.remove_from_id(id, request_options=request_options)
605
591
  return _response.data
606
592
 
607
593
  async def get(
608
- self, id: WorkflowGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
594
+ self, id: WorkflowsGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
609
595
  ) -> WorkflowResponse:
610
596
  """
611
597
  look up a specific workflow by groupId, bucketId, or workflowId.
612
598
 
613
599
  Parameters
614
600
  ----------
615
- id : WorkflowGetRequestId
601
+ id : WorkflowsGetRequestId
616
602
  The id of the group, bucket, or workflow to look up.
617
603
 
618
604
  request_options : typing.Optional[RequestOptions]
@@ -635,7 +621,7 @@ class AsyncWorkflowClient:
635
621
 
636
622
 
637
623
  async def main() -> None:
638
- await client.workflow.get(
624
+ await client.workflows.get(
639
625
  id=1,
640
626
  )
641
627
 
@@ -690,7 +676,7 @@ class AsyncWorkflowClient:
690
676
 
691
677
 
692
678
  async def main() -> None:
693
- await client.workflow.update(
679
+ await client.workflows.update(
694
680
  id="id",
695
681
  workflow_id="workflowId",
696
682
  )
@@ -732,7 +718,7 @@ class AsyncWorkflowClient:
732
718
 
733
719
 
734
720
  async def main() -> None:
735
- await client.workflow.delete(
721
+ await client.workflows.delete(
736
722
  id="id",
737
723
  )
738
724
 
@@ -14,13 +14,13 @@ from ..types.message_response import MessageResponse
14
14
  from ..types.workflow_response import WorkflowResponse
15
15
  from ..types.workflow_steps import WorkflowSteps
16
16
  from ..types.workflows_response import WorkflowsResponse
17
- from .types.workflow_get_request_id import WorkflowGetRequestId
17
+ from .types.workflows_get_request_id import WorkflowsGetRequestId
18
18
 
19
19
  # this is used as the default value for optional parameters
20
20
  OMIT = typing.cast(typing.Any, ...)
21
21
 
22
22
 
23
- class RawWorkflowClient:
23
+ class RawWorkflowsClient:
24
24
  def __init__(self, *, client_wrapper: SyncClientWrapper):
25
25
  self._client_wrapper = client_wrapper
26
26
 
@@ -113,7 +113,7 @@ class RawWorkflowClient:
113
113
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
114
114
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
115
115
 
116
- def relationship_add_to_account(
116
+ def add_to_account(
117
117
  self, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
118
118
  ) -> HttpResponse[MessageResponse]:
119
119
  """
@@ -159,7 +159,7 @@ class RawWorkflowClient:
159
159
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
160
160
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
161
161
 
162
- def relationship_remove_from_account(
162
+ def remove_from_account(
163
163
  self, *, request_options: typing.Optional[RequestOptions] = None
164
164
  ) -> HttpResponse[MessageResponse]:
165
165
  """
@@ -195,7 +195,7 @@ class RawWorkflowClient:
195
195
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
196
196
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
197
197
 
198
- def relationship_add_to_id(
198
+ def add_to_id(
199
199
  self, id: int, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
200
200
  ) -> HttpResponse[MessageResponse]:
201
201
  """
@@ -244,7 +244,7 @@ class RawWorkflowClient:
244
244
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
245
245
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
246
246
 
247
- def relationship_remove_from_id(
247
+ def remove_from_id(
248
248
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
249
249
  ) -> HttpResponse[MessageResponse]:
250
250
  """
@@ -284,14 +284,14 @@ class RawWorkflowClient:
284
284
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
285
285
 
286
286
  def get(
287
- self, id: WorkflowGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
287
+ self, id: WorkflowsGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
288
288
  ) -> HttpResponse[WorkflowResponse]:
289
289
  """
290
290
  look up a specific workflow by groupId, bucketId, or workflowId.
291
291
 
292
292
  Parameters
293
293
  ----------
294
- id : WorkflowGetRequestId
294
+ id : WorkflowsGetRequestId
295
295
  The id of the group, bucket, or workflow to look up.
296
296
 
297
297
  request_options : typing.Optional[RequestOptions]
@@ -426,7 +426,7 @@ class RawWorkflowClient:
426
426
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
427
427
 
428
428
 
429
- class AsyncRawWorkflowClient:
429
+ class AsyncRawWorkflowsClient:
430
430
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
431
431
  self._client_wrapper = client_wrapper
432
432
 
@@ -521,7 +521,7 @@ class AsyncRawWorkflowClient:
521
521
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
522
522
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
523
523
 
524
- async def relationship_add_to_account(
524
+ async def add_to_account(
525
525
  self, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
526
526
  ) -> AsyncHttpResponse[MessageResponse]:
527
527
  """
@@ -567,7 +567,7 @@ class AsyncRawWorkflowClient:
567
567
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
568
568
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
569
569
 
570
- async def relationship_remove_from_account(
570
+ async def remove_from_account(
571
571
  self, *, request_options: typing.Optional[RequestOptions] = None
572
572
  ) -> AsyncHttpResponse[MessageResponse]:
573
573
  """
@@ -603,7 +603,7 @@ class AsyncRawWorkflowClient:
603
603
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
604
604
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
605
605
 
606
- async def relationship_add_to_id(
606
+ async def add_to_id(
607
607
  self, id: int, *, workflow_id: str, request_options: typing.Optional[RequestOptions] = None
608
608
  ) -> AsyncHttpResponse[MessageResponse]:
609
609
  """
@@ -652,7 +652,7 @@ class AsyncRawWorkflowClient:
652
652
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
653
653
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
654
654
 
655
- async def relationship_remove_from_id(
655
+ async def remove_from_id(
656
656
  self, id: int, *, request_options: typing.Optional[RequestOptions] = None
657
657
  ) -> AsyncHttpResponse[MessageResponse]:
658
658
  """
@@ -692,14 +692,14 @@ class AsyncRawWorkflowClient:
692
692
  raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
693
693
 
694
694
  async def get(
695
- self, id: WorkflowGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
695
+ self, id: WorkflowsGetRequestId, *, request_options: typing.Optional[RequestOptions] = None
696
696
  ) -> AsyncHttpResponse[WorkflowResponse]:
697
697
  """
698
698
  look up a specific workflow by groupId, bucketId, or workflowId.
699
699
 
700
700
  Parameters
701
701
  ----------
702
- id : WorkflowGetRequestId
702
+ id : WorkflowsGetRequestId
703
703
  The id of the group, bucket, or workflow to look up.
704
704
 
705
705
  request_options : typing.Optional[RequestOptions]
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # isort: skip_file
4
+
5
+ from .workflows_get_request_id import WorkflowsGetRequestId
6
+
7
+ __all__ = ["WorkflowsGetRequestId"]
@@ -2,4 +2,4 @@
2
2
 
3
3
  import typing
4
4
 
5
- WorkflowGetRequestId = typing.Union[int, str]
5
+ WorkflowsGetRequestId = typing.Union[int, str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: groundx
3
- Version: 2.6.0
3
+ Version: 2.6.3
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -1,11 +1,11 @@
1
- groundx/__init__.py,sha256=YyXRMLgmhBNmIitM02dJ5sfPrUvihf96h9pa4CQqIV4,4124
1
+ groundx/__init__.py,sha256=4J8NWDCfslhhQE1OKHrYQ98bP-EmfPqJlOo6CtGeO1c,4129
2
2
  groundx/buckets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
3
3
  groundx/buckets/client.py,sha256=F1tcqQoqmrC8lQtRZvmXldIdVxIp1LWfdbAfY8SB5sM,11460
4
4
  groundx/buckets/raw_client.py,sha256=T2Ty5obN7eHbaxHGAimzjM8MGOmSOQEckhciyZkzcjE,23873
5
- groundx/client.py,sha256=cG2JMbsF_P8oJNb1dnc9HeGzKlHoJNBpcxXn5C4t5YM,6634
5
+ groundx/client.py,sha256=PksVIgU2pXup9Ewkl7NcLPvQOIhg_Do3cJVGgXqqQjE,6641
6
6
  groundx/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
7
7
  groundx/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
8
- groundx/core/client_wrapper.py,sha256=ptNkchLz-Fcdgpa0dIJHtFbS8SSM0CUlgFIlx4PvDyQ,1822
8
+ groundx/core/client_wrapper.py,sha256=k60nUQUg22U-y88dW1rgM5sq-Y7zKrBPR8BZoDO8gS4,1822
9
9
  groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
10
10
  groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
11
11
  groundx/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -146,12 +146,12 @@ groundx/types/workflow_steps_sect_instruct.py,sha256=EJhl5__qyC1o1-CQh9HL-bwGmWs
146
146
  groundx/types/workflow_steps_sect_summary.py,sha256=76MalXb7GO0m4x-UllrYkkvQbSjx9Qu1WROlxvyNCRU,781
147
147
  groundx/types/workflows_response.py,sha256=lKy6N4r0jTVK2S3mnmTzAvPjkmOl4BTnU2q0k-TbqjQ,597
148
148
  groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
149
- groundx/workflow/__init__.py,sha256=fGf-XTsj0bkp_nV-svtq33R1LwufLe4t_3qsSBTaTT4,161
150
- groundx/workflow/client.py,sha256=X0QECFnzIfS-pqfOgFYqhHp-P3gYXqK-49Shdw_Vwpw,19712
151
- groundx/workflow/raw_client.py,sha256=6nPOvPAmLq3r8fTd7q5_0cvP6BFepU6RGzTnQ2-Ee-w,30895
152
- groundx/workflow/types/__init__.py,sha256=zlK65Gp_dtVFjQmx6QIQfkR-T2w77KMCopzBHuCjfpY,179
153
- groundx/workflow/types/workflow_get_request_id.py,sha256=z7oyA9qhGIc0zkDgD6JaEqLOPcMfwc0NBpzi7uVuDOs,126
154
- groundx-2.6.0.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
155
- groundx-2.6.0.dist-info/METADATA,sha256=USFwTyKAv37imO-1lUUt7X672o_cBiGNNP2RMGHo_Os,5919
156
- groundx-2.6.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
157
- groundx-2.6.0.dist-info/RECORD,,
149
+ groundx/workflows/__init__.py,sha256=qS5TOSfeClFC9oVjYFqCMuNlZOHTcU0cNOrNmDpflQs,163
150
+ groundx/workflows/client.py,sha256=Z6Ua0DGLMAK0s2HtrbJjLCQe2fp96gyXu8BHX4z276c,19304
151
+ groundx/workflows/raw_client.py,sha256=SQ3CBWTIwatEdz1igO-1p-dGrnAHXIliK_ksT8ImWkM,30799
152
+ groundx/workflows/types/__init__.py,sha256=r-3IiPgf480gPstg62dFXecJQNOoTaJzcqul0_8_8DM,182
153
+ groundx/workflows/types/workflows_get_request_id.py,sha256=pGcBQwEQYDxoxBGpACdy3zf1Qc2rjcN3zv-TZXHu9p0,127
154
+ groundx-2.6.3.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
155
+ groundx-2.6.3.dist-info/METADATA,sha256=1rpHjrR0rnvw5E946QjT0xTZDLIbySvcE5VPXGsceaQ,5919
156
+ groundx-2.6.3.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
157
+ groundx-2.6.3.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- # isort: skip_file
4
-
5
- from .workflow_get_request_id import WorkflowGetRequestId
6
-
7
- __all__ = ["WorkflowGetRequestId"]