groundx 2.0.11__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 +107 -0
- groundx/buckets/__init__.py +2 -0
- groundx/buckets/client.py +761 -0
- groundx/client.py +160 -0
- groundx/core/__init__.py +47 -0
- groundx/core/api_error.py +15 -0
- groundx/core/client_wrapper.py +54 -0
- groundx/core/datetime_utils.py +28 -0
- groundx/core/file.py +67 -0
- groundx/core/http_client.py +499 -0
- groundx/core/jsonable_encoder.py +101 -0
- groundx/core/pydantic_utilities.py +296 -0
- groundx/core/query_encoder.py +58 -0
- groundx/core/remove_none_from_dict.py +11 -0
- groundx/core/request_options.py +35 -0
- groundx/core/serialization.py +272 -0
- groundx/customer/__init__.py +2 -0
- groundx/customer/client.py +112 -0
- groundx/documents/__init__.py +5 -0
- groundx/documents/client.py +1544 -0
- groundx/documents/types/__init__.py +6 -0
- groundx/documents/types/document_remote_ingest_request_documents_item.py +45 -0
- groundx/documents/types/website_crawl_request_websites_item.py +46 -0
- groundx/environment.py +7 -0
- groundx/errors/__init__.py +6 -0
- groundx/errors/bad_request_error.py +9 -0
- groundx/errors/unauthorized_error.py +9 -0
- groundx/groups/__init__.py +2 -0
- groundx/groups/client.py +1098 -0
- groundx/health/__init__.py +2 -0
- groundx/health/client.py +236 -0
- groundx/py.typed +0 -0
- groundx/search/__init__.py +5 -0
- groundx/search/client.py +489 -0
- groundx/search/types/__init__.py +5 -0
- groundx/search/types/search_content_request_id.py +5 -0
- groundx/types/__init__.py +83 -0
- groundx/types/bounding_box_detail.py +54 -0
- groundx/types/bucket_detail.py +46 -0
- groundx/types/bucket_list_response.py +20 -0
- groundx/types/bucket_response.py +20 -0
- groundx/types/bucket_update_detail.py +22 -0
- groundx/types/bucket_update_response.py +20 -0
- groundx/types/customer_detail.py +39 -0
- groundx/types/customer_response.py +20 -0
- groundx/types/document_detail.py +62 -0
- groundx/types/document_list_response.py +23 -0
- groundx/types/document_lookup_response.py +32 -0
- groundx/types/document_response.py +20 -0
- groundx/types/document_type.py +7 -0
- groundx/types/group_detail.py +52 -0
- groundx/types/group_list_response.py +20 -0
- groundx/types/group_response.py +20 -0
- groundx/types/health_response.py +20 -0
- groundx/types/health_response_health.py +20 -0
- groundx/types/health_service.py +36 -0
- groundx/types/health_service_status.py +5 -0
- groundx/types/ingest_response.py +20 -0
- groundx/types/ingest_response_ingest.py +23 -0
- groundx/types/message_response.py +19 -0
- groundx/types/meter_detail.py +40 -0
- groundx/types/process_status_response.py +20 -0
- groundx/types/process_status_response_ingest.py +26 -0
- groundx/types/process_status_response_ingest_progress.py +26 -0
- groundx/types/process_status_response_ingest_progress_cancelled.py +21 -0
- groundx/types/process_status_response_ingest_progress_complete.py +21 -0
- groundx/types/process_status_response_ingest_progress_errors.py +21 -0
- groundx/types/process_status_response_ingest_progress_processing.py +21 -0
- groundx/types/processing_status.py +5 -0
- groundx/types/search_response.py +20 -0
- groundx/types/search_response_search.py +59 -0
- groundx/types/search_result_item.py +96 -0
- groundx/types/sort.py +5 -0
- groundx/types/sort_order.py +5 -0
- groundx/types/subscription_detail.py +24 -0
- groundx/types/subscription_detail_meters.py +23 -0
- groundx/version.py +3 -0
- groundx-2.0.11.dist-info/METADATA +177 -0
- groundx-2.0.11.dist-info/RECORD +80 -0
- groundx-2.0.11.dist-info/WHEEL +4 -0
groundx/__init__.py
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
2
|
+
|
3
|
+
from .types import (
|
4
|
+
BoundingBoxDetail,
|
5
|
+
BucketDetail,
|
6
|
+
BucketListResponse,
|
7
|
+
BucketResponse,
|
8
|
+
BucketUpdateDetail,
|
9
|
+
BucketUpdateResponse,
|
10
|
+
CustomerDetail,
|
11
|
+
CustomerResponse,
|
12
|
+
DocumentDetail,
|
13
|
+
DocumentListResponse,
|
14
|
+
DocumentLookupResponse,
|
15
|
+
DocumentResponse,
|
16
|
+
DocumentType,
|
17
|
+
GroupDetail,
|
18
|
+
GroupListResponse,
|
19
|
+
GroupResponse,
|
20
|
+
HealthResponse,
|
21
|
+
HealthResponseHealth,
|
22
|
+
HealthService,
|
23
|
+
HealthServiceStatus,
|
24
|
+
IngestResponse,
|
25
|
+
IngestResponseIngest,
|
26
|
+
MessageResponse,
|
27
|
+
MeterDetail,
|
28
|
+
ProcessStatusResponse,
|
29
|
+
ProcessStatusResponseIngest,
|
30
|
+
ProcessStatusResponseIngestProgress,
|
31
|
+
ProcessStatusResponseIngestProgressCancelled,
|
32
|
+
ProcessStatusResponseIngestProgressComplete,
|
33
|
+
ProcessStatusResponseIngestProgressErrors,
|
34
|
+
ProcessStatusResponseIngestProgressProcessing,
|
35
|
+
ProcessingStatus,
|
36
|
+
SearchResponse,
|
37
|
+
SearchResponseSearch,
|
38
|
+
SearchResultItem,
|
39
|
+
Sort,
|
40
|
+
SortOrder,
|
41
|
+
SubscriptionDetail,
|
42
|
+
SubscriptionDetailMeters,
|
43
|
+
)
|
44
|
+
from .errors import BadRequestError, UnauthorizedError
|
45
|
+
from . import buckets, customer, documents, groups, health, search
|
46
|
+
from .client import AsyncGroundX, GroundX
|
47
|
+
from .documents import DocumentRemoteIngestRequestDocumentsItem, WebsiteCrawlRequestWebsitesItem
|
48
|
+
from .environment import GroundXEnvironment
|
49
|
+
from .search import SearchContentRequestId
|
50
|
+
from .version import __version__
|
51
|
+
|
52
|
+
__all__ = [
|
53
|
+
"AsyncGroundX",
|
54
|
+
"BadRequestError",
|
55
|
+
"BoundingBoxDetail",
|
56
|
+
"BucketDetail",
|
57
|
+
"BucketListResponse",
|
58
|
+
"BucketResponse",
|
59
|
+
"BucketUpdateDetail",
|
60
|
+
"BucketUpdateResponse",
|
61
|
+
"CustomerDetail",
|
62
|
+
"CustomerResponse",
|
63
|
+
"DocumentDetail",
|
64
|
+
"DocumentListResponse",
|
65
|
+
"DocumentLookupResponse",
|
66
|
+
"DocumentRemoteIngestRequestDocumentsItem",
|
67
|
+
"DocumentResponse",
|
68
|
+
"DocumentType",
|
69
|
+
"GroundX",
|
70
|
+
"GroundXEnvironment",
|
71
|
+
"GroupDetail",
|
72
|
+
"GroupListResponse",
|
73
|
+
"GroupResponse",
|
74
|
+
"HealthResponse",
|
75
|
+
"HealthResponseHealth",
|
76
|
+
"HealthService",
|
77
|
+
"HealthServiceStatus",
|
78
|
+
"IngestResponse",
|
79
|
+
"IngestResponseIngest",
|
80
|
+
"MessageResponse",
|
81
|
+
"MeterDetail",
|
82
|
+
"ProcessStatusResponse",
|
83
|
+
"ProcessStatusResponseIngest",
|
84
|
+
"ProcessStatusResponseIngestProgress",
|
85
|
+
"ProcessStatusResponseIngestProgressCancelled",
|
86
|
+
"ProcessStatusResponseIngestProgressComplete",
|
87
|
+
"ProcessStatusResponseIngestProgressErrors",
|
88
|
+
"ProcessStatusResponseIngestProgressProcessing",
|
89
|
+
"ProcessingStatus",
|
90
|
+
"SearchContentRequestId",
|
91
|
+
"SearchResponse",
|
92
|
+
"SearchResponseSearch",
|
93
|
+
"SearchResultItem",
|
94
|
+
"Sort",
|
95
|
+
"SortOrder",
|
96
|
+
"SubscriptionDetail",
|
97
|
+
"SubscriptionDetailMeters",
|
98
|
+
"UnauthorizedError",
|
99
|
+
"WebsiteCrawlRequestWebsitesItem",
|
100
|
+
"__version__",
|
101
|
+
"buckets",
|
102
|
+
"customer",
|
103
|
+
"documents",
|
104
|
+
"groups",
|
105
|
+
"health",
|
106
|
+
"search",
|
107
|
+
]
|