graphlit-client 1.0.20250313001__py3-none-any.whl → 1.0.20250315002__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.
- graphlit_api/__init__.py +144 -68
- graphlit_api/client.py +121 -0
- graphlit_api/enums.py +1 -1
- graphlit_api/feed_exists.py +19 -0
- graphlit_api/get_content.py +0 -1
- graphlit_api/input_types.py +1 -0
- graphlit_api/operations.py +255 -264
- graphlit_api/query_contents.py +0 -13
- graphlit_api/query_contents_facets.py +1 -349
- graphlit_api/specification_exists.py +21 -0
- graphlit_api/upsert_category.py +22 -0
- graphlit_api/upsert_label.py +20 -0
- graphlit_api/upsert_specification.py +26 -0
- graphlit_api/upsert_workflow.py +405 -0
- graphlit_api/workflow_exists.py +21 -0
- {graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/RECORD +20 -13
- {graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/LICENSE +0 -0
- {graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,405 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import Any, List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
from .enums import (
|
10
|
+
AssemblyAIModels,
|
11
|
+
AzureDocumentIntelligenceModels,
|
12
|
+
AzureDocumentIntelligenceVersions,
|
13
|
+
ContentClassificationServiceTypes,
|
14
|
+
ContentIndexingServiceTypes,
|
15
|
+
ContentTypes,
|
16
|
+
DeepgramModels,
|
17
|
+
EntityEnrichmentServiceTypes,
|
18
|
+
EntityExtractionServiceTypes,
|
19
|
+
EntityState,
|
20
|
+
FilePreparationServiceTypes,
|
21
|
+
FileTypes,
|
22
|
+
IntegrationServiceTypes,
|
23
|
+
LinkTypes,
|
24
|
+
ObservableTypes,
|
25
|
+
RegexSourceTypes,
|
26
|
+
StoragePolicyTypes,
|
27
|
+
SummarizationTypes,
|
28
|
+
)
|
29
|
+
|
30
|
+
|
31
|
+
class UpsertWorkflow(BaseModel):
|
32
|
+
upsert_workflow: Optional["UpsertWorkflowUpsertWorkflow"] = Field(
|
33
|
+
alias="upsertWorkflow"
|
34
|
+
)
|
35
|
+
|
36
|
+
|
37
|
+
class UpsertWorkflowUpsertWorkflow(BaseModel):
|
38
|
+
id: str
|
39
|
+
name: str
|
40
|
+
state: EntityState
|
41
|
+
ingestion: Optional["UpsertWorkflowUpsertWorkflowIngestion"]
|
42
|
+
indexing: Optional["UpsertWorkflowUpsertWorkflowIndexing"]
|
43
|
+
preparation: Optional["UpsertWorkflowUpsertWorkflowPreparation"]
|
44
|
+
extraction: Optional["UpsertWorkflowUpsertWorkflowExtraction"]
|
45
|
+
classification: Optional["UpsertWorkflowUpsertWorkflowClassification"]
|
46
|
+
enrichment: Optional["UpsertWorkflowUpsertWorkflowEnrichment"]
|
47
|
+
storage: Optional["UpsertWorkflowUpsertWorkflowStorage"]
|
48
|
+
actions: Optional[List[Optional["UpsertWorkflowUpsertWorkflowActions"]]]
|
49
|
+
|
50
|
+
|
51
|
+
class UpsertWorkflowUpsertWorkflowIngestion(BaseModel):
|
52
|
+
if_: Optional["UpsertWorkflowUpsertWorkflowIngestionIf"] = Field(alias="if")
|
53
|
+
collections: Optional[
|
54
|
+
List[Optional["UpsertWorkflowUpsertWorkflowIngestionCollections"]]
|
55
|
+
]
|
56
|
+
observations: Optional[
|
57
|
+
List[Optional["UpsertWorkflowUpsertWorkflowIngestionObservations"]]
|
58
|
+
]
|
59
|
+
|
60
|
+
|
61
|
+
class UpsertWorkflowUpsertWorkflowIngestionIf(BaseModel):
|
62
|
+
types: Optional[List[ContentTypes]]
|
63
|
+
file_types: Optional[List[FileTypes]] = Field(alias="fileTypes")
|
64
|
+
allowed_paths: Optional[List[str]] = Field(alias="allowedPaths")
|
65
|
+
excluded_paths: Optional[List[str]] = Field(alias="excludedPaths")
|
66
|
+
|
67
|
+
|
68
|
+
class UpsertWorkflowUpsertWorkflowIngestionCollections(BaseModel):
|
69
|
+
id: str
|
70
|
+
|
71
|
+
|
72
|
+
class UpsertWorkflowUpsertWorkflowIngestionObservations(BaseModel):
|
73
|
+
type: ObservableTypes
|
74
|
+
observable: "UpsertWorkflowUpsertWorkflowIngestionObservationsObservable"
|
75
|
+
|
76
|
+
|
77
|
+
class UpsertWorkflowUpsertWorkflowIngestionObservationsObservable(BaseModel):
|
78
|
+
id: str
|
79
|
+
name: Optional[str]
|
80
|
+
|
81
|
+
|
82
|
+
class UpsertWorkflowUpsertWorkflowIndexing(BaseModel):
|
83
|
+
jobs: Optional[List[Optional["UpsertWorkflowUpsertWorkflowIndexingJobs"]]]
|
84
|
+
|
85
|
+
|
86
|
+
class UpsertWorkflowUpsertWorkflowIndexingJobs(BaseModel):
|
87
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowIndexingJobsConnector"]
|
88
|
+
|
89
|
+
|
90
|
+
class UpsertWorkflowUpsertWorkflowIndexingJobsConnector(BaseModel):
|
91
|
+
type: Optional[ContentIndexingServiceTypes]
|
92
|
+
content_type: Optional[ContentTypes] = Field(alias="contentType")
|
93
|
+
file_type: Optional[FileTypes] = Field(alias="fileType")
|
94
|
+
|
95
|
+
|
96
|
+
class UpsertWorkflowUpsertWorkflowPreparation(BaseModel):
|
97
|
+
enable_unblocked_capture: Optional[bool] = Field(alias="enableUnblockedCapture")
|
98
|
+
disable_smart_capture: Optional[bool] = Field(alias="disableSmartCapture")
|
99
|
+
summarizations: Optional[
|
100
|
+
List[Optional["UpsertWorkflowUpsertWorkflowPreparationSummarizations"]]
|
101
|
+
]
|
102
|
+
jobs: Optional[List[Optional["UpsertWorkflowUpsertWorkflowPreparationJobs"]]]
|
103
|
+
|
104
|
+
|
105
|
+
class UpsertWorkflowUpsertWorkflowPreparationSummarizations(BaseModel):
|
106
|
+
type: SummarizationTypes
|
107
|
+
specification: Optional[
|
108
|
+
"UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification"
|
109
|
+
]
|
110
|
+
tokens: Optional[int]
|
111
|
+
items: Optional[int]
|
112
|
+
prompt: Optional[str]
|
113
|
+
|
114
|
+
|
115
|
+
class UpsertWorkflowUpsertWorkflowPreparationSummarizationsSpecification(BaseModel):
|
116
|
+
id: str
|
117
|
+
|
118
|
+
|
119
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobs(BaseModel):
|
120
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowPreparationJobsConnector"]
|
121
|
+
|
122
|
+
|
123
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnector(BaseModel):
|
124
|
+
type: FilePreparationServiceTypes
|
125
|
+
file_types: Optional[List[FileTypes]] = Field(alias="fileTypes")
|
126
|
+
azure_document: Optional[
|
127
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument"
|
128
|
+
] = Field(alias="azureDocument")
|
129
|
+
deepgram: Optional["UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram"]
|
130
|
+
assembly_ai: Optional[
|
131
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAssemblyAi"
|
132
|
+
] = Field(alias="assemblyAI")
|
133
|
+
document: Optional["UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument"]
|
134
|
+
email: Optional["UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail"]
|
135
|
+
model_document: Optional[
|
136
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument"
|
137
|
+
] = Field(alias="modelDocument")
|
138
|
+
mistral: Optional["UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral"]
|
139
|
+
|
140
|
+
|
141
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAzureDocument(BaseModel):
|
142
|
+
version: Optional[AzureDocumentIntelligenceVersions]
|
143
|
+
model: Optional[AzureDocumentIntelligenceModels]
|
144
|
+
endpoint: Optional[Any]
|
145
|
+
key: Optional[str]
|
146
|
+
|
147
|
+
|
148
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDeepgram(BaseModel):
|
149
|
+
model: Optional[DeepgramModels]
|
150
|
+
key: Optional[str]
|
151
|
+
enable_redaction: Optional[bool] = Field(alias="enableRedaction")
|
152
|
+
enable_speaker_diarization: Optional[bool] = Field(alias="enableSpeakerDiarization")
|
153
|
+
detect_language: Optional[bool] = Field(alias="detectLanguage")
|
154
|
+
language: Optional[str]
|
155
|
+
|
156
|
+
|
157
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorAssemblyAi(BaseModel):
|
158
|
+
model: Optional[AssemblyAIModels]
|
159
|
+
key: Optional[str]
|
160
|
+
enable_redaction: Optional[bool] = Field(alias="enableRedaction")
|
161
|
+
enable_speaker_diarization: Optional[bool] = Field(alias="enableSpeakerDiarization")
|
162
|
+
detect_language: Optional[bool] = Field(alias="detectLanguage")
|
163
|
+
language: Optional[str]
|
164
|
+
|
165
|
+
|
166
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorDocument(BaseModel):
|
167
|
+
include_images: Optional[bool] = Field(alias="includeImages")
|
168
|
+
|
169
|
+
|
170
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorEmail(BaseModel):
|
171
|
+
include_attachments: Optional[bool] = Field(alias="includeAttachments")
|
172
|
+
|
173
|
+
|
174
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument(BaseModel):
|
175
|
+
specification: Optional[
|
176
|
+
"UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocumentSpecification"
|
177
|
+
]
|
178
|
+
|
179
|
+
|
180
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocumentSpecification(
|
181
|
+
BaseModel
|
182
|
+
):
|
183
|
+
id: str
|
184
|
+
|
185
|
+
|
186
|
+
class UpsertWorkflowUpsertWorkflowPreparationJobsConnectorMistral(BaseModel):
|
187
|
+
key: Optional[str]
|
188
|
+
|
189
|
+
|
190
|
+
class UpsertWorkflowUpsertWorkflowExtraction(BaseModel):
|
191
|
+
jobs: Optional[List[Optional["UpsertWorkflowUpsertWorkflowExtractionJobs"]]]
|
192
|
+
|
193
|
+
|
194
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobs(BaseModel):
|
195
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowExtractionJobsConnector"]
|
196
|
+
|
197
|
+
|
198
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnector(BaseModel):
|
199
|
+
type: EntityExtractionServiceTypes
|
200
|
+
content_types: Optional[List[ContentTypes]] = Field(alias="contentTypes")
|
201
|
+
file_types: Optional[List[FileTypes]] = Field(alias="fileTypes")
|
202
|
+
extracted_types: Optional[List[ObservableTypes]] = Field(alias="extractedTypes")
|
203
|
+
extracted_count: Optional[int] = Field(alias="extractedCount")
|
204
|
+
azure_text: Optional[
|
205
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText"
|
206
|
+
] = Field(alias="azureText")
|
207
|
+
azure_image: Optional[
|
208
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage"
|
209
|
+
] = Field(alias="azureImage")
|
210
|
+
model_image: Optional[
|
211
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage"
|
212
|
+
] = Field(alias="modelImage")
|
213
|
+
model_text: Optional[
|
214
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText"
|
215
|
+
] = Field(alias="modelText")
|
216
|
+
|
217
|
+
|
218
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureText(BaseModel):
|
219
|
+
confidence_threshold: Optional[float] = Field(alias="confidenceThreshold")
|
220
|
+
enable_pii: Optional[bool] = Field(alias="enablePII")
|
221
|
+
|
222
|
+
|
223
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorAzureImage(BaseModel):
|
224
|
+
confidence_threshold: Optional[float] = Field(alias="confidenceThreshold")
|
225
|
+
|
226
|
+
|
227
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage(BaseModel):
|
228
|
+
specification: Optional[
|
229
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification"
|
230
|
+
]
|
231
|
+
|
232
|
+
|
233
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImageSpecification(
|
234
|
+
BaseModel
|
235
|
+
):
|
236
|
+
id: str
|
237
|
+
|
238
|
+
|
239
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText(BaseModel):
|
240
|
+
specification: Optional[
|
241
|
+
"UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelTextSpecification"
|
242
|
+
]
|
243
|
+
|
244
|
+
|
245
|
+
class UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelTextSpecification(
|
246
|
+
BaseModel
|
247
|
+
):
|
248
|
+
id: str
|
249
|
+
|
250
|
+
|
251
|
+
class UpsertWorkflowUpsertWorkflowClassification(BaseModel):
|
252
|
+
jobs: Optional[List[Optional["UpsertWorkflowUpsertWorkflowClassificationJobs"]]]
|
253
|
+
|
254
|
+
|
255
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobs(BaseModel):
|
256
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowClassificationJobsConnector"]
|
257
|
+
|
258
|
+
|
259
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnector(BaseModel):
|
260
|
+
type: ContentClassificationServiceTypes
|
261
|
+
content_type: Optional[ContentTypes] = Field(alias="contentType")
|
262
|
+
file_type: Optional[FileTypes] = Field(alias="fileType")
|
263
|
+
model: Optional["UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModel"]
|
264
|
+
regex: Optional["UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegex"]
|
265
|
+
|
266
|
+
|
267
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModel(BaseModel):
|
268
|
+
specification: Optional[
|
269
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelSpecification"
|
270
|
+
]
|
271
|
+
rules: Optional[
|
272
|
+
List[
|
273
|
+
Optional[
|
274
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelRules"
|
275
|
+
]
|
276
|
+
]
|
277
|
+
]
|
278
|
+
|
279
|
+
|
280
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelSpecification(
|
281
|
+
BaseModel
|
282
|
+
):
|
283
|
+
id: str
|
284
|
+
|
285
|
+
|
286
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModelRules(BaseModel):
|
287
|
+
then: Optional[str]
|
288
|
+
if_: Optional[str] = Field(alias="if")
|
289
|
+
|
290
|
+
|
291
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegex(BaseModel):
|
292
|
+
rules: Optional[
|
293
|
+
List[
|
294
|
+
Optional[
|
295
|
+
"UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegexRules"
|
296
|
+
]
|
297
|
+
]
|
298
|
+
]
|
299
|
+
|
300
|
+
|
301
|
+
class UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegexRules(BaseModel):
|
302
|
+
then: Optional[str]
|
303
|
+
type: Optional[RegexSourceTypes]
|
304
|
+
path: Optional[str]
|
305
|
+
matches: Optional[str]
|
306
|
+
|
307
|
+
|
308
|
+
class UpsertWorkflowUpsertWorkflowEnrichment(BaseModel):
|
309
|
+
link: Optional["UpsertWorkflowUpsertWorkflowEnrichmentLink"]
|
310
|
+
jobs: Optional[List[Optional["UpsertWorkflowUpsertWorkflowEnrichmentJobs"]]]
|
311
|
+
|
312
|
+
|
313
|
+
class UpsertWorkflowUpsertWorkflowEnrichmentLink(BaseModel):
|
314
|
+
enable_crawling: Optional[bool] = Field(alias="enableCrawling")
|
315
|
+
allowed_domains: Optional[List[str]] = Field(alias="allowedDomains")
|
316
|
+
excluded_domains: Optional[List[str]] = Field(alias="excludedDomains")
|
317
|
+
allowed_paths: Optional[List[str]] = Field(alias="allowedPaths")
|
318
|
+
excluded_paths: Optional[List[str]] = Field(alias="excludedPaths")
|
319
|
+
allowed_links: Optional[List[LinkTypes]] = Field(alias="allowedLinks")
|
320
|
+
excluded_links: Optional[List[LinkTypes]] = Field(alias="excludedLinks")
|
321
|
+
allowed_files: Optional[List[FileTypes]] = Field(alias="allowedFiles")
|
322
|
+
excluded_files: Optional[List[FileTypes]] = Field(alias="excludedFiles")
|
323
|
+
allow_content_domain: Optional[bool] = Field(alias="allowContentDomain")
|
324
|
+
maximum_links: Optional[int] = Field(alias="maximumLinks")
|
325
|
+
|
326
|
+
|
327
|
+
class UpsertWorkflowUpsertWorkflowEnrichmentJobs(BaseModel):
|
328
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector"]
|
329
|
+
|
330
|
+
|
331
|
+
class UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector(BaseModel):
|
332
|
+
type: Optional[EntityEnrichmentServiceTypes]
|
333
|
+
enriched_types: Optional[List[Optional[ObservableTypes]]] = Field(
|
334
|
+
alias="enrichedTypes"
|
335
|
+
)
|
336
|
+
fhir: Optional["UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorFhir"]
|
337
|
+
diffbot: Optional["UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorDiffbot"]
|
338
|
+
|
339
|
+
|
340
|
+
class UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorFhir(BaseModel):
|
341
|
+
endpoint: Optional[Any]
|
342
|
+
|
343
|
+
|
344
|
+
class UpsertWorkflowUpsertWorkflowEnrichmentJobsConnectorDiffbot(BaseModel):
|
345
|
+
key: Optional[Any]
|
346
|
+
|
347
|
+
|
348
|
+
class UpsertWorkflowUpsertWorkflowStorage(BaseModel):
|
349
|
+
policy: Optional["UpsertWorkflowUpsertWorkflowStoragePolicy"]
|
350
|
+
|
351
|
+
|
352
|
+
class UpsertWorkflowUpsertWorkflowStoragePolicy(BaseModel):
|
353
|
+
type: Optional[StoragePolicyTypes]
|
354
|
+
allow_duplicates: Optional[bool] = Field(alias="allowDuplicates")
|
355
|
+
|
356
|
+
|
357
|
+
class UpsertWorkflowUpsertWorkflowActions(BaseModel):
|
358
|
+
connector: Optional["UpsertWorkflowUpsertWorkflowActionsConnector"]
|
359
|
+
|
360
|
+
|
361
|
+
class UpsertWorkflowUpsertWorkflowActionsConnector(BaseModel):
|
362
|
+
type: IntegrationServiceTypes
|
363
|
+
uri: Optional[str]
|
364
|
+
slack: Optional["UpsertWorkflowUpsertWorkflowActionsConnectorSlack"]
|
365
|
+
email: Optional["UpsertWorkflowUpsertWorkflowActionsConnectorEmail"]
|
366
|
+
|
367
|
+
|
368
|
+
class UpsertWorkflowUpsertWorkflowActionsConnectorSlack(BaseModel):
|
369
|
+
token: str
|
370
|
+
channel: str
|
371
|
+
|
372
|
+
|
373
|
+
class UpsertWorkflowUpsertWorkflowActionsConnectorEmail(BaseModel):
|
374
|
+
from_: str = Field(alias="from")
|
375
|
+
subject: str
|
376
|
+
to: List[str]
|
377
|
+
|
378
|
+
|
379
|
+
UpsertWorkflow.model_rebuild()
|
380
|
+
UpsertWorkflowUpsertWorkflow.model_rebuild()
|
381
|
+
UpsertWorkflowUpsertWorkflowIngestion.model_rebuild()
|
382
|
+
UpsertWorkflowUpsertWorkflowIngestionObservations.model_rebuild()
|
383
|
+
UpsertWorkflowUpsertWorkflowIndexing.model_rebuild()
|
384
|
+
UpsertWorkflowUpsertWorkflowIndexingJobs.model_rebuild()
|
385
|
+
UpsertWorkflowUpsertWorkflowPreparation.model_rebuild()
|
386
|
+
UpsertWorkflowUpsertWorkflowPreparationSummarizations.model_rebuild()
|
387
|
+
UpsertWorkflowUpsertWorkflowPreparationJobs.model_rebuild()
|
388
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnector.model_rebuild()
|
389
|
+
UpsertWorkflowUpsertWorkflowPreparationJobsConnectorModelDocument.model_rebuild()
|
390
|
+
UpsertWorkflowUpsertWorkflowExtraction.model_rebuild()
|
391
|
+
UpsertWorkflowUpsertWorkflowExtractionJobs.model_rebuild()
|
392
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnector.model_rebuild()
|
393
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelImage.model_rebuild()
|
394
|
+
UpsertWorkflowUpsertWorkflowExtractionJobsConnectorModelText.model_rebuild()
|
395
|
+
UpsertWorkflowUpsertWorkflowClassification.model_rebuild()
|
396
|
+
UpsertWorkflowUpsertWorkflowClassificationJobs.model_rebuild()
|
397
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnector.model_rebuild()
|
398
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorModel.model_rebuild()
|
399
|
+
UpsertWorkflowUpsertWorkflowClassificationJobsConnectorRegex.model_rebuild()
|
400
|
+
UpsertWorkflowUpsertWorkflowEnrichment.model_rebuild()
|
401
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobs.model_rebuild()
|
402
|
+
UpsertWorkflowUpsertWorkflowEnrichmentJobsConnector.model_rebuild()
|
403
|
+
UpsertWorkflowUpsertWorkflowStorage.model_rebuild()
|
404
|
+
UpsertWorkflowUpsertWorkflowActions.model_rebuild()
|
405
|
+
UpsertWorkflowUpsertWorkflowActionsConnector.model_rebuild()
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class WorkflowExists(BaseModel):
|
12
|
+
workflow_exists: Optional["WorkflowExistsWorkflowExists"] = Field(
|
13
|
+
alias="workflowExists"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class WorkflowExistsWorkflowExists(BaseModel):
|
18
|
+
result: Optional[bool]
|
19
|
+
|
20
|
+
|
21
|
+
WorkflowExists.model_rebuild()
|
{graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/RECORD
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=56G5Am72og5QHIjEh9cy4vkfos7YVpGvzRuIPhPbCEU,1949
|
3
|
-
graphlit_api/__init__.py,sha256=
|
3
|
+
graphlit_api/__init__.py,sha256=iho4ujRRtOHoZPDxEgQ7bDFFv17pP66ASyOS1voRVfY,185197
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=F-mgXMfUqGYCOP4WFQXmZDp5RgK7Cej-nA1RkmRvp7o,6301
|
6
6
|
graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
|
7
7
|
graphlit_api/base_model.py,sha256=o2d-DixASFCGztr3rTiGX0AwgFu7Awr7EgD70FI8a-I,620
|
8
8
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
9
|
-
graphlit_api/client.py,sha256=
|
9
|
+
graphlit_api/client.py,sha256=ralbEThWG1S9BDd3mpHjjRaR6ozPnjRPCejlk9lRqRk,198593
|
10
10
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
11
11
|
graphlit_api/complete_conversation.py,sha256=9YmZZ6Gs7MkApNP1eu8tXG4wqOd3FWgPMF6BiJOGo3o,16468
|
12
12
|
graphlit_api/continue_conversation.py,sha256=wy_ARPwt_mmmwianxaHCNvK53p_Sbeqkwnoo9d2nTco,16468
|
@@ -157,15 +157,16 @@ graphlit_api/disable_user.py,sha256=qfFXMq691gPVdFjF-mYzjcx6DIvZnsp5Nny5pl0qI9Q,
|
|
157
157
|
graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,398
|
158
158
|
graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
|
159
159
|
graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
|
160
|
-
graphlit_api/enums.py,sha256=
|
160
|
+
graphlit_api/enums.py,sha256=uOp9cODe-FsBJAUoBCNaXk_PDez-cQBlZoLxxoMCTqI,26271
|
161
161
|
graphlit_api/exceptions.py,sha256=33pJ_dDonmIx_D-43jvhuQYJAXz5HoaPf1DoxXmNsAw,2432
|
162
162
|
graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
|
163
163
|
graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
|
164
|
+
graphlit_api/feed_exists.py,sha256=NlvWhqVaV-coIV_orR-XsaXhG0Gll3bPVS3tPF0zEt0,351
|
164
165
|
graphlit_api/format_conversation.py,sha256=Bx9bN6zXF8CS7xjUcWz2D4nM6rrS7eKdVn_wHqW93IA,16082
|
165
166
|
graphlit_api/get_alert.py,sha256=j2QRQgAGvvzscbaO_4YyjO4QbXFyOayXV11XXBxqEI8,6115
|
166
167
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
167
168
|
graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wTk,830
|
168
|
-
graphlit_api/get_content.py,sha256=
|
169
|
+
graphlit_api/get_content.py,sha256=AFhvLkrvW-J5j016vdQKs-MT8WNZD5PcLNlTOhRASoE,10990
|
169
170
|
graphlit_api/get_conversation.py,sha256=vHgbQtxUYJ3Es__7k8QATPGrzAu4yzWzdFvm52wANvw,16825
|
170
171
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
171
172
|
graphlit_api/get_feed.py,sha256=Tqesoe2561SzkMtvgGtSM-CDEot7qfjXp3n4qvf65B8,11209
|
@@ -197,13 +198,13 @@ graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cR
|
|
197
198
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
198
199
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
199
200
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
200
|
-
graphlit_api/input_types.py,sha256=
|
201
|
+
graphlit_api/input_types.py,sha256=BoYGIrg5aeT9J2W7ZL7XzEX2_jsb1YxpCVCzkBaH-tU,138549
|
201
202
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
202
203
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
203
204
|
graphlit_api/lookup_credits.py,sha256=xisQ4ExnjwWGbPZVU24bLF7pj4Dwp-d9q5GsHVBMoAM,1395
|
204
205
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
205
206
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
206
|
-
graphlit_api/operations.py,sha256=
|
207
|
+
graphlit_api/operations.py,sha256=6_cLnPgQiTaCa0wCUGa86o7tcqzErOHzdIoBHUJMuEk,181476
|
207
208
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
208
209
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
209
210
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -213,8 +214,8 @@ graphlit_api/publish_text.py,sha256=DSKPRiEgrqkdJ2E_E9GPeEpnlj60lGconC1TlgCaUCQ,
|
|
213
214
|
graphlit_api/query_alerts.py,sha256=xOp1iXWsjDLIPgD2oxRBYVxvkzYuIivUhQnnjGnc8KI,7098
|
214
215
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
215
216
|
graphlit_api/query_collections.py,sha256=lQoUD4-ZiQYWa2ZeyOqVXokEA9IbkqJhrG56O0p8QVU,1075
|
216
|
-
graphlit_api/query_contents.py,sha256=
|
217
|
-
graphlit_api/query_contents_facets.py,sha256=
|
217
|
+
graphlit_api/query_contents.py,sha256=DQY0NqQUNT28f_n1Pp00phGixfnaQ199g8ne7iR8S0w,11626
|
218
|
+
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
218
219
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
219
220
|
graphlit_api/query_conversations.py,sha256=T8k3PS8ntPpJauE5fmbxl_xyq8_B2DzgBMO7sBEINaE,18909
|
220
221
|
graphlit_api/query_credits.py,sha256=z_Uaapz8OlJyisBr4MEkPVIGj4kqBZe5VdI0XFb6HiQ,1327
|
@@ -259,6 +260,7 @@ graphlit_api/revise_text.py,sha256=9N3d9FBoP_BQyB1b9Vw_2SF1nVd6A97aRjMP751RowQ,6
|
|
259
260
|
graphlit_api/screenshot_page.py,sha256=CkRMlxuOIh5T9KOdotvLlfS8oD1W8jFNBD2RypoktII,2464
|
260
261
|
graphlit_api/search_web.py,sha256=lIMSo-i4aWtVtYb5RX511WwOD0ijRhm9K579XqR-w10,554
|
261
262
|
graphlit_api/send_notification.py,sha256=fV6j94gV45uslgB56MN6g5nQ3g7Kq0vX1rfDS37svRc,413
|
263
|
+
graphlit_api/specification_exists.py,sha256=eDMaUOsuw52JTJBYSuWP5rDDXsB7qxst1ak8FajaF5Y,437
|
262
264
|
graphlit_api/suggest_conversation.py,sha256=wpgREn52-HKt5gWAGutEJCTJlpCeXtoSQlSETxp5uJ8,459
|
263
265
|
graphlit_api/summarize_contents.py,sha256=I-k3ioaBg-08YzOQWwDn4Wfv_v5eMyw2pmPYdfYoSyg,1106
|
264
266
|
graphlit_api/summarize_text.py,sha256=JAvjOLAzPWp1tUWvZegp9qNIoqvgijAOh2YAmeBxH58,1002
|
@@ -292,8 +294,13 @@ graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePym
|
|
292
294
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
293
295
|
graphlit_api/update_user.py,sha256=d8NCeCa3XqMXAlL-9sbfa4qpgiIDoXDif3KsV33Sz-w,465
|
294
296
|
graphlit_api/update_workflow.py,sha256=33RqHdgLRFLSo5lo7qXnmziZszm1B64TKhHnCVyo_Dw,15112
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
297
|
+
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
298
|
+
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
299
|
+
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
300
|
+
graphlit_api/upsert_workflow.py,sha256=BGZC0wjy9mq2vhIE8dSoj4hYuVOJNre9IRxsDBWPerY,15112
|
301
|
+
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
302
|
+
graphlit_client-1.0.20250315002.dist-info/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
303
|
+
graphlit_client-1.0.20250315002.dist-info/METADATA,sha256=DrpGbsDbdYC0xXSA6vGYUr82UmQVQljmTyEFz-S0Zwk,3386
|
304
|
+
graphlit_client-1.0.20250315002.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
305
|
+
graphlit_client-1.0.20250315002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
306
|
+
graphlit_client-1.0.20250315002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/LICENSE
RENAMED
File without changes
|
{graphlit_client-1.0.20250313001.dist-info → graphlit_client-1.0.20250315002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|