groundx 2.0.14__py3-none-any.whl → 2.0.16__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
@@ -7,6 +7,7 @@ from .types import (
7
7
  BucketResponse,
8
8
  BucketUpdateDetail,
9
9
  BucketUpdateResponse,
10
+ CrawlWebsiteSource,
10
11
  CustomerDetail,
11
12
  CustomerResponse,
12
13
  DocumentDetail,
@@ -21,6 +22,8 @@ from .types import (
21
22
  HealthResponseHealth,
22
23
  HealthService,
23
24
  HealthServiceStatus,
25
+ IngestLocalDocument,
26
+ IngestRemoteDocument,
24
27
  IngestResponse,
25
28
  IngestResponseIngest,
26
29
  MessageResponse,
@@ -44,11 +47,6 @@ from .types import (
44
47
  from .errors import BadRequestError, UnauthorizedError
45
48
  from . import buckets, customer, documents, groups, health, search
46
49
  from .client import AsyncGroundX, GroundX
47
- from .documents import (
48
- DocumentRemoteIngestRequestDocumentsItem,
49
- DocumentsIngestLocalRequestFilesItem,
50
- WebsiteCrawlRequestWebsitesItem,
51
- )
52
50
  from .environment import GroundXEnvironment
53
51
  from .search import SearchContentRequestId
54
52
  from .version import __version__
@@ -62,15 +60,14 @@ __all__ = [
62
60
  "BucketResponse",
63
61
  "BucketUpdateDetail",
64
62
  "BucketUpdateResponse",
63
+ "CrawlWebsiteSource",
65
64
  "CustomerDetail",
66
65
  "CustomerResponse",
67
66
  "DocumentDetail",
68
67
  "DocumentListResponse",
69
68
  "DocumentLookupResponse",
70
- "DocumentRemoteIngestRequestDocumentsItem",
71
69
  "DocumentResponse",
72
70
  "DocumentType",
73
- "DocumentsIngestLocalRequestFilesItem",
74
71
  "GroundX",
75
72
  "GroundXEnvironment",
76
73
  "GroupDetail",
@@ -80,6 +77,8 @@ __all__ = [
80
77
  "HealthResponseHealth",
81
78
  "HealthService",
82
79
  "HealthServiceStatus",
80
+ "IngestLocalDocument",
81
+ "IngestRemoteDocument",
83
82
  "IngestResponse",
84
83
  "IngestResponseIngest",
85
84
  "MessageResponse",
@@ -101,7 +100,6 @@ __all__ = [
101
100
  "SubscriptionDetail",
102
101
  "SubscriptionDetailMeters",
103
102
  "UnauthorizedError",
104
- "WebsiteCrawlRequestWebsitesItem",
105
103
  "__version__",
106
104
  "buckets",
107
105
  "customer",
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "groundx",
19
- "X-Fern-SDK-Version": "2.0.14",
19
+ "X-Fern-SDK-Version": "2.0.16",
20
20
  }
21
21
  headers["X-API-Key"] = self.api_key
22
22
  return headers
@@ -1,13 +1,2 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .types import (
4
- DocumentRemoteIngestRequestDocumentsItem,
5
- DocumentsIngestLocalRequestFilesItem,
6
- WebsiteCrawlRequestWebsitesItem,
7
- )
8
-
9
- __all__ = [
10
- "DocumentRemoteIngestRequestDocumentsItem",
11
- "DocumentsIngestLocalRequestFilesItem",
12
- "WebsiteCrawlRequestWebsitesItem",
13
- ]
@@ -2,7 +2,7 @@
2
2
 
3
3
  import typing
4
4
  from ..core.client_wrapper import SyncClientWrapper
5
- from .types.document_remote_ingest_request_documents_item import DocumentRemoteIngestRequestDocumentsItem
5
+ from ..types.ingest_remote_document import IngestRemoteDocument
6
6
  from ..core.request_options import RequestOptions
7
7
  from ..types.ingest_response import IngestResponse
8
8
  from ..core.serialization import convert_and_respect_annotation_metadata
@@ -11,8 +11,8 @@ from ..errors.bad_request_error import BadRequestError
11
11
  from ..errors.unauthorized_error import UnauthorizedError
12
12
  from json.decoder import JSONDecodeError
13
13
  from ..core.api_error import ApiError
14
- from .types.documents_ingest_local_request_files_item import DocumentsIngestLocalRequestFilesItem
15
- from .types.website_crawl_request_websites_item import WebsiteCrawlRequestWebsitesItem
14
+ from ..types.ingest_local_document import IngestLocalDocument
15
+ from ..types.crawl_website_source import CrawlWebsiteSource
16
16
  from ..types.process_status_response import ProcessStatusResponse
17
17
  from ..core.jsonable_encoder import jsonable_encoder
18
18
  from ..types.sort import Sort
@@ -34,7 +34,7 @@ class DocumentsClient:
34
34
  def ingest_remote(
35
35
  self,
36
36
  *,
37
- documents: typing.Sequence[DocumentRemoteIngestRequestDocumentsItem],
37
+ documents: typing.Sequence[IngestRemoteDocument],
38
38
  request_options: typing.Optional[RequestOptions] = None,
39
39
  ) -> IngestResponse:
40
40
  """
@@ -44,7 +44,7 @@ class DocumentsClient:
44
44
 
45
45
  Parameters
46
46
  ----------
47
- documents : typing.Sequence[DocumentRemoteIngestRequestDocumentsItem]
47
+ documents : typing.Sequence[IngestRemoteDocument]
48
48
 
49
49
  request_options : typing.Optional[RequestOptions]
50
50
  Request-specific configuration.
@@ -56,15 +56,14 @@ class DocumentsClient:
56
56
 
57
57
  Examples
58
58
  --------
59
- from groundx import GroundX
60
- from groundx.documents import DocumentRemoteIngestRequestDocumentsItem
59
+ from groundx import GroundX, IngestRemoteDocument
61
60
 
62
61
  client = GroundX(
63
62
  api_key="YOUR_API_KEY",
64
63
  )
65
64
  client.documents.ingest_remote(
66
65
  documents=[
67
- DocumentRemoteIngestRequestDocumentsItem(
66
+ IngestRemoteDocument(
68
67
  bucket_id=1234,
69
68
  file_name="my_file.txt",
70
69
  file_type="txt",
@@ -79,9 +78,7 @@ class DocumentsClient:
79
78
  method="POST",
80
79
  json={
81
80
  "documents": convert_and_respect_annotation_metadata(
82
- object_=documents,
83
- annotation=typing.Sequence[DocumentRemoteIngestRequestDocumentsItem],
84
- direction="write",
81
+ object_=documents, annotation=typing.Sequence[IngestRemoteDocument], direction="write"
85
82
  ),
86
83
  },
87
84
  headers={
@@ -125,10 +122,7 @@ class DocumentsClient:
125
122
  raise ApiError(status_code=_response.status_code, body=_response_json)
126
123
 
127
124
  def ingest_local(
128
- self,
129
- *,
130
- files: typing.List[DocumentsIngestLocalRequestFilesItem],
131
- request_options: typing.Optional[RequestOptions] = None,
125
+ self, *, files: typing.List[IngestLocalDocument], request_options: typing.Optional[RequestOptions] = None
132
126
  ) -> IngestResponse:
133
127
  """
134
128
  Upload documents hosted on a local file system for ingestion into a GroundX bucket.
@@ -137,7 +131,7 @@ class DocumentsClient:
137
131
 
138
132
  Parameters
139
133
  ----------
140
- files : typing.List[DocumentsIngestLocalRequestFilesItem]
134
+ files : typing.List[IngestLocalDocument]
141
135
 
142
136
  request_options : typing.Optional[RequestOptions]
143
137
  Request-specific configuration.
@@ -149,18 +143,17 @@ class DocumentsClient:
149
143
 
150
144
  Examples
151
145
  --------
152
- from groundx import GroundX
153
- from groundx.documents import DocumentsIngestLocalRequestFilesItem
146
+ from groundx import GroundX, IngestLocalDocument
154
147
 
155
148
  client = GroundX(
156
149
  api_key="YOUR_API_KEY",
157
150
  )
158
151
  client.documents.ingest_local(
159
152
  files=[
160
- DocumentsIngestLocalRequestFilesItem(
161
- bucket_id=1,
162
- file_data="fileData",
163
- file_name="fileName",
153
+ IngestLocalDocument(
154
+ bucket_id=1234,
155
+ file_data="binary data here",
156
+ file_name="my_file.txt",
164
157
  file_type="txt",
165
158
  )
166
159
  ],
@@ -211,10 +204,7 @@ class DocumentsClient:
211
204
  raise ApiError(status_code=_response.status_code, body=_response_json)
212
205
 
213
206
  def crawl_website(
214
- self,
215
- *,
216
- websites: typing.Sequence[WebsiteCrawlRequestWebsitesItem],
217
- request_options: typing.Optional[RequestOptions] = None,
207
+ self, *, websites: typing.Sequence[CrawlWebsiteSource], request_options: typing.Optional[RequestOptions] = None
218
208
  ) -> IngestResponse:
219
209
  """
220
210
  Upload the content of a publicly accessible website for ingestion into a GroundX bucket. This is done by following links within a specified URL, recursively, up to a specified depth or number of pages.
@@ -223,7 +213,7 @@ class DocumentsClient:
223
213
 
224
214
  Parameters
225
215
  ----------
226
- websites : typing.Sequence[WebsiteCrawlRequestWebsitesItem]
216
+ websites : typing.Sequence[CrawlWebsiteSource]
227
217
 
228
218
  request_options : typing.Optional[RequestOptions]
229
219
  Request-specific configuration.
@@ -235,15 +225,14 @@ class DocumentsClient:
235
225
 
236
226
  Examples
237
227
  --------
238
- from groundx import GroundX
239
- from groundx.documents import WebsiteCrawlRequestWebsitesItem
228
+ from groundx import CrawlWebsiteSource, GroundX
240
229
 
241
230
  client = GroundX(
242
231
  api_key="YOUR_API_KEY",
243
232
  )
244
233
  client.documents.crawl_website(
245
234
  websites=[
246
- WebsiteCrawlRequestWebsitesItem(
235
+ CrawlWebsiteSource(
247
236
  bucket_id=123,
248
237
  source_url="https://my.website.com",
249
238
  )
@@ -255,7 +244,7 @@ class DocumentsClient:
255
244
  method="POST",
256
245
  json={
257
246
  "websites": convert_and_respect_annotation_metadata(
258
- object_=websites, annotation=typing.Sequence[WebsiteCrawlRequestWebsitesItem], direction="write"
247
+ object_=websites, annotation=typing.Sequence[CrawlWebsiteSource], direction="write"
259
248
  ),
260
249
  },
261
250
  headers={
@@ -778,7 +767,7 @@ class AsyncDocumentsClient:
778
767
  async def ingest_remote(
779
768
  self,
780
769
  *,
781
- documents: typing.Sequence[DocumentRemoteIngestRequestDocumentsItem],
770
+ documents: typing.Sequence[IngestRemoteDocument],
782
771
  request_options: typing.Optional[RequestOptions] = None,
783
772
  ) -> IngestResponse:
784
773
  """
@@ -788,7 +777,7 @@ class AsyncDocumentsClient:
788
777
 
789
778
  Parameters
790
779
  ----------
791
- documents : typing.Sequence[DocumentRemoteIngestRequestDocumentsItem]
780
+ documents : typing.Sequence[IngestRemoteDocument]
792
781
 
793
782
  request_options : typing.Optional[RequestOptions]
794
783
  Request-specific configuration.
@@ -802,8 +791,7 @@ class AsyncDocumentsClient:
802
791
  --------
803
792
  import asyncio
804
793
 
805
- from groundx import AsyncGroundX
806
- from groundx.documents import DocumentRemoteIngestRequestDocumentsItem
794
+ from groundx import AsyncGroundX, IngestRemoteDocument
807
795
 
808
796
  client = AsyncGroundX(
809
797
  api_key="YOUR_API_KEY",
@@ -813,7 +801,7 @@ class AsyncDocumentsClient:
813
801
  async def main() -> None:
814
802
  await client.documents.ingest_remote(
815
803
  documents=[
816
- DocumentRemoteIngestRequestDocumentsItem(
804
+ IngestRemoteDocument(
817
805
  bucket_id=1234,
818
806
  file_name="my_file.txt",
819
807
  file_type="txt",
@@ -831,9 +819,7 @@ class AsyncDocumentsClient:
831
819
  method="POST",
832
820
  json={
833
821
  "documents": convert_and_respect_annotation_metadata(
834
- object_=documents,
835
- annotation=typing.Sequence[DocumentRemoteIngestRequestDocumentsItem],
836
- direction="write",
822
+ object_=documents, annotation=typing.Sequence[IngestRemoteDocument], direction="write"
837
823
  ),
838
824
  },
839
825
  headers={
@@ -877,10 +863,7 @@ class AsyncDocumentsClient:
877
863
  raise ApiError(status_code=_response.status_code, body=_response_json)
878
864
 
879
865
  async def ingest_local(
880
- self,
881
- *,
882
- files: typing.List[DocumentsIngestLocalRequestFilesItem],
883
- request_options: typing.Optional[RequestOptions] = None,
866
+ self, *, files: typing.List[IngestLocalDocument], request_options: typing.Optional[RequestOptions] = None
884
867
  ) -> IngestResponse:
885
868
  """
886
869
  Upload documents hosted on a local file system for ingestion into a GroundX bucket.
@@ -889,7 +872,7 @@ class AsyncDocumentsClient:
889
872
 
890
873
  Parameters
891
874
  ----------
892
- files : typing.List[DocumentsIngestLocalRequestFilesItem]
875
+ files : typing.List[IngestLocalDocument]
893
876
 
894
877
  request_options : typing.Optional[RequestOptions]
895
878
  Request-specific configuration.
@@ -903,8 +886,7 @@ class AsyncDocumentsClient:
903
886
  --------
904
887
  import asyncio
905
888
 
906
- from groundx import AsyncGroundX
907
- from groundx.documents import DocumentsIngestLocalRequestFilesItem
889
+ from groundx import AsyncGroundX, IngestLocalDocument
908
890
 
909
891
  client = AsyncGroundX(
910
892
  api_key="YOUR_API_KEY",
@@ -914,10 +896,10 @@ class AsyncDocumentsClient:
914
896
  async def main() -> None:
915
897
  await client.documents.ingest_local(
916
898
  files=[
917
- DocumentsIngestLocalRequestFilesItem(
918
- bucket_id=1,
919
- file_data="fileData",
920
- file_name="fileName",
899
+ IngestLocalDocument(
900
+ bucket_id=1234,
901
+ file_data="binary data here",
902
+ file_name="my_file.txt",
921
903
  file_type="txt",
922
904
  )
923
905
  ],
@@ -971,10 +953,7 @@ class AsyncDocumentsClient:
971
953
  raise ApiError(status_code=_response.status_code, body=_response_json)
972
954
 
973
955
  async def crawl_website(
974
- self,
975
- *,
976
- websites: typing.Sequence[WebsiteCrawlRequestWebsitesItem],
977
- request_options: typing.Optional[RequestOptions] = None,
956
+ self, *, websites: typing.Sequence[CrawlWebsiteSource], request_options: typing.Optional[RequestOptions] = None
978
957
  ) -> IngestResponse:
979
958
  """
980
959
  Upload the content of a publicly accessible website for ingestion into a GroundX bucket. This is done by following links within a specified URL, recursively, up to a specified depth or number of pages.
@@ -983,7 +962,7 @@ class AsyncDocumentsClient:
983
962
 
984
963
  Parameters
985
964
  ----------
986
- websites : typing.Sequence[WebsiteCrawlRequestWebsitesItem]
965
+ websites : typing.Sequence[CrawlWebsiteSource]
987
966
 
988
967
  request_options : typing.Optional[RequestOptions]
989
968
  Request-specific configuration.
@@ -997,8 +976,7 @@ class AsyncDocumentsClient:
997
976
  --------
998
977
  import asyncio
999
978
 
1000
- from groundx import AsyncGroundX
1001
- from groundx.documents import WebsiteCrawlRequestWebsitesItem
979
+ from groundx import AsyncGroundX, CrawlWebsiteSource
1002
980
 
1003
981
  client = AsyncGroundX(
1004
982
  api_key="YOUR_API_KEY",
@@ -1008,7 +986,7 @@ class AsyncDocumentsClient:
1008
986
  async def main() -> None:
1009
987
  await client.documents.crawl_website(
1010
988
  websites=[
1011
- WebsiteCrawlRequestWebsitesItem(
989
+ CrawlWebsiteSource(
1012
990
  bucket_id=123,
1013
991
  source_url="https://my.website.com",
1014
992
  )
@@ -1023,7 +1001,7 @@ class AsyncDocumentsClient:
1023
1001
  method="POST",
1024
1002
  json={
1025
1003
  "websites": convert_and_respect_annotation_metadata(
1026
- object_=websites, annotation=typing.Sequence[WebsiteCrawlRequestWebsitesItem], direction="write"
1004
+ object_=websites, annotation=typing.Sequence[CrawlWebsiteSource], direction="write"
1027
1005
  ),
1028
1006
  },
1029
1007
  headers={
groundx/types/__init__.py CHANGED
@@ -6,6 +6,7 @@ from .bucket_list_response import BucketListResponse
6
6
  from .bucket_response import BucketResponse
7
7
  from .bucket_update_detail import BucketUpdateDetail
8
8
  from .bucket_update_response import BucketUpdateResponse
9
+ from .crawl_website_source import CrawlWebsiteSource
9
10
  from .customer_detail import CustomerDetail
10
11
  from .customer_response import CustomerResponse
11
12
  from .document_detail import DocumentDetail
@@ -20,6 +21,8 @@ from .health_response import HealthResponse
20
21
  from .health_response_health import HealthResponseHealth
21
22
  from .health_service import HealthService
22
23
  from .health_service_status import HealthServiceStatus
24
+ from .ingest_local_document import IngestLocalDocument
25
+ from .ingest_remote_document import IngestRemoteDocument
23
26
  from .ingest_response import IngestResponse
24
27
  from .ingest_response_ingest import IngestResponseIngest
25
28
  from .message_response import MessageResponse
@@ -47,6 +50,7 @@ __all__ = [
47
50
  "BucketResponse",
48
51
  "BucketUpdateDetail",
49
52
  "BucketUpdateResponse",
53
+ "CrawlWebsiteSource",
50
54
  "CustomerDetail",
51
55
  "CustomerResponse",
52
56
  "DocumentDetail",
@@ -61,6 +65,8 @@ __all__ = [
61
65
  "HealthResponseHealth",
62
66
  "HealthService",
63
67
  "HealthServiceStatus",
68
+ "IngestLocalDocument",
69
+ "IngestRemoteDocument",
64
70
  "IngestResponse",
65
71
  "IngestResponseIngest",
66
72
  "MessageResponse",
@@ -1,14 +1,14 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from ...core.pydantic_utilities import UniversalBaseModel
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
4
  import typing_extensions
5
- from ...core.serialization import FieldMetadata
5
+ from ..core.serialization import FieldMetadata
6
6
  import pydantic
7
7
  import typing
8
- from ...core.pydantic_utilities import IS_PYDANTIC_V2
8
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
9
 
10
10
 
11
- class WebsiteCrawlRequestWebsitesItem(UniversalBaseModel):
11
+ class CrawlWebsiteSource(UniversalBaseModel):
12
12
  bucket_id: typing_extensions.Annotated[int, FieldMetadata(alias="bucketId")] = pydantic.Field()
13
13
  """
14
14
  the bucketId of the bucket which this website will be ingested to.
@@ -1,15 +1,15 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from ...core.pydantic_utilities import UniversalBaseModel
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
4
  import typing_extensions
5
- from ...core.serialization import FieldMetadata
5
+ from ..core.serialization import FieldMetadata
6
6
  import pydantic
7
- from ...types.document_type import DocumentType
7
+ from .document_type import DocumentType
8
8
  import typing
9
- from ...core.pydantic_utilities import IS_PYDANTIC_V2
9
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
 
11
11
 
12
- class DocumentsIngestLocalRequestFilesItem(UniversalBaseModel):
12
+ class IngestLocalDocument(UniversalBaseModel):
13
13
  bucket_id: typing_extensions.Annotated[int, FieldMetadata(alias="bucketId")] = pydantic.Field()
14
14
  """
15
15
  the bucketId of the bucket which this local file will be ingested to.
@@ -1,15 +1,15 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from ...core.pydantic_utilities import UniversalBaseModel
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
4
  import typing_extensions
5
- from ...core.serialization import FieldMetadata
5
+ from ..core.serialization import FieldMetadata
6
6
  import pydantic
7
7
  import typing
8
- from ...types.document_type import DocumentType
9
- from ...core.pydantic_utilities import IS_PYDANTIC_V2
8
+ from .document_type import DocumentType
9
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
10
 
11
11
 
12
- class DocumentRemoteIngestRequestDocumentsItem(UniversalBaseModel):
12
+ class IngestRemoteDocument(UniversalBaseModel):
13
13
  bucket_id: typing_extensions.Annotated[int, FieldMetadata(alias="bucketId")] = pydantic.Field()
14
14
  """
15
15
  the bucketId of the bucket which this remote file will be ingested to.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: groundx
3
- Version: 2.0.14
3
+ Version: 2.0.16
4
4
  Summary:
5
5
  License: MIT
6
6
  Requires-Python: >=3.8,<4.0
@@ -52,15 +52,14 @@ A full reference for this library is available [here](./reference.md).
52
52
  Instantiate and use the client with the following:
53
53
 
54
54
  ```python
55
- from groundx import GroundX
56
- from groundx.documents import DocumentRemoteIngestRequestDocumentsItem
55
+ from groundx import GroundX, IngestRemoteDocument
57
56
 
58
57
  client = GroundX(
59
58
  api_key="YOUR_API_KEY",
60
59
  )
61
60
  client.documents.ingest_remote(
62
61
  documents=[
63
- DocumentRemoteIngestRequestDocumentsItem(
62
+ IngestRemoteDocument(
64
63
  bucket_id=1234,
65
64
  file_name="my_file.txt",
66
65
  file_type="txt",
@@ -78,8 +77,7 @@ The SDK also exports an `async` client so that you can make non-blocking calls t
78
77
  ```python
79
78
  import asyncio
80
79
 
81
- from groundx import AsyncGroundX
82
- from groundx.documents import DocumentRemoteIngestRequestDocumentsItem
80
+ from groundx import AsyncGroundX, IngestRemoteDocument
83
81
 
84
82
  client = AsyncGroundX(
85
83
  api_key="YOUR_API_KEY",
@@ -89,7 +87,7 @@ client = AsyncGroundX(
89
87
  async def main() -> None:
90
88
  await client.documents.ingest_remote(
91
89
  documents=[
92
- DocumentRemoteIngestRequestDocumentsItem(
90
+ IngestRemoteDocument(
93
91
  bucket_id=1234,
94
92
  file_name="my_file.txt",
95
93
  file_type="txt",
@@ -1,10 +1,10 @@
1
- groundx/__init__.py,sha256=LoqXol72hAjLcTlZd2VfzvZJ_BVWAUPHqub4fwkY0pE,2978
1
+ groundx/__init__.py,sha256=22BLAf5omcgumWGCWHDb8o-ha8TnNbkO8LcEvpcYU6A,2851
2
2
  groundx/buckets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
3
  groundx/buckets/client.py,sha256=TofNrkej1AC_-FU5rf_y8KG8ubFUpHtLa8PQ7rqax6E,26537
4
4
  groundx/client.py,sha256=Q1Kw0z6K-z-ShhNyuuPe5fYonM9M2I_55-ukUrUWk1U,6507
5
5
  groundx/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
6
6
  groundx/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
7
- groundx/core/client_wrapper.py,sha256=tGKKsvVuRWrBfZBKCMnZ8-HLxQceh8itn0sJcf9G4Y8,1803
7
+ groundx/core/client_wrapper.py,sha256=wcxyqdGn-zWPv0Bsf2g9MQ4dLpQZZXi_P-jQmMCcODM,1803
8
8
  groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
9
9
  groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
10
10
  groundx/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
@@ -16,12 +16,8 @@ groundx/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxp
16
16
  groundx/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
17
17
  groundx/customer/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
18
18
  groundx/customer/client.py,sha256=C_JANeDewRD1Kg-q7LPxdiOSWbYSTOiYlBYZLRYPI44,3467
19
- groundx/documents/__init__.py,sha256=H7q_UJJyRsjDdapoH7WeMtB89eUL6G3Pq3UQLCbvqgc,359
20
- groundx/documents/client.py,sha256=eNQxQQAof1eYv2qQ0uY0B81LdF9U1zJdLm2jtlZppwY,59333
21
- groundx/documents/types/__init__.py,sha256=2hClhaZpkoWywGLA1VeO9Ht81soK1x3bdFg74jQFZfo,484
22
- groundx/documents/types/document_remote_ingest_request_documents_item.py,sha256=IjZu1L3MGUxW2qydZlns5_DsMgOLNyAWDvKpy9VL6iE,1714
23
- groundx/documents/types/documents_ingest_local_request_files_item.py,sha256=EpD7TE1us1DAXdcPvI1li-AGUNpEy_f13bBXidmCAL8,1630
24
- groundx/documents/types/website_crawl_request_websites_item.py,sha256=6So4stWecfZYPbiQWg6-FgsfIqV4g2ujFXXgn70evNI,1597
19
+ groundx/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
20
+ groundx/documents/client.py,sha256=hxChT8fhcSVp_y2zBam2gBd6gZvndhHEYE2UN1Mn7AE,58386
25
21
  groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
26
22
  groundx/errors/__init__.py,sha256=-prNYsFd8xxM4va0vR1raZjcd10tllOJKyEWjX_pwdU,214
27
23
  groundx/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
@@ -35,13 +31,14 @@ groundx/search/__init__.py,sha256=RagVzjShP33mDg9o4N3kGzV0egL1RYNjCpXPE8VzMYE,14
35
31
  groundx/search/client.py,sha256=10ifg9GyIwIZF13ULfCXF8iFIydq6H6QRDrGPDjpanw,19756
36
32
  groundx/search/types/__init__.py,sha256=fNFXQloPa1PHHO8VZim6KQNMA9N5EZtfSkissdxtY_c,165
37
33
  groundx/search/types/search_content_request_id.py,sha256=us7mYdzR0qPur_wR5I9BhHaLEzC5nLBRna6-xq4M1ec,128
38
- groundx/types/__init__.py,sha256=2GTGHb5P0h2dTD-FzF-G6ViIhdICL2DMgTBhB9WNH8g,3321
34
+ groundx/types/__init__.py,sha256=yCuwY3aySGDKKYYbxFX_v0kyG_ePu1_M0ZryOwMZJVk,3567
39
35
  groundx/types/bounding_box_detail.py,sha256=51qcen326NTHY2ZqH1cFXut0_MCmk39EbLoDAwotdq4,1832
40
36
  groundx/types/bucket_detail.py,sha256=bQjCvfyWydjItmzNNTvH-iWxNDOggd7R7X1alFZzlEY,1511
41
37
  groundx/types/bucket_list_response.py,sha256=jC0NBsLCYDSwQrBzuW0g3PWFycjtKl8YRkKhic_-1DA,650
42
38
  groundx/types/bucket_response.py,sha256=E8V7H2_TVKdmMsGCBjwzdf2bg4rUjiXFnhXtVGVCqZQ,608
43
39
  groundx/types/bucket_update_detail.py,sha256=B4atQMDSXEdx7otcDbvgsrAHtXNz9swMnOsXRe25coc,738
44
40
  groundx/types/bucket_update_response.py,sha256=h5RJTEpc4WPI_C4sPvsJZo7IxKppnPR-I9VGEQryRlc,633
41
+ groundx/types/crawl_website_source.py,sha256=K4-IoK__K4OekBwmJhClL2rZD1P4rFPR2-Ck02jP2uw,1581
45
42
  groundx/types/customer_detail.py,sha256=RNm0qXvKx6YvVmkVJZeCNIz7n8_siFMXJ_AGtH3i5Z0,1094
46
43
  groundx/types/customer_response.py,sha256=_RbuanXhCWQkCeQ0dkwPgsjNBoBgNpixiNfRpXcMew8,618
47
44
  groundx/types/document_detail.py,sha256=i1UfcQAGYo9v1HwrrpzQPw_O0qA7IOXwOUuPV1yU8nI,2323
@@ -56,6 +53,8 @@ groundx/types/health_response.py,sha256=3UpYL2IZb56tTo-fOpSU-0OTRyWgpYiB3pMU3sfj
56
53
  groundx/types/health_response_health.py,sha256=I0QeEljFp6l5LCJbCTArW031Om84egePgnGdtE6WXlI,632
57
54
  groundx/types/health_service.py,sha256=M1-h1EJSpAXw-j3pY-09_g_WKkO0spdj8e7pgPzSGf0,1083
58
55
  groundx/types/health_service_status.py,sha256=ugKJXlx8QGi83n_J6s1frFrW1hYfOn3Dlb_pPNexwMA,185
56
+ groundx/types/ingest_local_document.py,sha256=2T1HXR2a-BDj5LEOTM98Sl4sgjVMWbVShQLn8MTR6QA,1602
57
+ groundx/types/ingest_remote_document.py,sha256=xlPA4SYoUgoGXpxZhyORdezxIPGmr4wneav2ZEVmmOY,1683
59
58
  groundx/types/ingest_response.py,sha256=139rn8wpT44jlUzYXiy0r8XzN2U_OtdLltpSbRU0TyA,633
60
59
  groundx/types/ingest_response_ingest.py,sha256=8FKApYNvS6KFxEKm05pKpKJ0BAagxoE0cWeTt-qjm1g,781
61
60
  groundx/types/message_response.py,sha256=g_FJJyXYg_3fjZQueXkcy11q-qUfZGdVdALddHBieh4,585
@@ -76,7 +75,7 @@ groundx/types/sort_order.py,sha256=hfJkStz6zHf3iWQFaVLkNCZPdyj5JS7TsQlN4Ij8Q5A,1
76
75
  groundx/types/subscription_detail.py,sha256=WNfUw2EMVECIvNYcV2s51zZ6T3Utc4zYXw63bPaeM6U,768
77
76
  groundx/types/subscription_detail_meters.py,sha256=lBa8-1QlMVHjr5RLGqhiTKnD1KMM0AAHTWvz9TVtG8w,830
78
77
  groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
79
- groundx-2.0.14.dist-info/LICENSE,sha256=8dMPYAFBTA7O4DUxhrEKEks8CL2waCMYM6dHohW4xrI,1065
80
- groundx-2.0.14.dist-info/METADATA,sha256=17yAs5nZtJR8qqezCNlXAfPBUTwMaUYWjgzM90Af0Kk,5344
81
- groundx-2.0.14.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
82
- groundx-2.0.14.dist-info/RECORD,,
78
+ groundx-2.0.16.dist-info/LICENSE,sha256=8dMPYAFBTA7O4DUxhrEKEks8CL2waCMYM6dHohW4xrI,1065
79
+ groundx-2.0.16.dist-info/METADATA,sha256=M0848SdVxMLZGlJo73ReJwhkVSU9R4WfkHPh3LkZo9k,5206
80
+ groundx-2.0.16.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
81
+ groundx-2.0.16.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from .document_remote_ingest_request_documents_item import DocumentRemoteIngestRequestDocumentsItem
4
- from .documents_ingest_local_request_files_item import DocumentsIngestLocalRequestFilesItem
5
- from .website_crawl_request_websites_item import WebsiteCrawlRequestWebsitesItem
6
-
7
- __all__ = [
8
- "DocumentRemoteIngestRequestDocumentsItem",
9
- "DocumentsIngestLocalRequestFilesItem",
10
- "WebsiteCrawlRequestWebsitesItem",
11
- ]