groundx 2.0.15__py3-none-any.whl → 2.7.7__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 (147) hide show
  1. groundx/__init__.py +73 -21
  2. groundx/buckets/__init__.py +2 -0
  3. groundx/buckets/client.py +55 -388
  4. groundx/buckets/raw_client.py +628 -0
  5. groundx/client.py +22 -21
  6. groundx/core/__init__.py +5 -0
  7. groundx/core/api_error.py +13 -5
  8. groundx/core/client_wrapper.py +4 -3
  9. groundx/core/force_multipart.py +16 -0
  10. groundx/core/http_client.py +76 -32
  11. groundx/core/http_response.py +55 -0
  12. groundx/core/jsonable_encoder.py +0 -1
  13. groundx/core/pydantic_utilities.py +71 -112
  14. groundx/core/serialization.py +7 -3
  15. groundx/csv_splitter.py +64 -0
  16. groundx/customer/__init__.py +2 -0
  17. groundx/customer/client.py +31 -43
  18. groundx/customer/raw_client.py +91 -0
  19. groundx/documents/__init__.py +1 -2
  20. groundx/documents/client.py +455 -953
  21. groundx/documents/raw_client.py +1450 -0
  22. groundx/errors/__init__.py +2 -0
  23. groundx/errors/bad_request_error.py +4 -3
  24. groundx/errors/unauthorized_error.py +4 -3
  25. groundx/extract/__init__.py +48 -0
  26. groundx/extract/agents/__init__.py +7 -0
  27. groundx/extract/agents/agent.py +202 -0
  28. groundx/extract/classes/__init__.py +24 -0
  29. groundx/extract/classes/agent.py +23 -0
  30. groundx/extract/classes/api.py +15 -0
  31. groundx/extract/classes/document.py +338 -0
  32. groundx/extract/classes/field.py +88 -0
  33. groundx/extract/classes/groundx.py +147 -0
  34. groundx/extract/classes/prompt.py +36 -0
  35. groundx/extract/classes/test_document.py +109 -0
  36. groundx/extract/classes/test_field.py +43 -0
  37. groundx/extract/classes/test_groundx.py +223 -0
  38. groundx/extract/classes/test_prompt.py +68 -0
  39. groundx/extract/post_process/__init__.py +7 -0
  40. groundx/extract/post_process/post_process.py +33 -0
  41. groundx/extract/services/.DS_Store +0 -0
  42. groundx/extract/services/__init__.py +14 -0
  43. groundx/extract/services/csv.py +76 -0
  44. groundx/extract/services/logger.py +126 -0
  45. groundx/extract/services/logging_cfg.py +53 -0
  46. groundx/extract/services/ratelimit.py +104 -0
  47. groundx/extract/services/sheets_client.py +160 -0
  48. groundx/extract/services/status.py +197 -0
  49. groundx/extract/services/upload.py +68 -0
  50. groundx/extract/services/upload_minio.py +122 -0
  51. groundx/extract/services/upload_s3.py +91 -0
  52. groundx/extract/services/utility.py +52 -0
  53. groundx/extract/settings/__init__.py +15 -0
  54. groundx/extract/settings/settings.py +212 -0
  55. groundx/extract/settings/test_settings.py +512 -0
  56. groundx/extract/tasks/__init__.py +6 -0
  57. groundx/extract/tasks/utility.py +27 -0
  58. groundx/extract/utility/__init__.py +15 -0
  59. groundx/extract/utility/classes.py +193 -0
  60. groundx/extract/utility/test_utility.py +81 -0
  61. groundx/groups/__init__.py +2 -0
  62. groundx/groups/client.py +63 -550
  63. groundx/groups/raw_client.py +901 -0
  64. groundx/health/__init__.py +2 -0
  65. groundx/health/client.py +35 -101
  66. groundx/health/raw_client.py +193 -0
  67. groundx/ingest.py +771 -0
  68. groundx/search/__init__.py +2 -0
  69. groundx/search/client.py +94 -227
  70. groundx/search/raw_client.py +442 -0
  71. groundx/search/types/__init__.py +2 -0
  72. groundx/types/__init__.py +68 -16
  73. groundx/types/bounding_box_detail.py +4 -4
  74. groundx/types/bucket_detail.py +5 -5
  75. groundx/types/bucket_list_response.py +17 -3
  76. groundx/types/bucket_response.py +3 -3
  77. groundx/types/bucket_update_detail.py +4 -4
  78. groundx/types/bucket_update_response.py +3 -3
  79. groundx/types/customer_detail.py +2 -2
  80. groundx/types/customer_response.py +3 -3
  81. groundx/types/document.py +54 -0
  82. groundx/types/document_detail.py +16 -4
  83. groundx/types/document_list_response.py +4 -4
  84. groundx/types/document_local_ingest_request.py +7 -0
  85. groundx/types/document_lookup_response.py +8 -3
  86. groundx/types/document_response.py +3 -3
  87. groundx/types/document_type.py +21 -1
  88. groundx/types/group_detail.py +4 -4
  89. groundx/types/group_list_response.py +17 -3
  90. groundx/types/group_response.py +3 -3
  91. groundx/types/health_response.py +3 -3
  92. groundx/types/health_response_health.py +3 -3
  93. groundx/types/health_service.py +5 -5
  94. groundx/types/ingest_local_document.py +25 -0
  95. groundx/types/ingest_local_document_metadata.py +51 -0
  96. groundx/types/ingest_remote_document.py +15 -6
  97. groundx/types/ingest_response.py +4 -4
  98. groundx/types/{process_status_response_ingest.py → ingest_status.py} +8 -7
  99. groundx/types/{ingest_response_ingest.py → ingest_status_light.py} +7 -5
  100. groundx/types/ingest_status_progress.py +26 -0
  101. groundx/types/{process_status_response_ingest_progress_errors.py → ingest_status_progress_cancelled.py} +4 -4
  102. groundx/types/{process_status_response_ingest_progress_complete.py → ingest_status_progress_complete.py} +4 -4
  103. groundx/types/{process_status_response_ingest_progress_cancelled.py → ingest_status_progress_errors.py} +4 -4
  104. groundx/types/{process_status_response_ingest_progress_processing.py → ingest_status_progress_processing.py} +4 -4
  105. groundx/types/message_response.py +2 -2
  106. groundx/types/meter_detail.py +2 -2
  107. groundx/types/process_level.py +5 -0
  108. groundx/types/{process_status_response.py → processes_status_response.py} +8 -5
  109. groundx/types/processing_status.py +3 -1
  110. groundx/types/search_response.py +3 -3
  111. groundx/types/search_response_search.py +3 -3
  112. groundx/types/search_result_item.py +7 -5
  113. groundx/types/search_result_item_pages_item.py +41 -0
  114. groundx/types/subscription_detail.py +3 -3
  115. groundx/types/subscription_detail_meters.py +5 -5
  116. groundx/{documents/types/website_crawl_request_websites_item.py → types/website_source.py} +7 -7
  117. groundx/types/workflow_apply_request.py +24 -0
  118. groundx/types/workflow_detail.py +59 -0
  119. groundx/types/workflow_detail_chunk_strategy.py +5 -0
  120. groundx/types/workflow_detail_relationships.py +36 -0
  121. groundx/types/workflow_engine.py +58 -0
  122. groundx/types/workflow_engine_reasoning_effort.py +5 -0
  123. groundx/types/workflow_engine_service.py +7 -0
  124. groundx/types/workflow_prompt.py +37 -0
  125. groundx/types/workflow_prompt_group.py +25 -0
  126. groundx/types/workflow_prompt_role.py +5 -0
  127. groundx/types/workflow_request.py +31 -0
  128. groundx/types/workflow_request_chunk_strategy.py +5 -0
  129. groundx/types/workflow_response.py +20 -0
  130. groundx/types/workflow_step.py +33 -0
  131. groundx/types/workflow_step_config.py +33 -0
  132. groundx/types/workflow_step_config_field.py +8 -0
  133. groundx/types/workflow_steps.py +38 -0
  134. groundx/types/workflows_response.py +20 -0
  135. groundx/workflows/__init__.py +7 -0
  136. groundx/workflows/client.py +736 -0
  137. groundx/workflows/raw_client.py +841 -0
  138. groundx/workflows/types/__init__.py +7 -0
  139. groundx/workflows/types/workflows_get_request_id.py +5 -0
  140. {groundx-2.0.15.dist-info → groundx-2.7.7.dist-info}/LICENSE +1 -1
  141. {groundx-2.0.15.dist-info → groundx-2.7.7.dist-info}/METADATA +39 -22
  142. groundx-2.7.7.dist-info/RECORD +155 -0
  143. groundx/documents/types/__init__.py +0 -6
  144. groundx/documents/types/documents_ingest_local_request_files_item.py +0 -43
  145. groundx/types/process_status_response_ingest_progress.py +0 -26
  146. groundx-2.0.15.dist-info/RECORD +0 -82
  147. {groundx-2.0.15.dist-info → groundx-2.7.7.dist-info}/WHEEL +0 -0
@@ -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"]
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ WorkflowsGetRequestId = typing.Union[int, str]
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Eyelevel.
3
+ Copyright (c) 2025 Eyelevel.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: groundx
3
- Version: 2.0.15
3
+ Version: 2.7.7
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -20,22 +20,42 @@ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Classifier: Typing :: Typed
23
+ Provides-Extra: extract
24
+ Requires-Dist: aiohttp (>=3.8.0)
25
+ Requires-Dist: boto3 ; extra == "extract"
26
+ Requires-Dist: celery ; extra == "extract"
27
+ Requires-Dist: celery-types ; extra == "extract"
28
+ Requires-Dist: dateparser ; extra == "extract"
29
+ Requires-Dist: fastapi ; extra == "extract"
30
+ Requires-Dist: google-api-python-client ; extra == "extract"
31
+ Requires-Dist: google-api-python-client-stubs ; extra == "extract"
32
+ Requires-Dist: google-auth-stubs ; extra == "extract"
33
+ Requires-Dist: gspread ; extra == "extract"
23
34
  Requires-Dist: httpx (>=0.21.2)
35
+ Requires-Dist: minio ; extra == "extract"
36
+ Requires-Dist: pillow ; extra == "extract"
24
37
  Requires-Dist: pydantic (>=1.9.2)
25
38
  Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
39
+ Requires-Dist: pytest ; extra == "extract"
40
+ Requires-Dist: redis ; extra == "extract"
41
+ Requires-Dist: requests (>=2.4.0)
42
+ Requires-Dist: tqdm (>=4.60.0)
43
+ Requires-Dist: types-boto3 ; extra == "extract"
44
+ Requires-Dist: types-dateparser ; extra == "extract"
45
+ Requires-Dist: types-tqdm (>=4.60.0)
26
46
  Requires-Dist: typing_extensions (>=4.0.0)
27
47
  Description-Content-Type: text/markdown
28
48
 
29
- # Eyelevel Python Library
49
+ # GroundX Python Library
30
50
 
31
51
  [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Feyelevelai%2Fgroundx-python)
32
52
  [![pypi](https://img.shields.io/pypi/v/groundx)](https://pypi.python.org/pypi/groundx)
33
53
 
34
- The Eyelevel Python library provides convenient access to the Eyelevel API from Python.
54
+ The GroundX Python library provides convenient access to the GroundX API from Python.
35
55
 
36
56
  ## Documentation
37
57
 
38
- API reference documentation is available [here](https://docs.groundx.ai/reference).
58
+ API reference documentation is available [here](https://docs.eyelevel.ai/reference).
39
59
 
40
60
  ## Installation
41
61
 
@@ -45,26 +65,26 @@ pip install groundx
45
65
 
46
66
  ## Reference
47
67
 
48
- A full reference for this library is available [here](./reference.md).
68
+ A full reference for this library is available [here](https://github.com/eyelevelai/groundx-python/blob/main/reference.md).
49
69
 
50
70
  ## Usage
51
71
 
52
72
  Instantiate and use the client with the following:
53
73
 
54
74
  ```python
55
- from groundx import GroundX, IngestRemoteDocument
75
+ from groundx import Document, GroundX
56
76
 
57
77
  client = GroundX(
58
78
  api_key="YOUR_API_KEY",
59
79
  )
60
- client.documents.ingest_remote(
80
+
81
+ client.ingest(
61
82
  documents=[
62
- IngestRemoteDocument(
83
+ Document(
63
84
  bucket_id=1234,
64
- file_name="my_file.txt",
85
+ file_name="my_file1.txt",
65
86
  file_type="txt",
66
- search_data={"key": "value"},
67
- source_url="https://my.source.url.com/file.txt",
87
+ source_url="https://my.source.url.com/file1.txt",
68
88
  )
69
89
  ],
70
90
  )
@@ -77,27 +97,24 @@ The SDK also exports an `async` client so that you can make non-blocking calls t
77
97
  ```python
78
98
  import asyncio
79
99
 
80
- from groundx import AsyncGroundX, IngestRemoteDocument
100
+ from groundx import AsyncGroundX, Document
81
101
 
82
102
  client = AsyncGroundX(
83
103
  api_key="YOUR_API_KEY",
84
104
  )
85
105
 
86
-
87
106
  async def main() -> None:
88
- await client.documents.ingest_remote(
107
+ await client.ingest(
89
108
  documents=[
90
- IngestRemoteDocument(
109
+ Document(
91
110
  bucket_id=1234,
92
- file_name="my_file.txt",
111
+ file_name="my_file1.txt",
93
112
  file_type="txt",
94
- search_data={"key": "value"},
95
- source_url="https://my.source.url.com/file.txt",
113
+ source_url="https://my.source.url.com/file1.txt",
96
114
  )
97
115
  ],
98
116
  )
99
117
 
100
-
101
118
  asyncio.run(main())
102
119
  ```
103
120
 
@@ -110,7 +127,7 @@ will be thrown.
110
127
  from groundx.core.api_error import ApiError
111
128
 
112
129
  try:
113
- client.documents.ingest_remote(...)
130
+ client.ingest(...)
114
131
  except ApiError as e:
115
132
  print(e.status_code)
116
133
  print(e.body)
@@ -133,7 +150,7 @@ A request is deemed retriable when any of the following HTTP status codes is ret
133
150
  Use the `max_retries` request option to configure this behavior.
134
151
 
135
152
  ```python
136
- client.documents.ingest_remote(..., request_options={
153
+ client.ingest(..., request_options={
137
154
  "max_retries": 1
138
155
  })
139
156
  ```
@@ -153,7 +170,7 @@ client = GroundX(
153
170
 
154
171
 
155
172
  # Override timeout for a specific method
156
- client.documents.ingest_remote(..., request_options={
173
+ client.ingest(..., request_options={
157
174
  "timeout_in_seconds": 1
158
175
  })
159
176
  ```
@@ -0,0 +1,155 @@
1
+ groundx/__init__.py,sha256=4bcjoYc2ZZw1k364bhk_b95byRwk-epto1rggWlljUo,3989
2
+ groundx/buckets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
3
+ groundx/buckets/client.py,sha256=F1tcqQoqmrC8lQtRZvmXldIdVxIp1LWfdbAfY8SB5sM,11460
4
+ groundx/buckets/raw_client.py,sha256=T2Ty5obN7eHbaxHGAimzjM8MGOmSOQEckhciyZkzcjE,23873
5
+ groundx/client.py,sha256=PksVIgU2pXup9Ewkl7NcLPvQOIhg_Do3cJVGgXqqQjE,6641
6
+ groundx/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
7
+ groundx/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
8
+ groundx/core/client_wrapper.py,sha256=Hh0OBCLbW-0ulQPL17Wg1PjgIk31FbaMg2Ozo8ukC8k,1822
9
+ groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
10
+ groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
11
+ groundx/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
12
+ groundx/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
13
+ groundx/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
14
+ groundx/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
15
+ groundx/core/pydantic_utilities.py,sha256=HxbbISfaP1XBvzbIkc0ZcF_GHKd9BfYsJAcFh9B126k,10787
16
+ groundx/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
17
+ groundx/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
18
+ groundx/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
19
+ groundx/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
20
+ groundx/csv_splitter.py,sha256=6HGXdDpwBX_IJaCbla1WuirJERBTvjLzBf9OBtwGFWU,2254
21
+ groundx/customer/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
22
+ groundx/customer/client.py,sha256=OAW3fJcOjvSvmGBbQEiNRlPE-dt15yFZHYXq9qrSXnw,2710
23
+ groundx/customer/raw_client.py,sha256=7qz8GU8Qe4G16YzeZ2Rz_cHNODPMTevOt4toPqCe0io,3403
24
+ groundx/documents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
25
+ groundx/documents/client.py,sha256=hRPDQnsrr6P3jvEC6lcW3B-_npTGOhcCw_H6gsWdC0U,34453
26
+ groundx/documents/raw_client.py,sha256=u_qX6LSVsb2HxzNGC3DguCLqSZbGvSsQcStj1PyCoDA,59355
27
+ groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
28
+ groundx/errors/__init__.py,sha256=Ua3Z6OWyRhcgrq0FSXOpwmOc4RxyTgzP2LXbkzGbMhk,234
29
+ groundx/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
30
+ groundx/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
31
+ groundx/extract/__init__.py,sha256=bIrn4ulZM0thiaz4zh32XyjnHNTcgmHzixYOsYK1e6M,928
32
+ groundx/extract/agents/__init__.py,sha256=i95YB5jxXog8gn02t5c2to2zF00EZMiKjeukXZQt36g,90
33
+ groundx/extract/agents/agent.py,sha256=Ajj1wo1GXQIpFupm0MZ27RypjTCi2qknYuitTrmRmHU,6137
34
+ groundx/extract/classes/__init__.py,sha256=i7gl0O6K2THXwS8oszYlQ6lzvG4iglmvcuebqLvYH6A,574
35
+ groundx/extract/classes/agent.py,sha256=nDPr10PPqtRYxYE917P3vaZQGHCVLd0bH9xaMdBul4s,711
36
+ groundx/extract/classes/api.py,sha256=fgCwua4xf8oK2J8p-LYAFyeEpbGg1kETEUAGSH60lr4,345
37
+ groundx/extract/classes/document.py,sha256=1nT3mFjN_DNFuhz62Gmb4ecHiIwcEWknlJP_eWRVVwc,10573
38
+ groundx/extract/classes/field.py,sha256=x8Y8MIytoeWeU6tpvczw2sLaIlQzCEvfRiO_-PjWEXE,2764
39
+ groundx/extract/classes/groundx.py,sha256=073QAmI7dIzsHEAKbRxv_GztoB4P1JMwbw981pszMpY,4619
40
+ groundx/extract/classes/prompt.py,sha256=yfngqn6C1uIVBLjDdDigq9aW1mnpQ3o12LI9zjPXh9c,950
41
+ groundx/extract/classes/test_document.py,sha256=U0ukVvbdB-CYWOw0eSippf5HANz6VUGXDk4RjlulZ9s,3376
42
+ groundx/extract/classes/test_field.py,sha256=QVUGxRGOGl16kOmRHPg0RBCh9o5CB7GNN1h1GBNKLd8,1232
43
+ groundx/extract/classes/test_groundx.py,sha256=sXdwbYwK-m8CsY4RjgvhMkP8Jje8oYXqczrxgJP0mA4,8061
44
+ groundx/extract/classes/test_prompt.py,sha256=U8rKlxrDUMr4MpwKnurD1v1Ngw6NLPHRS8dOn2h0JcU,2240
45
+ groundx/extract/post_process/__init__.py,sha256=hbiiouYIkC2-LNOz5LYywpEfhX4VvI_9wBKZ-T_XPdU,101
46
+ groundx/extract/post_process/post_process.py,sha256=K558NRMBYSfxfrAQrCYw9Ay5p57A6fRJWpzT9e_CN9U,669
47
+ groundx/extract/services/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
48
+ groundx/extract/services/__init__.py,sha256=Zf-PjjmUo5Nv1BaEQOjaFhI3QtOn7xSZo0Mccf9DOg0,249
49
+ groundx/extract/services/csv.py,sha256=9ugPXvJYioM42wE2o4uXWyIlHMqkK_F6dCDpL_kyCzU,2132
50
+ groundx/extract/services/logger.py,sha256=yuQ4eBs5eiHVZhlWlrROKNLuJ72G9hlJCcbT93lQO0o,3201
51
+ groundx/extract/services/logging_cfg.py,sha256=WHlV4_ThUC5-dqAyicGpLmSId34RoCFf9xfGLw-HCYQ,1601
52
+ groundx/extract/services/ratelimit.py,sha256=PU-9YV9dhzyci0A5knlGEJvi4Jdyl9-hguI0v_DFnYA,3206
53
+ groundx/extract/services/sheets_client.py,sha256=0Sgy6dKYnjwdZ1He3m489D3mQ1038k5xBzbvgKO4BSs,4859
54
+ groundx/extract/services/status.py,sha256=n4_cP-1ZfH8KShlif16bwaSBhtI-7lI_5ecYgTvcKRc,6700
55
+ groundx/extract/services/upload.py,sha256=PKRF6DKzWAKAISHj3Dadiz5ecqZ2iZLigwUNwo2KDz4,1787
56
+ groundx/extract/services/upload_minio.py,sha256=i4i5-_ER9_WvEKhYPIuqsg6oZckZdbA4aCKVUAbzw44,3854
57
+ groundx/extract/services/upload_s3.py,sha256=R_EPCm-HZs2jYF145PWheHMsXkEeReNOO54qokABUww,2584
58
+ groundx/extract/services/utility.py,sha256=nlAVgSFpzo0LPrm5dqexn2dmDa3cFmAmJpVHFE2rgnM,1321
59
+ groundx/extract/settings/__init__.py,sha256=1YJcL6whtsHNVd9AuOzdIx3vM5xeu5m6e4U5V39McmA,277
60
+ groundx/extract/settings/settings.py,sha256=QenatSQyWIB1Log7jdai-YzkaGMhVP-c1k-nIP_mZgo,5331
61
+ groundx/extract/settings/test_settings.py,sha256=9pEa3_MTY2CFlAnv5YqGojplm3Z8eFpRhclQlIem0Vo,18743
62
+ groundx/extract/tasks/__init__.py,sha256=fEtUoLXI2vNlbcogE5FmRk2t0ZRuM4xjFK7S4BF1Rws,115
63
+ groundx/extract/tasks/utility.py,sha256=6pJG0SLsj_zTtdFbMqXIUmbIH3kGLbYpOTQKweIIQcY,736
64
+ groundx/extract/utility/__init__.py,sha256=Wf8-yEKavFfI8VnoKevfuFK-SarD0FxAWYWydo1F-Ug,240
65
+ groundx/extract/utility/classes.py,sha256=4wVKK6hBCXxUyoF21RiZqpXvdl86aDHZDuCij6crfH8,4999
66
+ groundx/extract/utility/test_utility.py,sha256=UtzDmpIXi5uvSa0cIm0v6TFiJQ3_ukzkKEXkYr5LuuI,3087
67
+ groundx/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
68
+ groundx/groups/client.py,sha256=QsZcOXVPHAdUPYPsfuFiPOkyssapSWLZYVD82NWmrSE,16810
69
+ groundx/groups/raw_client.py,sha256=nP9yFh7MexjDUQU8TtB5j-HAmZJjQWOd78hu-KeMnRs,35111
70
+ groundx/health/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
71
+ groundx/health/client.py,sha256=kcGIlqCEzBl6fuwJaf3x-obOagXxyAlEFaPRH3qgdDs,4566
72
+ groundx/health/raw_client.py,sha256=_TDa-O13PtC0RYCAq4bx5FESz1oLDLp9WExyOKjsIjs,7430
73
+ groundx/ingest.py,sha256=QTwsLUdzL6CIvwCb0jep4zHGQebpKbS-cwgG4i9QgiQ,26283
74
+ groundx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ groundx/search/__init__.py,sha256=Y1EKHPBEh-ebo1YOikCHTHU9E8kBP2s7K4J_kZGzcOA,165
76
+ groundx/search/client.py,sha256=ArfAbcQGS6eCWuMU5Ld-AQ8nB0Vh-4Jec3tt05QJtuM,13783
77
+ groundx/search/raw_client.py,sha256=_qO5u62e1d0rVbRUeyJFdt85v7WT_bSHcSLf8wJvfgQ,19545
78
+ groundx/search/types/__init__.py,sha256=sy0s9qFdeT4Q3SJxK6hrulnsPirVpKkjxI29OqLTY0s,185
79
+ groundx/search/types/search_content_request_id.py,sha256=us7mYdzR0qPur_wR5I9BhHaLEzC5nLBRna6-xq4M1ec,128
80
+ groundx/types/__init__.py,sha256=1TxoLVGJWBx8dS5hL-fZzjTOvUmrsYGyg1USvw6paLQ,5187
81
+ groundx/types/bounding_box_detail.py,sha256=5_l3vFNIs2n-U2VXEpyPRcTcFKpMWrpvzQiIL88XNEs,1796
82
+ groundx/types/bucket_detail.py,sha256=sYKzUCPCAosh2jTFfSDtSn0bEsLL228kLjA51jFEYwY,1475
83
+ groundx/types/bucket_list_response.py,sha256=m1lO4PElbxc5VFCLchPtdWfCTlfrm8enpTe3bg1ng7Y,1060
84
+ groundx/types/bucket_response.py,sha256=hXYDfCrxJSX3lvVoQpXTYpNOfMCgXmIJSBDvcH9Wh6g,572
85
+ groundx/types/bucket_update_detail.py,sha256=S4wOHozr5o3XyD-a-dP4fM1DqdFPh_HC0OZT3Ifq_g0,702
86
+ groundx/types/bucket_update_response.py,sha256=2gSJ77lwb12YPBnDXFflZTtFa6vIen1jdifRFmH1nFc,597
87
+ groundx/types/customer_detail.py,sha256=yvSzH-6YZviBNGgeAk3uB1Tvrpp5FW1bEI_wmKklF2c,1058
88
+ groundx/types/customer_response.py,sha256=jIU8Q5hAFJA3Bt1-3E4p00blQLbjeNAF5-pfXSiih1w,582
89
+ groundx/types/document.py,sha256=eO1hcklCSp8buUaqjBT6gYQsxVl85HvIEAa4iJdw4ms,2052
90
+ groundx/types/document_detail.py,sha256=jrKq3Qjp4qyX6Wx2yeDj5GGX1VKY4N6dcnvks0YBKbw,2715
91
+ groundx/types/document_list_response.py,sha256=n8yfjEA_k-_dPmRxsOAK2vXa7HtDkPNO8FF0dB4LFI4,803
92
+ groundx/types/document_local_ingest_request.py,sha256=y3rIqid4VXWNgb6wTis7zQmxsnKYIwOiFQwv5GLmpsQ,198
93
+ groundx/types/document_lookup_response.py,sha256=-ZXxd5RvE980PbTu_AOiQ-cIcHCG4HVkqphRZjCCd2s,1252
94
+ groundx/types/document_response.py,sha256=wlmj7D_1v5j688U81M583mL3tp3tBWMZl66irRz2V-A,606
95
+ groundx/types/document_type.py,sha256=JQiwb7ZQOCKHPyCR71RYBue3akPsEQj3C2T-FMDolb8,431
96
+ groundx/types/group_detail.py,sha256=VrQqqwKpI6E9_aQCUEQ4ceA8NDEBfhxn15rKZBhZTHk,1718
97
+ groundx/types/group_list_response.py,sha256=UmYJ0WdT1-kbQogJnUq80tCc-V7Wfbn1PtZYHPFTK4A,1051
98
+ groundx/types/group_response.py,sha256=xABiBGzeqRDenFQkqM8te4Q8IZuABODxWEYxh3ogCdw,567
99
+ groundx/types/health_response.py,sha256=8WCYFUTZ9j6BNmXojbc1eGR-8dSHLh49QtwsMpdETr4,597
100
+ groundx/types/health_response_health.py,sha256=dNLtLzhz1Llmeg9rmuE4jW8qacM4H0cDvzrS5lzHEJk,596
101
+ groundx/types/health_service.py,sha256=cd6w-iM0jdJNR3QJgqdYvKx1A1Z96L985Qkxpw4DH54,1047
102
+ groundx/types/health_service_status.py,sha256=ugKJXlx8QGi83n_J6s1frFrW1hYfOn3Dlb_pPNexwMA,185
103
+ groundx/types/ingest_local_document.py,sha256=Tp8B9-8BmIn-oqfrG1YpSbcL7PmQYmJdutP2G7Psn9A,717
104
+ groundx/types/ingest_local_document_metadata.py,sha256=eQGe_Uu4OBASwNBU1m55Eg8t2Sb7Kf6ORQgtykL6Vyg,1921
105
+ groundx/types/ingest_remote_document.py,sha256=JFlFz3C0ygpDhFhXxjd3UszzxeIUAf3O8lhYVxY8nz8,2047
106
+ groundx/types/ingest_response.py,sha256=T62sxuUJZbQzy4zbfeLQLz6XoWIwDaF8gCPv2jfyD9I,572
107
+ groundx/types/ingest_status.py,sha256=2dnLeNQkwMj04T-kxWMlCPBaZqr07gDYSvai3ekp0UE,1004
108
+ groundx/types/ingest_status_light.py,sha256=LbqztAxJtDD31xLPpRY1634VAkqjvBCJfJIiBOYr4h0,893
109
+ groundx/types/ingest_status_progress.py,sha256=fLXTmkvKjqLrpylhqpKHjaD0r7iBj_GsQjwu3jCl2G8,1081
110
+ groundx/types/ingest_status_progress_cancelled.py,sha256=cj-esVBst_br_OpbLzxeuJNYnlMVE4pY4pCHh5eCx14,672
111
+ groundx/types/ingest_status_progress_complete.py,sha256=f0Wz12NCUoyoUOlb_NdARW6uVF2wun-nTyhdz136gPY,671
112
+ groundx/types/ingest_status_progress_errors.py,sha256=mnvOcGLB9H3KKhZ3qTgtl4BN-cg9RsPZjeUakvvhz9w,669
113
+ groundx/types/ingest_status_progress_processing.py,sha256=O90rPxFfUl0Ny3pAW8HGQ3u-ifM2CeEQ98gbWGcMJvM,673
114
+ groundx/types/message_response.py,sha256=c2zA0lrSYmKSCZu0tYBm_Wamp6GsjwLMqvPAXbHUick,549
115
+ groundx/types/meter_detail.py,sha256=BTvrdT-g2hVeJ8xljMfgItGoi6KpOjXu7O332_iuJx0,1116
116
+ groundx/types/process_level.py,sha256=gDFm3FKDpoL_W7jGlZcv9EMHwSALiT7mnJuV6EJ4dyA,152
117
+ groundx/types/processes_status_response.py,sha256=twks7OK0EriUl8xSgCe41rudjPlIH1kaBUG-DriI2t4,662
118
+ groundx/types/processing_status.py,sha256=nUvsnKcDOFcT6NRDCTQ1vpm4KDNiKy8_b7PxaiKxnZM,226
119
+ groundx/types/search_response.py,sha256=IvGBcItUHYUpaglEbhklPRsQ9YbmoMjSM-mTrAwQkSk,597
120
+ groundx/types/search_response_search.py,sha256=zBWZfRp99e4bd5TR-CMbAvr3aC9S2OQEIoKfp6M38G4,1649
121
+ groundx/types/search_result_item.py,sha256=rV6NqA_bRa9Hn3oSSevE_LcIlVv4WuwS-F7yHVQwFMI,3190
122
+ groundx/types/search_result_item_pages_item.py,sha256=h-VbGW50iUxolcoKk7ohz6GTaSKTkLNbEo2r3qhrAv8,1125
123
+ groundx/types/sort.py,sha256=oXap7qO8jI5I2wRhjdEfei4x0sEk2OEId2ll92EFOF8,147
124
+ groundx/types/sort_order.py,sha256=hfJkStz6zHf3iWQFaVLkNCZPdyj5JS7TsQlN4Ij8Q5A,148
125
+ groundx/types/subscription_detail.py,sha256=GEEivqyiLsZtd8Ow7mqqwF1y0m0tHD-t9r9dnZsDKAw,732
126
+ groundx/types/subscription_detail_meters.py,sha256=vGqiR2uupVh5177DfOghjoe5mwzVhoWljKzPF-twUc0,794
127
+ groundx/types/website_source.py,sha256=53jWDBtSrJVOsBVtVbZbjhEAsd0QGkXa7IuKO4AooLs,1542
128
+ groundx/types/workflow_apply_request.py,sha256=BooXhqjiXftutycdR4GEARPvOcK-tMEKDRS02zFQH0o,755
129
+ groundx/types/workflow_detail.py,sha256=St29Dbw7zTAfZtTcrGQcL5Mj6ixyasHA2hRdeinRxS0,1864
130
+ groundx/types/workflow_detail_chunk_strategy.py,sha256=GT5tU7Eh7KaWqtKQmR_xjJA78d74yHRfv2E21u-yGUE,170
131
+ groundx/types/workflow_detail_relationships.py,sha256=lw-7OcI595j_1wjC1Rd4rFoPk4UjwniF3SKydX5mlG4,1072
132
+ groundx/types/workflow_engine.py,sha256=J_PXgGLUrpY7Ci-A6jx1vq7_9h-3OZTMrxdru0DkieI,1977
133
+ groundx/types/workflow_engine_reasoning_effort.py,sha256=xQma7tB5cVPvaj5WqmBe1scPqeDWDDsTe2TlDXXnOVs,189
134
+ groundx/types/workflow_engine_service.py,sha256=8EPL1ffSnv1r547eixSryVqO-X18TYFyHZotqw1qHA4,211
135
+ groundx/types/workflow_prompt.py,sha256=uAKLSm57MJcgum5libVrK8d-4-MmidptdQ7IfxmkTx0,1132
136
+ groundx/types/workflow_prompt_group.py,sha256=iT3QibXPAVyA_aAC8Z2aEqDul1xelbFOcsjYnHrPB6Q,724
137
+ groundx/types/workflow_prompt_role.py,sha256=_O50xjX0RsXYvvg3RlzdhoI4rF8ZG7yDYETjHJnOdaE,186
138
+ groundx/types/workflow_request.py,sha256=BKYlv7_RWYDrDWBITKWy5MO8ZojKW33_b_6j0LV3lY8,1022
139
+ groundx/types/workflow_request_chunk_strategy.py,sha256=36SwJuoQ1-9nB0mWpw9ois3IcLZBYFVzAIB2EZfHyRA,171
140
+ groundx/types/workflow_response.py,sha256=5SFtWKKTQW3L26Tv02Cc0aI4oZN-3NaCwzNk5WD762I,582
141
+ groundx/types/workflow_step.py,sha256=YRTW79pJMb76NckGK3tWke8CCjOPkUfLD1YQ76pA5Zk,1248
142
+ groundx/types/workflow_step_config.py,sha256=yef00gJz-j0we-w-fa68-G9rDOMxH0m-MptO_jvOjxM,1077
143
+ groundx/types/workflow_step_config_field.py,sha256=20Jb6xd7tURZEzRZoWLq3xzbzgofvL_6Tf3FDVbpiTA,259
144
+ groundx/types/workflow_steps.py,sha256=qK4vyjT7nc3FY2dlS_gVGl_p9r9DlWUOh7FnNuFHf9w,1561
145
+ groundx/types/workflows_response.py,sha256=lKy6N4r0jTVK2S3mnmTzAvPjkmOl4BTnU2q0k-TbqjQ,597
146
+ groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
147
+ groundx/workflows/__init__.py,sha256=qS5TOSfeClFC9oVjYFqCMuNlZOHTcU0cNOrNmDpflQs,163
148
+ groundx/workflows/client.py,sha256=-aAqa43LQMx62iwcH4QEEHPSOeT2cNj9334SBZMGy4s,19801
149
+ groundx/workflows/raw_client.py,sha256=eoIedOkJtF01d4VC8W0q3eH9TgU5Qi40XwEbQl7MQsA,31368
150
+ groundx/workflows/types/__init__.py,sha256=r-3IiPgf480gPstg62dFXecJQNOoTaJzcqul0_8_8DM,182
151
+ groundx/workflows/types/workflows_get_request_id.py,sha256=pGcBQwEQYDxoxBGpACdy3zf1Qc2rjcN3zv-TZXHu9p0,127
152
+ groundx-2.7.7.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
153
+ groundx-2.7.7.dist-info/METADATA,sha256=05lOm65WiFmAvCB4ze-PYKqwX-3hOtU75kdOBjO3pjs,5919
154
+ groundx-2.7.7.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
155
+ groundx-2.7.7.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from .documents_ingest_local_request_files_item import DocumentsIngestLocalRequestFilesItem
4
- from .website_crawl_request_websites_item import WebsiteCrawlRequestWebsitesItem
5
-
6
- __all__ = ["DocumentsIngestLocalRequestFilesItem", "WebsiteCrawlRequestWebsitesItem"]
@@ -1,43 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from ...core.pydantic_utilities import UniversalBaseModel
4
- import typing_extensions
5
- from ...core.serialization import FieldMetadata
6
- import pydantic
7
- from ...types.document_type import DocumentType
8
- import typing
9
- from ...core.pydantic_utilities import IS_PYDANTIC_V2
10
-
11
-
12
- class DocumentsIngestLocalRequestFilesItem(UniversalBaseModel):
13
- bucket_id: typing_extensions.Annotated[int, FieldMetadata(alias="bucketId")] = pydantic.Field()
14
- """
15
- the bucketId of the bucket which this local file will be ingested to.
16
- """
17
-
18
- file_data: typing_extensions.Annotated[str, FieldMetadata(alias="fileData")] = pydantic.Field()
19
- """
20
- Binary data for the file being ingested.
21
- """
22
-
23
- file_name: typing_extensions.Annotated[str, FieldMetadata(alias="fileName")] = pydantic.Field()
24
- """
25
- The name of the file being ingested
26
- """
27
-
28
- file_type: typing_extensions.Annotated[DocumentType, FieldMetadata(alias="fileType")]
29
- search_data: typing_extensions.Annotated[
30
- typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]], FieldMetadata(alias="searchData")
31
- ] = pydantic.Field(default=None)
32
- """
33
- Custom metadata which can be used to influence GroundX's search functionality. This data can be used to further hone GroundX search.
34
- """
35
-
36
- if IS_PYDANTIC_V2:
37
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
38
- else:
39
-
40
- class Config:
41
- frozen = True
42
- smart_union = True
43
- extra = pydantic.Extra.allow
@@ -1,26 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from ..core.pydantic_utilities import UniversalBaseModel
4
- import typing
5
- from .process_status_response_ingest_progress_cancelled import ProcessStatusResponseIngestProgressCancelled
6
- from .process_status_response_ingest_progress_complete import ProcessStatusResponseIngestProgressComplete
7
- from .process_status_response_ingest_progress_errors import ProcessStatusResponseIngestProgressErrors
8
- from .process_status_response_ingest_progress_processing import ProcessStatusResponseIngestProgressProcessing
9
- from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
- import pydantic
11
-
12
-
13
- class ProcessStatusResponseIngestProgress(UniversalBaseModel):
14
- cancelled: typing.Optional[ProcessStatusResponseIngestProgressCancelled] = None
15
- complete: typing.Optional[ProcessStatusResponseIngestProgressComplete] = None
16
- errors: typing.Optional[ProcessStatusResponseIngestProgressErrors] = None
17
- processing: typing.Optional[ProcessStatusResponseIngestProgressProcessing] = None
18
-
19
- if IS_PYDANTIC_V2:
20
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
21
- else:
22
-
23
- class Config:
24
- frozen = True
25
- smart_union = True
26
- extra = pydantic.Extra.allow
@@ -1,82 +0,0 @@
1
- groundx/__init__.py,sha256=k3hsC7MSufSELpIPOb1-G3Y_-YM2GV61ADC-EwSaPvw,2925
2
- groundx/buckets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
- groundx/buckets/client.py,sha256=TofNrkej1AC_-FU5rf_y8KG8ubFUpHtLa8PQ7rqax6E,26537
4
- groundx/client.py,sha256=Q1Kw0z6K-z-ShhNyuuPe5fYonM9M2I_55-ukUrUWk1U,6507
5
- groundx/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
6
- groundx/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
7
- groundx/core/client_wrapper.py,sha256=66tcEWEACDxQIXDiX5s5Kn5XdmYZETM2b8YUiM7Spgs,1803
8
- groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
9
- groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
10
- groundx/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
11
- groundx/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
12
- groundx/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
13
- groundx/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
14
- groundx/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
15
- groundx/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
16
- groundx/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
17
- groundx/customer/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
18
- groundx/customer/client.py,sha256=C_JANeDewRD1Kg-q7LPxdiOSWbYSTOiYlBYZLRYPI44,3467
19
- groundx/documents/__init__.py,sha256=-Z5Vjus4Uq29lfATYXWLh5zC9DvDMu-FLGWcm8chMdY,241
20
- groundx/documents/client.py,sha256=Ah3LPoJmo7H1vNb2b2xfQ6zRVmnrihdYJBhcriEgcEw,58935
21
- groundx/documents/types/__init__.py,sha256=fmIT0AisC1K0-EQIa1GDcYr70wpsi7QuXBeyqWiZD14,325
22
- groundx/documents/types/documents_ingest_local_request_files_item.py,sha256=EpD7TE1us1DAXdcPvI1li-AGUNpEy_f13bBXidmCAL8,1630
23
- groundx/documents/types/website_crawl_request_websites_item.py,sha256=6So4stWecfZYPbiQWg6-FgsfIqV4g2ujFXXgn70evNI,1597
24
- groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
25
- groundx/errors/__init__.py,sha256=-prNYsFd8xxM4va0vR1raZjcd10tllOJKyEWjX_pwdU,214
26
- groundx/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
27
- groundx/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
28
- groundx/groups/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
29
- groundx/groups/client.py,sha256=CiCent5Wb8iC2QtR_xI2kNCvMdONuE0-HSfpy3QbL2I,38863
30
- groundx/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
31
- groundx/health/client.py,sha256=fcTa21RWPyBuT77PQ0EncC6rBaW_DrYlRvudy9-0H58,7545
32
- groundx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- groundx/search/__init__.py,sha256=RagVzjShP33mDg9o4N3kGzV0egL1RYNjCpXPE8VzMYE,145
34
- groundx/search/client.py,sha256=10ifg9GyIwIZF13ULfCXF8iFIydq6H6QRDrGPDjpanw,19756
35
- groundx/search/types/__init__.py,sha256=fNFXQloPa1PHHO8VZim6KQNMA9N5EZtfSkissdxtY_c,165
36
- groundx/search/types/search_content_request_id.py,sha256=us7mYdzR0qPur_wR5I9BhHaLEzC5nLBRna6-xq4M1ec,128
37
- groundx/types/__init__.py,sha256=W5fN6ryfqki0p_bipBi7jKs6SXH2vVsrOe5ORcbngVY,3406
38
- groundx/types/bounding_box_detail.py,sha256=51qcen326NTHY2ZqH1cFXut0_MCmk39EbLoDAwotdq4,1832
39
- groundx/types/bucket_detail.py,sha256=bQjCvfyWydjItmzNNTvH-iWxNDOggd7R7X1alFZzlEY,1511
40
- groundx/types/bucket_list_response.py,sha256=jC0NBsLCYDSwQrBzuW0g3PWFycjtKl8YRkKhic_-1DA,650
41
- groundx/types/bucket_response.py,sha256=E8V7H2_TVKdmMsGCBjwzdf2bg4rUjiXFnhXtVGVCqZQ,608
42
- groundx/types/bucket_update_detail.py,sha256=B4atQMDSXEdx7otcDbvgsrAHtXNz9swMnOsXRe25coc,738
43
- groundx/types/bucket_update_response.py,sha256=h5RJTEpc4WPI_C4sPvsJZo7IxKppnPR-I9VGEQryRlc,633
44
- groundx/types/customer_detail.py,sha256=RNm0qXvKx6YvVmkVJZeCNIz7n8_siFMXJ_AGtH3i5Z0,1094
45
- groundx/types/customer_response.py,sha256=_RbuanXhCWQkCeQ0dkwPgsjNBoBgNpixiNfRpXcMew8,618
46
- groundx/types/document_detail.py,sha256=i1UfcQAGYo9v1HwrrpzQPw_O0qA7IOXwOUuPV1yU8nI,2323
47
- groundx/types/document_list_response.py,sha256=Z0Hm5VBwI0qatbSp6nYHh0RrGwJN3Gqh2D72FfDseZk,839
48
- groundx/types/document_lookup_response.py,sha256=hZBwUO2pI6xFfeh7DmX_l1xRoh-5oaVNgUVxd00ml14,1097
49
- groundx/types/document_response.py,sha256=EBDrYhTYoA3Q3ZpqwFEYmTgE3tY86TScFPhBnc3_ItI,642
50
- groundx/types/document_type.py,sha256=NgsbSUXopTkzkut1AwXgthxWjsFzlKNnUhyfYqU_IM4,216
51
- groundx/types/group_detail.py,sha256=ms8iEEE1d88PTNwJOHeSiyoXn0hKdMrjJhkM2tlMdMs,1754
52
- groundx/types/group_list_response.py,sha256=mDIDaW8uWo4Wd-sk8_SzaZeUD1EC4ZqcJpbieQLRszc,645
53
- groundx/types/group_response.py,sha256=SGqaQYPV9jaA4ET3x2adhkgL9NQQB9XwolXTuBQ1Xx0,603
54
- groundx/types/health_response.py,sha256=3UpYL2IZb56tTo-fOpSU-0OTRyWgpYiB3pMU3sfjWUU,633
55
- groundx/types/health_response_health.py,sha256=I0QeEljFp6l5LCJbCTArW031Om84egePgnGdtE6WXlI,632
56
- groundx/types/health_service.py,sha256=M1-h1EJSpAXw-j3pY-09_g_WKkO0spdj8e7pgPzSGf0,1083
57
- groundx/types/health_service_status.py,sha256=ugKJXlx8QGi83n_J6s1frFrW1hYfOn3Dlb_pPNexwMA,185
58
- groundx/types/ingest_remote_document.py,sha256=xlPA4SYoUgoGXpxZhyORdezxIPGmr4wneav2ZEVmmOY,1683
59
- groundx/types/ingest_response.py,sha256=139rn8wpT44jlUzYXiy0r8XzN2U_OtdLltpSbRU0TyA,633
60
- groundx/types/ingest_response_ingest.py,sha256=8FKApYNvS6KFxEKm05pKpKJ0BAagxoE0cWeTt-qjm1g,781
61
- groundx/types/message_response.py,sha256=g_FJJyXYg_3fjZQueXkcy11q-qUfZGdVdALddHBieh4,585
62
- groundx/types/meter_detail.py,sha256=FybpzJj5QrtlDXT26ejw2CH1koOWe0ZeG-MS0n63HSI,1152
63
- groundx/types/process_status_response.py,sha256=ScmEqF9TVGeugFLshyFbGQpM4MkAawsEJ3sUBILP87c,662
64
- groundx/types/process_status_response_ingest.py,sha256=tZteJy-DI_2jT6eLbTJ812qJc_WG9Sd44w7G1LVatLQ,1066
65
- groundx/types/process_status_response_ingest_progress.py,sha256=4rPMHdLEc6PC5qTjMBAB4IA-l38t5KPcN8qtET7qKfc,1320
66
- groundx/types/process_status_response_ingest_progress_cancelled.py,sha256=PpvHXzb6ewD-nWUSMpE0T4ZS0UtIo4iP57os1MP4CWQ,723
67
- groundx/types/process_status_response_ingest_progress_complete.py,sha256=6-UuZCHK28No15RPigumAJ4r_gAUjbElH3Brg7ED8pU,722
68
- groundx/types/process_status_response_ingest_progress_errors.py,sha256=aSpl99wXwcTFhtkB47BpBZATcqzQS6cXHssKLPdtnzQ,720
69
- groundx/types/process_status_response_ingest_progress_processing.py,sha256=rqaTkeki5Vf3SgeeZtuSRtioGqmj99JcbfKoeI-Hgos,724
70
- groundx/types/processing_status.py,sha256=d71n9cgs3gMH1Lyr-Wqq-iYJB6oMEE9yVRdJsmIb9Ws,198
71
- groundx/types/search_response.py,sha256=EUwAFEHfzEisHCSTxa5zAy7VWY-bebV5VLx0b7irNlI,633
72
- groundx/types/search_response_search.py,sha256=fhEbG9qQZHWlxpI_A9rLOHhm7VbzECrTLhicHkR2Xi0,1685
73
- groundx/types/search_result_item.py,sha256=ut1q-aSTnzfRCfEQ8sdrf2A20ix2NF5iisiah5vPaww,3083
74
- groundx/types/sort.py,sha256=oXap7qO8jI5I2wRhjdEfei4x0sEk2OEId2ll92EFOF8,147
75
- groundx/types/sort_order.py,sha256=hfJkStz6zHf3iWQFaVLkNCZPdyj5JS7TsQlN4Ij8Q5A,148
76
- groundx/types/subscription_detail.py,sha256=WNfUw2EMVECIvNYcV2s51zZ6T3Utc4zYXw63bPaeM6U,768
77
- groundx/types/subscription_detail_meters.py,sha256=lBa8-1QlMVHjr5RLGqhiTKnD1KMM0AAHTWvz9TVtG8w,830
78
- groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
79
- groundx-2.0.15.dist-info/LICENSE,sha256=8dMPYAFBTA7O4DUxhrEKEks8CL2waCMYM6dHohW4xrI,1065
80
- groundx-2.0.15.dist-info/METADATA,sha256=7SUu2d02VHGaZCu06RSUl3dlZJ4Kuh-1Z3VBea6QNrg,5206
81
- groundx-2.0.15.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
82
- groundx-2.0.15.dist-info/RECORD,,