simpleapps-com-augur-api 0.8.10__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 (96) hide show
  1. augur_api/__init__.py +43 -0
  2. augur_api/client.py +453 -0
  3. augur_api/core/__init__.py +40 -0
  4. augur_api/core/config.py +75 -0
  5. augur_api/core/errors.py +173 -0
  6. augur_api/core/http_client.py +426 -0
  7. augur_api/core/schemas.py +105 -0
  8. augur_api/py.typed +0 -0
  9. augur_api/services/__init__.py +13 -0
  10. augur_api/services/agr_info/__init__.py +47 -0
  11. augur_api/services/agr_info/client.py +326 -0
  12. augur_api/services/agr_info/schemas.py +123 -0
  13. augur_api/services/agr_site/__init__.py +79 -0
  14. augur_api/services/agr_site/client.py +384 -0
  15. augur_api/services/agr_site/schemas.py +268 -0
  16. augur_api/services/agr_work/__init__.py +7 -0
  17. augur_api/services/agr_work/client.py +32 -0
  18. augur_api/services/agr_work/schemas.py +11 -0
  19. augur_api/services/avalara/__init__.py +17 -0
  20. augur_api/services/avalara/client.py +64 -0
  21. augur_api/services/avalara/schemas.py +34 -0
  22. augur_api/services/base.py +54 -0
  23. augur_api/services/basecamp2/__init__.py +65 -0
  24. augur_api/services/basecamp2/client.py +568 -0
  25. augur_api/services/basecamp2/schemas.py +227 -0
  26. augur_api/services/brand_folder/__init__.py +31 -0
  27. augur_api/services/brand_folder/client.py +206 -0
  28. augur_api/services/brand_folder/schemas.py +133 -0
  29. augur_api/services/commerce/__init__.py +56 -0
  30. augur_api/services/commerce/client.py +298 -0
  31. augur_api/services/commerce/schemas.py +167 -0
  32. augur_api/services/customers/__init__.py +69 -0
  33. augur_api/services/customers/client.py +437 -0
  34. augur_api/services/customers/schemas.py +273 -0
  35. augur_api/services/gregorovich/__init__.py +31 -0
  36. augur_api/services/gregorovich/client.py +151 -0
  37. augur_api/services/gregorovich/schemas.py +42 -0
  38. augur_api/services/items/__init__.py +302 -0
  39. augur_api/services/items/client.py +1223 -0
  40. augur_api/services/items/schemas.py +722 -0
  41. augur_api/services/joomla/__init__.py +59 -0
  42. augur_api/services/joomla/client.py +333 -0
  43. augur_api/services/joomla/schemas.py +286 -0
  44. augur_api/services/legacy/__init__.py +66 -0
  45. augur_api/services/legacy/client.py +391 -0
  46. augur_api/services/legacy/schemas.py +115 -0
  47. augur_api/services/logistics/__init__.py +34 -0
  48. augur_api/services/logistics/client.py +116 -0
  49. augur_api/services/logistics/schemas.py +65 -0
  50. augur_api/services/nexus/__init__.py +89 -0
  51. augur_api/services/nexus/client.py +589 -0
  52. augur_api/services/nexus/schemas.py +171 -0
  53. augur_api/services/open_search/__init__.py +58 -0
  54. augur_api/services/open_search/client.py +285 -0
  55. augur_api/services/open_search/schemas.py +146 -0
  56. augur_api/services/orders/__init__.py +51 -0
  57. augur_api/services/orders/client.py +299 -0
  58. augur_api/services/orders/schemas.py +195 -0
  59. augur_api/services/p21_apis/__init__.py +83 -0
  60. augur_api/services/p21_apis/client.py +420 -0
  61. augur_api/services/p21_apis/schemas.py +130 -0
  62. augur_api/services/p21_core/__init__.py +29 -0
  63. augur_api/services/p21_core/client.py +395 -0
  64. augur_api/services/p21_core/schemas.py +221 -0
  65. augur_api/services/p21_pim/__init__.py +51 -0
  66. augur_api/services/p21_pim/client.py +319 -0
  67. augur_api/services/p21_pim/schemas.py +128 -0
  68. augur_api/services/p21_sism/__init__.py +60 -0
  69. augur_api/services/p21_sism/client.py +334 -0
  70. augur_api/services/p21_sism/schemas.py +92 -0
  71. augur_api/services/payments/__init__.py +97 -0
  72. augur_api/services/payments/client.py +508 -0
  73. augur_api/services/payments/schemas.py +166 -0
  74. augur_api/services/pricing/__init__.py +43 -0
  75. augur_api/services/pricing/client.py +175 -0
  76. augur_api/services/pricing/schemas.py +146 -0
  77. augur_api/services/resource.py +141 -0
  78. augur_api/services/shipping/__init__.py +17 -0
  79. augur_api/services/shipping/client.py +68 -0
  80. augur_api/services/shipping/schemas.py +38 -0
  81. augur_api/services/slack/__init__.py +23 -0
  82. augur_api/services/slack/client.py +74 -0
  83. augur_api/services/slack/schemas.py +35 -0
  84. augur_api/services/smarty_streets/__init__.py +19 -0
  85. augur_api/services/smarty_streets/client.py +82 -0
  86. augur_api/services/smarty_streets/schemas.py +32 -0
  87. augur_api/services/ups/__init__.py +17 -0
  88. augur_api/services/ups/client.py +72 -0
  89. augur_api/services/ups/schemas.py +41 -0
  90. augur_api/services/vmi/__init__.py +157 -0
  91. augur_api/services/vmi/client.py +586 -0
  92. augur_api/services/vmi/schemas.py +285 -0
  93. simpleapps_com_augur_api-0.8.10.dist-info/METADATA +177 -0
  94. simpleapps_com_augur_api-0.8.10.dist-info/RECORD +96 -0
  95. simpleapps_com_augur_api-0.8.10.dist-info/WHEEL +4 -0
  96. simpleapps_com_augur_api-0.8.10.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,13 @@
1
+ """Service clients for Augur API microservices."""
2
+
3
+ from augur_api.services.base import BaseServiceClient
4
+ from augur_api.services.items import ItemsClient
5
+ from augur_api.services.p21_core import P21CoreClient
6
+ from augur_api.services.resource import BaseResource
7
+
8
+ __all__ = [
9
+ "BaseResource",
10
+ "BaseServiceClient",
11
+ "ItemsClient",
12
+ "P21CoreClient",
13
+ ]
@@ -0,0 +1,47 @@
1
+ """AGR Info service exports."""
2
+
3
+ from augur_api.services.agr_info.client import (
4
+ AgrInfoClient,
5
+ AkashaResource,
6
+ JoomlaResource,
7
+ MicroservicesResource,
8
+ OllamaResource,
9
+ RubricsResource,
10
+ )
11
+ from augur_api.services.agr_info.schemas import (
12
+ AkashaGenerateParams,
13
+ AkashaGenerateResponse,
14
+ JoomlaGenerateParams,
15
+ JoomlaGenerateResponse,
16
+ Microservice,
17
+ MicroserviceCreateParams,
18
+ MicroservicesListParams,
19
+ MicroserviceUpdateParams,
20
+ OllamaTag,
21
+ Rubric,
22
+ RubricCreateParams,
23
+ RubricsListParams,
24
+ RubricUpdateParams,
25
+ )
26
+
27
+ __all__ = [
28
+ "AgrInfoClient",
29
+ "AkashaGenerateParams",
30
+ "AkashaGenerateResponse",
31
+ "AkashaResource",
32
+ "JoomlaGenerateParams",
33
+ "JoomlaGenerateResponse",
34
+ "JoomlaResource",
35
+ "Microservice",
36
+ "MicroserviceCreateParams",
37
+ "MicroservicesListParams",
38
+ "MicroservicesResource",
39
+ "MicroserviceUpdateParams",
40
+ "OllamaResource",
41
+ "OllamaTag",
42
+ "Rubric",
43
+ "RubricCreateParams",
44
+ "RubricsListParams",
45
+ "RubricsResource",
46
+ "RubricUpdateParams",
47
+ ]
@@ -0,0 +1,326 @@
1
+ """AGR Info service client for AI content generation and infrastructure."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import TYPE_CHECKING, Any
6
+
7
+ from augur_api.core.schemas import BaseResponse
8
+ from augur_api.services.agr_info.schemas import (
9
+ AkashaGenerateParams,
10
+ AkashaGenerateResponse,
11
+ ContextGetParams,
12
+ ContextResponse,
13
+ JoomlaGenerateParams,
14
+ JoomlaGenerateResponse,
15
+ Microservice,
16
+ MicroservicesListParams,
17
+ OllamaTag,
18
+ Rubric,
19
+ RubricsListParams,
20
+ )
21
+ from augur_api.services.base import BaseServiceClient
22
+ from augur_api.services.resource import BaseResource
23
+
24
+ if TYPE_CHECKING:
25
+ from augur_api.core.http_client import HTTPClient
26
+
27
+
28
+ class ContextResource(BaseResource):
29
+ """Resource for /context endpoints."""
30
+
31
+ def __init__(self, http: HTTPClient) -> None:
32
+ """Initialize the resource."""
33
+ super().__init__(http, "/context")
34
+
35
+ def get(
36
+ self, site_id: str, params: ContextGetParams | None = None
37
+ ) -> BaseResponse[ContextResponse]:
38
+ """Get context for a site.
39
+
40
+ Args:
41
+ site_id: The target site ID to get context for.
42
+ params: Optional query parameters.
43
+
44
+ Returns:
45
+ BaseResponse containing the context data.
46
+ """
47
+ response = self._get(f"/{site_id}", params=params)
48
+ return BaseResponse[ContextResponse].model_validate(response)
49
+
50
+
51
+ class MicroservicesResource(BaseResource):
52
+ """Resource for /microservices endpoints."""
53
+
54
+ def __init__(self, http: HTTPClient) -> None:
55
+ """Initialize the resource."""
56
+ super().__init__(http, "/microservices")
57
+
58
+ def list(
59
+ self, params: MicroservicesListParams | None = None
60
+ ) -> BaseResponse[list[Microservice]]:
61
+ """List microservices.
62
+
63
+ Args:
64
+ params: Optional query parameters for filtering and pagination.
65
+
66
+ Returns:
67
+ BaseResponse containing a list of Microservice items.
68
+ """
69
+ response = self._get(params=params)
70
+ return BaseResponse[list[Microservice]].model_validate(response)
71
+
72
+ def get(self, microservices_uid: int) -> BaseResponse[Microservice]:
73
+ """Get microservice by UID.
74
+
75
+ Args:
76
+ microservices_uid: The microservice UID.
77
+
78
+ Returns:
79
+ BaseResponse containing the Microservice.
80
+ """
81
+ response = self._get(f"/{microservices_uid}")
82
+ return BaseResponse[Microservice].model_validate(response)
83
+
84
+ def create(self, data: Any) -> BaseResponse[Microservice]:
85
+ """Create a new microservice.
86
+
87
+ Args:
88
+ data: The microservice data to create.
89
+
90
+ Returns:
91
+ BaseResponse containing the created Microservice.
92
+ """
93
+ response = self._post(data=data)
94
+ return BaseResponse[Microservice].model_validate(response)
95
+
96
+ def update(self, microservices_uid: int, data: Any) -> BaseResponse[Microservice]:
97
+ """Update a microservice.
98
+
99
+ Args:
100
+ microservices_uid: The microservice UID.
101
+ data: The microservice data to update.
102
+
103
+ Returns:
104
+ BaseResponse containing the updated Microservice.
105
+ """
106
+ response = self._put(f"/{microservices_uid}", data=data)
107
+ return BaseResponse[Microservice].model_validate(response)
108
+
109
+ def delete(self, microservices_uid: int) -> BaseResponse[bool]:
110
+ """Delete a microservice.
111
+
112
+ Args:
113
+ microservices_uid: The microservice UID.
114
+
115
+ Returns:
116
+ BaseResponse containing deletion success status.
117
+ """
118
+ response = self._delete(f"/{microservices_uid}")
119
+ return BaseResponse[bool].model_validate(response)
120
+
121
+
122
+ class RubricsResource(BaseResource):
123
+ """Resource for /rubrics endpoints."""
124
+
125
+ def __init__(self, http: HTTPClient) -> None:
126
+ """Initialize the resource."""
127
+ super().__init__(http, "/rubrics")
128
+
129
+ def list(self, params: RubricsListParams | None = None) -> BaseResponse[list[Rubric]]:
130
+ """List rubrics.
131
+
132
+ Args:
133
+ params: Optional query parameters for filtering and pagination.
134
+
135
+ Returns:
136
+ BaseResponse containing a list of Rubric items.
137
+ """
138
+ response = self._get(params=params)
139
+ return BaseResponse[list[Rubric]].model_validate(response)
140
+
141
+ def get(self, rubrics_uid: int) -> BaseResponse[Rubric]:
142
+ """Get rubric by UID.
143
+
144
+ Args:
145
+ rubrics_uid: The rubric UID.
146
+
147
+ Returns:
148
+ BaseResponse containing the Rubric.
149
+ """
150
+ response = self._get(f"/{rubrics_uid}")
151
+ return BaseResponse[Rubric].model_validate(response)
152
+
153
+ def create(self, data: Any) -> BaseResponse[Rubric]:
154
+ """Create a new rubric.
155
+
156
+ Args:
157
+ data: The rubric data to create.
158
+
159
+ Returns:
160
+ BaseResponse containing the created Rubric.
161
+ """
162
+ response = self._post(data=data)
163
+ return BaseResponse[Rubric].model_validate(response)
164
+
165
+ def update(self, rubrics_uid: int, data: Any) -> BaseResponse[Rubric]:
166
+ """Update a rubric.
167
+
168
+ Args:
169
+ rubrics_uid: The rubric UID.
170
+ data: The rubric data to update.
171
+
172
+ Returns:
173
+ BaseResponse containing the updated Rubric.
174
+ """
175
+ response = self._put(f"/{rubrics_uid}", data=data)
176
+ return BaseResponse[Rubric].model_validate(response)
177
+
178
+ def delete(self, rubrics_uid: int) -> BaseResponse[bool]:
179
+ """Delete a rubric.
180
+
181
+ Args:
182
+ rubrics_uid: The rubric UID.
183
+
184
+ Returns:
185
+ BaseResponse containing deletion success status.
186
+ """
187
+ response = self._delete(f"/{rubrics_uid}")
188
+ return BaseResponse[bool].model_validate(response)
189
+
190
+
191
+ class AkashaResource(BaseResource):
192
+ """Resource for /akasha endpoints."""
193
+
194
+ def __init__(self, http: HTTPClient) -> None:
195
+ """Initialize the resource."""
196
+ super().__init__(http, "/akasha")
197
+
198
+ def generate(
199
+ self, params: AkashaGenerateParams | None = None
200
+ ) -> BaseResponse[AkashaGenerateResponse]:
201
+ """Generate content using Akasha AI.
202
+
203
+ Args:
204
+ params: Optional generation parameters.
205
+
206
+ Returns:
207
+ BaseResponse containing the generated content.
208
+ """
209
+ response = self._post("/generate", data=params)
210
+ return BaseResponse[AkashaGenerateResponse].model_validate(response)
211
+
212
+
213
+ class JoomlaResource(BaseResource):
214
+ """Resource for /joomla endpoints."""
215
+
216
+ def __init__(self, http: HTTPClient) -> None:
217
+ """Initialize the resource."""
218
+ super().__init__(http, "/joomla")
219
+
220
+ def generate(
221
+ self, params: JoomlaGenerateParams | None = None
222
+ ) -> BaseResponse[JoomlaGenerateResponse]:
223
+ """Generate Joomla content.
224
+
225
+ Args:
226
+ params: Optional generation parameters.
227
+
228
+ Returns:
229
+ BaseResponse containing the generated content.
230
+ """
231
+ response = self._post("/generate", data=params)
232
+ return BaseResponse[JoomlaGenerateResponse].model_validate(response)
233
+
234
+
235
+ class OllamaResource(BaseResource):
236
+ """Resource for /ollama endpoints."""
237
+
238
+ def __init__(self, http: HTTPClient) -> None:
239
+ """Initialize the resource."""
240
+ super().__init__(http, "/ollama")
241
+
242
+ def list_tags(self) -> BaseResponse[list[OllamaTag]]:
243
+ """List available Ollama models/tags.
244
+
245
+ Returns:
246
+ BaseResponse containing a list of OllamaTag items.
247
+ """
248
+ response = self._get("/tags")
249
+ return BaseResponse[list[OllamaTag]].model_validate(response)
250
+
251
+
252
+ class AgrInfoClient(BaseServiceClient):
253
+ """Client for the AGR Info service.
254
+
255
+ Provides access to AI content generation and infrastructure endpoints including:
256
+ - Context (context)
257
+ - Health check (health_check)
258
+ - Microservices (microservices)
259
+ - Rubrics (rubrics)
260
+ - Akasha AI generation (akasha)
261
+ - Joomla content generation (joomla)
262
+ - Ollama model management (ollama)
263
+
264
+ Example:
265
+ >>> from augur_api import AugurAPI
266
+ >>> api = AugurAPI(token="...", site_id="...")
267
+ >>> services = api.agr_info.microservices.list()
268
+ >>> for svc in services.data:
269
+ ... print(svc.name)
270
+ """
271
+
272
+ def __init__(self, http_client: HTTPClient) -> None:
273
+ """Initialize the AGR Info client.
274
+
275
+ Args:
276
+ http_client: HTTP client for making requests.
277
+ """
278
+ super().__init__(http_client)
279
+ self._context: ContextResource | None = None
280
+ self._microservices: MicroservicesResource | None = None
281
+ self._rubrics: RubricsResource | None = None
282
+ self._akasha: AkashaResource | None = None
283
+ self._joomla: JoomlaResource | None = None
284
+ self._ollama: OllamaResource | None = None
285
+
286
+ @property
287
+ def context(self) -> ContextResource:
288
+ """Access context endpoints."""
289
+ if self._context is None:
290
+ self._context = ContextResource(self._http)
291
+ return self._context
292
+
293
+ @property
294
+ def microservices(self) -> MicroservicesResource:
295
+ """Access microservices endpoints."""
296
+ if self._microservices is None:
297
+ self._microservices = MicroservicesResource(self._http)
298
+ return self._microservices
299
+
300
+ @property
301
+ def rubrics(self) -> RubricsResource:
302
+ """Access rubrics endpoints."""
303
+ if self._rubrics is None:
304
+ self._rubrics = RubricsResource(self._http)
305
+ return self._rubrics
306
+
307
+ @property
308
+ def akasha(self) -> AkashaResource:
309
+ """Access Akasha AI generation endpoints."""
310
+ if self._akasha is None:
311
+ self._akasha = AkashaResource(self._http)
312
+ return self._akasha
313
+
314
+ @property
315
+ def joomla(self) -> JoomlaResource:
316
+ """Access Joomla content generation endpoints."""
317
+ if self._joomla is None:
318
+ self._joomla = JoomlaResource(self._http)
319
+ return self._joomla
320
+
321
+ @property
322
+ def ollama(self) -> OllamaResource:
323
+ """Access Ollama model management endpoints."""
324
+ if self._ollama is None:
325
+ self._ollama = OllamaResource(self._http)
326
+ return self._ollama
@@ -0,0 +1,123 @@
1
+ """Schemas for the AGR Info service."""
2
+
3
+ from pydantic import BaseModel
4
+
5
+ from augur_api.core.schemas import CamelCaseModel, EdgeCacheParams
6
+
7
+
8
+ # Context
9
+ class ContextGetParams(EdgeCacheParams):
10
+ """Parameters for getting context."""
11
+
12
+
13
+ class ContextResponse(CamelCaseModel):
14
+ """Context response data."""
15
+
16
+
17
+ # Health Check
18
+ class HealthCheckData(CamelCaseModel):
19
+ """Health check response data."""
20
+
21
+ site_hash: str | None = None
22
+ site_id: str | None = None
23
+
24
+
25
+ # Microservices
26
+ class MicroservicesListParams(EdgeCacheParams):
27
+ """Parameters for listing microservices."""
28
+
29
+ limit: int | None = None
30
+ offset: int | None = None
31
+ status_cd: int | None = None
32
+
33
+
34
+ class Microservice(CamelCaseModel):
35
+ """Microservice entity."""
36
+
37
+ microservices_uid: int | None = None
38
+ name: str | None = None
39
+ status_cd: int | None = None
40
+ created_at: str | None = None
41
+ updated_at: str | None = None
42
+
43
+
44
+ class MicroserviceCreateParams(BaseModel):
45
+ """Parameters for creating a microservice."""
46
+
47
+ name: str | None = None
48
+ status_cd: int | None = None
49
+
50
+
51
+ class MicroserviceUpdateParams(BaseModel):
52
+ """Parameters for updating a microservice."""
53
+
54
+ name: str | None = None
55
+ status_cd: int | None = None
56
+
57
+
58
+ # Rubrics
59
+ class RubricsListParams(EdgeCacheParams):
60
+ """Parameters for listing rubrics."""
61
+
62
+ limit: int | None = None
63
+ offset: int | None = None
64
+
65
+
66
+ class Rubric(CamelCaseModel):
67
+ """Rubric entity."""
68
+
69
+ rubrics_uid: int | None = None
70
+ name: str | None = None
71
+ description: str | None = None
72
+ created_at: str | None = None
73
+ updated_at: str | None = None
74
+
75
+
76
+ class RubricCreateParams(BaseModel):
77
+ """Parameters for creating a rubric."""
78
+
79
+ name: str | None = None
80
+ description: str | None = None
81
+
82
+
83
+ class RubricUpdateParams(BaseModel):
84
+ """Parameters for updating a rubric."""
85
+
86
+ name: str | None = None
87
+ description: str | None = None
88
+
89
+
90
+ # Akasha
91
+ class AkashaGenerateParams(BaseModel):
92
+ """Parameters for Akasha generation."""
93
+
94
+ prompt: str | None = None
95
+
96
+
97
+ class AkashaGenerateResponse(CamelCaseModel):
98
+ """Akasha generation response."""
99
+
100
+ result: str | None = None
101
+
102
+
103
+ # Joomla Generate
104
+ class JoomlaGenerateParams(BaseModel):
105
+ """Parameters for Joomla generation."""
106
+
107
+ prompt: str | None = None
108
+
109
+
110
+ class JoomlaGenerateResponse(CamelCaseModel):
111
+ """Joomla generation response."""
112
+
113
+ result: str | None = None
114
+
115
+
116
+ # Ollama
117
+ class OllamaTag(CamelCaseModel):
118
+ """Ollama tag/model entity."""
119
+
120
+ name: str | None = None
121
+ model: str | None = None
122
+ modified_at: str | None = None
123
+ size: int | None = None
@@ -0,0 +1,79 @@
1
+ """AGR Site service exports."""
2
+
3
+ from augur_api.services.agr_site.client import (
4
+ AgrSiteClient,
5
+ FyxerTranscriptResource,
6
+ GeoCodesPostalCodesResource,
7
+ MetaFilesResource,
8
+ NotificationsResource,
9
+ OpenSearchResource,
10
+ SettingsResource,
11
+ TrainingResource,
12
+ )
13
+ from augur_api.services.agr_site.schemas import (
14
+ FyxerTranscript,
15
+ FyxerTranscriptCreateParams,
16
+ FyxerTranscriptListParams,
17
+ FyxerTranscriptUpdateParams,
18
+ GeoCodesPostalCodes,
19
+ GeoCodesPostalCodesListParams,
20
+ MetaFilesRobotsResponse,
21
+ NotificationCreateParams,
22
+ NotificationResponse,
23
+ OpenSearchEmbeddingParams,
24
+ OpenSearchEmbeddingResponse,
25
+ Setting,
26
+ SettingCreateParams,
27
+ SettingListParams,
28
+ SettingUpdateParams,
29
+ TrainingConv,
30
+ TrainingConvCreateParams,
31
+ TrainingConvListParams,
32
+ TrainingConvUpdateParams,
33
+ TrainingMsg,
34
+ TrainingMsgCreateParams,
35
+ TrainingMsgListParams,
36
+ TrainingMsgUpdateParams,
37
+ TrainingSet,
38
+ TrainingSetCreateParams,
39
+ TrainingSetListParams,
40
+ TrainingSetUpdateParams,
41
+ )
42
+
43
+ __all__ = [
44
+ "AgrSiteClient",
45
+ "FyxerTranscript",
46
+ "FyxerTranscriptCreateParams",
47
+ "FyxerTranscriptListParams",
48
+ "FyxerTranscriptResource",
49
+ "FyxerTranscriptUpdateParams",
50
+ "GeoCodesPostalCodes",
51
+ "GeoCodesPostalCodesListParams",
52
+ "GeoCodesPostalCodesResource",
53
+ "MetaFilesResource",
54
+ "MetaFilesRobotsResponse",
55
+ "NotificationCreateParams",
56
+ "NotificationResponse",
57
+ "NotificationsResource",
58
+ "OpenSearchEmbeddingParams",
59
+ "OpenSearchEmbeddingResponse",
60
+ "OpenSearchResource",
61
+ "Setting",
62
+ "SettingCreateParams",
63
+ "SettingListParams",
64
+ "SettingsResource",
65
+ "SettingUpdateParams",
66
+ "TrainingConv",
67
+ "TrainingConvCreateParams",
68
+ "TrainingConvListParams",
69
+ "TrainingConvUpdateParams",
70
+ "TrainingMsg",
71
+ "TrainingMsgCreateParams",
72
+ "TrainingMsgListParams",
73
+ "TrainingMsgUpdateParams",
74
+ "TrainingResource",
75
+ "TrainingSet",
76
+ "TrainingSetCreateParams",
77
+ "TrainingSetListParams",
78
+ "TrainingSetUpdateParams",
79
+ ]