graphlit-client 1.0.20250225001__py3-none-any.whl → 1.0.20250306001__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 +31 -0
- graphlit_api/client.py +32 -0
- graphlit_api/create_workflow.py +5 -0
- graphlit_api/enums.py +5 -0
- graphlit_api/get_content.py +11 -0
- graphlit_api/get_workflow.py +5 -0
- graphlit_api/input_types.py +9 -0
- graphlit_api/operations.py +57 -0
- graphlit_api/query_contents.py +11 -0
- graphlit_api/query_contents_facets.py +11 -0
- graphlit_api/query_linear_projects.py +21 -0
- graphlit_api/query_slack_channels.py +21 -0
- graphlit_api/query_workflows.py +5 -0
- graphlit_api/update_workflow.py +5 -0
- {graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/RECORD +19 -17
- {graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/LICENSE +0 -0
- {graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -245,6 +245,7 @@ from .create_workflow import (
|
|
245
245
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram,
|
246
246
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument,
|
247
247
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail,
|
248
|
+
CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral,
|
248
249
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument,
|
249
250
|
CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocumentSpecification,
|
250
251
|
CreateWorkflowCreateWorkflowPreparationSummarizations,
|
@@ -727,6 +728,7 @@ from .get_content import (
|
|
727
728
|
GetContentContentPackage,
|
728
729
|
GetContentContentPages,
|
729
730
|
GetContentContentPagesChunks,
|
731
|
+
GetContentContentPagesImages,
|
730
732
|
GetContentContentParent,
|
731
733
|
GetContentContentSegments,
|
732
734
|
GetContentContentVideo,
|
@@ -966,6 +968,7 @@ from .get_workflow import (
|
|
966
968
|
GetWorkflowWorkflowPreparationJobsConnectorDeepgram,
|
967
969
|
GetWorkflowWorkflowPreparationJobsConnectorDocument,
|
968
970
|
GetWorkflowWorkflowPreparationJobsConnectorEmail,
|
971
|
+
GetWorkflowWorkflowPreparationJobsConnectorMistral,
|
969
972
|
GetWorkflowWorkflowPreparationJobsConnectorModelDocument,
|
970
973
|
GetWorkflowWorkflowPreparationJobsConnectorModelDocumentSpecification,
|
971
974
|
GetWorkflowWorkflowPreparationSummarizations,
|
@@ -1166,6 +1169,7 @@ from .input_types import (
|
|
1166
1169
|
LanguageMetadataInput,
|
1167
1170
|
LinearFeedPropertiesInput,
|
1168
1171
|
LinearFeedPropertiesUpdateInput,
|
1172
|
+
LinearProjectsInput,
|
1169
1173
|
LinkStrategyInput,
|
1170
1174
|
MedicalConditionFacetInput,
|
1171
1175
|
MedicalConditionFilter,
|
@@ -1221,6 +1225,7 @@ from .input_types import (
|
|
1221
1225
|
MicrosoftTeamsFeedPropertiesInput,
|
1222
1226
|
MicrosoftTeamsFeedPropertiesUpdateInput,
|
1223
1227
|
MicrosoftTeamsTeamsInput,
|
1228
|
+
MistralDocumentPreparationPropertiesInput,
|
1224
1229
|
MistralModelPropertiesInput,
|
1225
1230
|
MistralModelPropertiesUpdateInput,
|
1226
1231
|
ModelDocumentPreparationPropertiesInput,
|
@@ -1550,6 +1555,7 @@ from .operations import (
|
|
1550
1555
|
QUERY_EVENTS_GQL,
|
1551
1556
|
QUERY_FEEDS_GQL,
|
1552
1557
|
QUERY_LABELS_GQL,
|
1558
|
+
QUERY_LINEAR_PROJECTS_GQL,
|
1553
1559
|
QUERY_MEDICAL_CONDITIONS_GQL,
|
1554
1560
|
QUERY_MEDICAL_CONTRAINDICATIONS_GQL,
|
1555
1561
|
QUERY_MEDICAL_DEVICES_GQL,
|
@@ -1572,6 +1578,7 @@ from .operations import (
|
|
1572
1578
|
QUERY_REPOS_GQL,
|
1573
1579
|
QUERY_SHARE_POINT_FOLDERS_GQL,
|
1574
1580
|
QUERY_SHARE_POINT_LIBRARIES_GQL,
|
1581
|
+
QUERY_SLACK_CHANNELS_GQL,
|
1575
1582
|
QUERY_SOFTWARES_GQL,
|
1576
1583
|
QUERY_SPECIFICATIONS_GQL,
|
1577
1584
|
QUERY_USAGE_GQL,
|
@@ -1779,6 +1786,7 @@ from .query_contents import (
|
|
1779
1786
|
QueryContentsContentsResultsPackage,
|
1780
1787
|
QueryContentsContentsResultsPages,
|
1781
1788
|
QueryContentsContentsResultsPagesChunks,
|
1789
|
+
QueryContentsContentsResultsPagesImages,
|
1782
1790
|
QueryContentsContentsResultsParent,
|
1783
1791
|
QueryContentsContentsResultsSegments,
|
1784
1792
|
QueryContentsContentsResultsVideo,
|
@@ -1818,6 +1826,7 @@ from .query_contents_facets import (
|
|
1818
1826
|
QueryContentsFacetsContentsResultsPackage,
|
1819
1827
|
QueryContentsFacetsContentsResultsPages,
|
1820
1828
|
QueryContentsFacetsContentsResultsPagesChunks,
|
1829
|
+
QueryContentsFacetsContentsResultsPagesImages,
|
1821
1830
|
QueryContentsFacetsContentsResultsParent,
|
1822
1831
|
QueryContentsFacetsContentsResultsSegments,
|
1823
1832
|
QueryContentsFacetsContentsResultsVideo,
|
@@ -1942,6 +1951,10 @@ from .query_feeds import (
|
|
1942
1951
|
QueryFeedsFeedsResultsZendesk,
|
1943
1952
|
)
|
1944
1953
|
from .query_labels import QueryLabels, QueryLabelsLabels, QueryLabelsLabelsResults
|
1954
|
+
from .query_linear_projects import (
|
1955
|
+
QueryLinearProjects,
|
1956
|
+
QueryLinearProjectsLinearProjects,
|
1957
|
+
)
|
1945
1958
|
from .query_medical_conditions import (
|
1946
1959
|
QueryMedicalConditions,
|
1947
1960
|
QueryMedicalConditionsMedicalConditions,
|
@@ -2055,6 +2068,7 @@ from .query_share_point_libraries import (
|
|
2055
2068
|
QuerySharePointLibrariesSharePointLibraries,
|
2056
2069
|
QuerySharePointLibrariesSharePointLibrariesResults,
|
2057
2070
|
)
|
2071
|
+
from .query_slack_channels import QuerySlackChannels, QuerySlackChannelsSlackChannels
|
2058
2072
|
from .query_softwares import (
|
2059
2073
|
QuerySoftwares,
|
2060
2074
|
QuerySoftwaresSoftwares,
|
@@ -2137,6 +2151,7 @@ from .query_workflows import (
|
|
2137
2151
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram,
|
2138
2152
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument,
|
2139
2153
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail,
|
2154
|
+
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral,
|
2140
2155
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument,
|
2141
2156
|
QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocumentSpecification,
|
2142
2157
|
QueryWorkflowsWorkflowsResultsPreparationSummarizations,
|
@@ -2347,6 +2362,7 @@ from .update_workflow import (
|
|
2347
2362
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram,
|
2348
2363
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument,
|
2349
2364
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail,
|
2365
|
+
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral,
|
2350
2366
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument,
|
2351
2367
|
UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocumentSpecification,
|
2352
2368
|
UpdateWorkflowUpdateWorkflowPreparationSummarizations,
|
@@ -2724,6 +2740,7 @@ __all__ = [
|
|
2724
2740
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDeepgram",
|
2725
2741
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorDocument",
|
2726
2742
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorEmail",
|
2743
|
+
"CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral",
|
2727
2744
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument",
|
2728
2745
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocumentSpecification",
|
2729
2746
|
"CreateWorkflowCreateWorkflowPreparationSummarizations",
|
@@ -3208,6 +3225,7 @@ __all__ = [
|
|
3208
3225
|
"GetContentContentPackage",
|
3209
3226
|
"GetContentContentPages",
|
3210
3227
|
"GetContentContentPagesChunks",
|
3228
|
+
"GetContentContentPagesImages",
|
3211
3229
|
"GetContentContentParent",
|
3212
3230
|
"GetContentContentSegments",
|
3213
3231
|
"GetContentContentVideo",
|
@@ -3432,6 +3450,7 @@ __all__ = [
|
|
3432
3450
|
"GetWorkflowWorkflowPreparationJobsConnectorDeepgram",
|
3433
3451
|
"GetWorkflowWorkflowPreparationJobsConnectorDocument",
|
3434
3452
|
"GetWorkflowWorkflowPreparationJobsConnectorEmail",
|
3453
|
+
"GetWorkflowWorkflowPreparationJobsConnectorMistral",
|
3435
3454
|
"GetWorkflowWorkflowPreparationJobsConnectorModelDocument",
|
3436
3455
|
"GetWorkflowWorkflowPreparationJobsConnectorModelDocumentSpecification",
|
3437
3456
|
"GetWorkflowWorkflowPreparationSummarizations",
|
@@ -3547,6 +3566,7 @@ __all__ = [
|
|
3547
3566
|
"LanguageMetadataInput",
|
3548
3567
|
"LinearFeedPropertiesInput",
|
3549
3568
|
"LinearFeedPropertiesUpdateInput",
|
3569
|
+
"LinearProjectsInput",
|
3550
3570
|
"LinkStrategyInput",
|
3551
3571
|
"LinkTypes",
|
3552
3572
|
"LookupCredits",
|
@@ -3625,6 +3645,7 @@ __all__ = [
|
|
3625
3645
|
"MicrosoftTeamsFeedPropertiesInput",
|
3626
3646
|
"MicrosoftTeamsFeedPropertiesUpdateInput",
|
3627
3647
|
"MicrosoftTeamsTeamsInput",
|
3648
|
+
"MistralDocumentPreparationPropertiesInput",
|
3628
3649
|
"MistralModelPropertiesInput",
|
3629
3650
|
"MistralModelPropertiesUpdateInput",
|
3630
3651
|
"MistralModels",
|
@@ -3779,6 +3800,7 @@ __all__ = [
|
|
3779
3800
|
"QUERY_EVENTS_GQL",
|
3780
3801
|
"QUERY_FEEDS_GQL",
|
3781
3802
|
"QUERY_LABELS_GQL",
|
3803
|
+
"QUERY_LINEAR_PROJECTS_GQL",
|
3782
3804
|
"QUERY_MEDICAL_CONDITIONS_GQL",
|
3783
3805
|
"QUERY_MEDICAL_CONTRAINDICATIONS_GQL",
|
3784
3806
|
"QUERY_MEDICAL_DEVICES_GQL",
|
@@ -3801,6 +3823,7 @@ __all__ = [
|
|
3801
3823
|
"QUERY_REPOS_GQL",
|
3802
3824
|
"QUERY_SHARE_POINT_FOLDERS_GQL",
|
3803
3825
|
"QUERY_SHARE_POINT_LIBRARIES_GQL",
|
3826
|
+
"QUERY_SLACK_CHANNELS_GQL",
|
3804
3827
|
"QUERY_SOFTWARES_GQL",
|
3805
3828
|
"QUERY_SPECIFICATIONS_GQL",
|
3806
3829
|
"QUERY_USAGE_GQL",
|
@@ -3877,6 +3900,7 @@ __all__ = [
|
|
3877
3900
|
"QueryContentsContentsResultsPackage",
|
3878
3901
|
"QueryContentsContentsResultsPages",
|
3879
3902
|
"QueryContentsContentsResultsPagesChunks",
|
3903
|
+
"QueryContentsContentsResultsPagesImages",
|
3880
3904
|
"QueryContentsContentsResultsParent",
|
3881
3905
|
"QueryContentsContentsResultsSegments",
|
3882
3906
|
"QueryContentsContentsResultsVideo",
|
@@ -3914,6 +3938,7 @@ __all__ = [
|
|
3914
3938
|
"QueryContentsFacetsContentsResultsPackage",
|
3915
3939
|
"QueryContentsFacetsContentsResultsPages",
|
3916
3940
|
"QueryContentsFacetsContentsResultsPagesChunks",
|
3941
|
+
"QueryContentsFacetsContentsResultsPagesImages",
|
3917
3942
|
"QueryContentsFacetsContentsResultsParent",
|
3918
3943
|
"QueryContentsFacetsContentsResultsSegments",
|
3919
3944
|
"QueryContentsFacetsContentsResultsVideo",
|
@@ -4032,6 +4057,8 @@ __all__ = [
|
|
4032
4057
|
"QueryLabels",
|
4033
4058
|
"QueryLabelsLabels",
|
4034
4059
|
"QueryLabelsLabelsResults",
|
4060
|
+
"QueryLinearProjects",
|
4061
|
+
"QueryLinearProjectsLinearProjects",
|
4035
4062
|
"QueryMedicalConditions",
|
4036
4063
|
"QueryMedicalConditionsMedicalConditions",
|
4037
4064
|
"QueryMedicalConditionsMedicalConditionsResults",
|
@@ -4105,6 +4132,8 @@ __all__ = [
|
|
4105
4132
|
"QuerySharePointLibraries",
|
4106
4133
|
"QuerySharePointLibrariesSharePointLibraries",
|
4107
4134
|
"QuerySharePointLibrariesSharePointLibrariesResults",
|
4135
|
+
"QuerySlackChannels",
|
4136
|
+
"QuerySlackChannelsSlackChannels",
|
4108
4137
|
"QuerySoftwares",
|
4109
4138
|
"QuerySoftwaresSoftwares",
|
4110
4139
|
"QuerySoftwaresSoftwaresResults",
|
@@ -4181,6 +4210,7 @@ __all__ = [
|
|
4181
4210
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDeepgram",
|
4182
4211
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorDocument",
|
4183
4212
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorEmail",
|
4213
|
+
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral",
|
4184
4214
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument",
|
4185
4215
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocumentSpecification",
|
4186
4216
|
"QueryWorkflowsWorkflowsResultsPreparationSummarizations",
|
@@ -4468,6 +4498,7 @@ __all__ = [
|
|
4468
4498
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDeepgram",
|
4469
4499
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorDocument",
|
4470
4500
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorEmail",
|
4501
|
+
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral",
|
4471
4502
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument",
|
4472
4503
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocumentSpecification",
|
4473
4504
|
"UpdateWorkflowUpdateWorkflowPreparationSummarizations",
|
graphlit_api/client.py
CHANGED
@@ -227,6 +227,7 @@ from .input_types import (
|
|
227
227
|
LabelFilter,
|
228
228
|
LabelInput,
|
229
229
|
LabelUpdateInput,
|
230
|
+
LinearProjectsInput,
|
230
231
|
MedicalConditionFilter,
|
231
232
|
MedicalConditionInput,
|
232
233
|
MedicalConditionUpdateInput,
|
@@ -287,6 +288,7 @@ from .input_types import (
|
|
287
288
|
RetrievalStrategyInput,
|
288
289
|
SharePointFoldersInput,
|
289
290
|
SharePointLibrariesInput,
|
291
|
+
SlackChannelsInput,
|
290
292
|
SoftwareFilter,
|
291
293
|
SoftwareInput,
|
292
294
|
SoftwareUpdateInput,
|
@@ -522,6 +524,7 @@ from .operations import (
|
|
522
524
|
QUERY_EVENTS_GQL,
|
523
525
|
QUERY_FEEDS_GQL,
|
524
526
|
QUERY_LABELS_GQL,
|
527
|
+
QUERY_LINEAR_PROJECTS_GQL,
|
525
528
|
QUERY_MEDICAL_CONDITIONS_GQL,
|
526
529
|
QUERY_MEDICAL_CONTRAINDICATIONS_GQL,
|
527
530
|
QUERY_MEDICAL_DEVICES_GQL,
|
@@ -544,6 +547,7 @@ from .operations import (
|
|
544
547
|
QUERY_REPOS_GQL,
|
545
548
|
QUERY_SHARE_POINT_FOLDERS_GQL,
|
546
549
|
QUERY_SHARE_POINT_LIBRARIES_GQL,
|
550
|
+
QUERY_SLACK_CHANNELS_GQL,
|
547
551
|
QUERY_SOFTWARES_GQL,
|
548
552
|
QUERY_SPECIFICATIONS_GQL,
|
549
553
|
QUERY_USAGE_GQL,
|
@@ -608,6 +612,7 @@ from .query_credits import QueryCredits
|
|
608
612
|
from .query_events import QueryEvents
|
609
613
|
from .query_feeds import QueryFeeds
|
610
614
|
from .query_labels import QueryLabels
|
615
|
+
from .query_linear_projects import QueryLinearProjects
|
611
616
|
from .query_medical_conditions import QueryMedicalConditions
|
612
617
|
from .query_medical_contraindications import QueryMedicalContraindications
|
613
618
|
from .query_medical_devices import QueryMedicalDevices
|
@@ -630,6 +635,7 @@ from .query_products import QueryProducts
|
|
630
635
|
from .query_repos import QueryRepos
|
631
636
|
from .query_share_point_folders import QuerySharePointFolders
|
632
637
|
from .query_share_point_libraries import QuerySharePointLibraries
|
638
|
+
from .query_slack_channels import QuerySlackChannels
|
633
639
|
from .query_softwares import QuerySoftwares
|
634
640
|
from .query_specifications import QuerySpecifications
|
635
641
|
from .query_usage import QueryUsage
|
@@ -2456,6 +2462,19 @@ class Client(AsyncBaseClient):
|
|
2456
2462
|
data = self.get_data(response)
|
2457
2463
|
return QueryFeeds.model_validate(data)
|
2458
2464
|
|
2465
|
+
async def query_linear_projects(
|
2466
|
+
self, properties: LinearProjectsInput, **kwargs: Any
|
2467
|
+
) -> QueryLinearProjects:
|
2468
|
+
variables: Dict[str, object] = {"properties": properties}
|
2469
|
+
response = await self.execute(
|
2470
|
+
query=QUERY_LINEAR_PROJECTS_GQL,
|
2471
|
+
operation_name="QueryLinearProjects",
|
2472
|
+
variables=variables,
|
2473
|
+
**kwargs
|
2474
|
+
)
|
2475
|
+
data = self.get_data(response)
|
2476
|
+
return QueryLinearProjects.model_validate(data)
|
2477
|
+
|
2459
2478
|
async def query_microsoft_teams_channels(
|
2460
2479
|
self, properties: MicrosoftTeamsChannelsInput, team_id: str, **kwargs: Any
|
2461
2480
|
) -> QueryMicrosoftTeamsChannels:
|
@@ -2532,6 +2551,19 @@ class Client(AsyncBaseClient):
|
|
2532
2551
|
data = self.get_data(response)
|
2533
2552
|
return QuerySharePointLibraries.model_validate(data)
|
2534
2553
|
|
2554
|
+
async def query_slack_channels(
|
2555
|
+
self, properties: SlackChannelsInput, **kwargs: Any
|
2556
|
+
) -> QuerySlackChannels:
|
2557
|
+
variables: Dict[str, object] = {"properties": properties}
|
2558
|
+
response = await self.execute(
|
2559
|
+
query=QUERY_SLACK_CHANNELS_GQL,
|
2560
|
+
operation_name="QuerySlackChannels",
|
2561
|
+
variables=variables,
|
2562
|
+
**kwargs
|
2563
|
+
)
|
2564
|
+
data = self.get_data(response)
|
2565
|
+
return QuerySlackChannels.model_validate(data)
|
2566
|
+
|
2535
2567
|
async def update_feed(self, feed: FeedUpdateInput, **kwargs: Any) -> UpdateFeed:
|
2536
2568
|
variables: Dict[str, object] = {"feed": feed}
|
2537
2569
|
response = await self.execute(
|
graphlit_api/create_workflow.py
CHANGED
@@ -132,6 +132,7 @@ class CreateWorkflowCreateWorkflowPreparationJobsConnector(BaseModel):
|
|
132
132
|
model_document: Optional[
|
133
133
|
"CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocument"
|
134
134
|
] = Field(alias="modelDocument")
|
135
|
+
mistral: Optional["CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral"]
|
135
136
|
|
136
137
|
|
137
138
|
class CreateWorkflowCreateWorkflowPreparationJobsConnectorAzureDocument(BaseModel):
|
@@ -179,6 +180,10 @@ class CreateWorkflowCreateWorkflowPreparationJobsConnectorModelDocumentSpecifica
|
|
179
180
|
id: str
|
180
181
|
|
181
182
|
|
183
|
+
class CreateWorkflowCreateWorkflowPreparationJobsConnectorMistral(BaseModel):
|
184
|
+
key: Optional[str]
|
185
|
+
|
186
|
+
|
182
187
|
class CreateWorkflowCreateWorkflowExtraction(BaseModel):
|
183
188
|
jobs: Optional[List[Optional["CreateWorkflowCreateWorkflowExtractionJobs"]]]
|
184
189
|
|
graphlit_api/enums.py
CHANGED
@@ -28,6 +28,8 @@ class OpenAIModels(str, Enum):
|
|
28
28
|
GPT4O_MINI_128K_20240718 = "GPT4O_MINI_128K_20240718"
|
29
29
|
GPT4O_MINI_128K = "GPT4O_MINI_128K"
|
30
30
|
GPT4O_CHAT_128K = "GPT4O_CHAT_128K"
|
31
|
+
GPT45_PREVIEW_128K = "GPT45_PREVIEW_128K"
|
32
|
+
GPT45_PREVIEW_128K_20250227 = "GPT45_PREVIEW_128K_20250227"
|
31
33
|
O1_MINI_128K = "O1_MINI_128K"
|
32
34
|
O1_MINI_128K_20240912 = "O1_MINI_128K_20240912"
|
33
35
|
O1_PREVIEW_128K = "O1_PREVIEW_128K"
|
@@ -768,6 +770,7 @@ class FilePreparationServiceTypes(str, Enum):
|
|
768
770
|
EMAIL = "EMAIL"
|
769
771
|
MODEL_DOCUMENT = "MODEL_DOCUMENT"
|
770
772
|
ASSEMBLY_AI = "ASSEMBLY_AI"
|
773
|
+
MISTRAL_DOCUMENT = "MISTRAL_DOCUMENT"
|
771
774
|
|
772
775
|
|
773
776
|
class FacetValueTypes(str, Enum):
|
@@ -998,6 +1001,8 @@ class TextRoles(str, Enum):
|
|
998
1001
|
TABLE_CAPTION = "TABLE_CAPTION"
|
999
1002
|
TABLE_HEADER = "TABLE_HEADER"
|
1000
1003
|
TABLE = "TABLE"
|
1004
|
+
IMAGE = "IMAGE"
|
1005
|
+
IMAGE_CAPTION = "IMAGE_CAPTION"
|
1001
1006
|
FIGURE = "FIGURE"
|
1002
1007
|
FIGURE_CAPTION = "FIGURE_CAPTION"
|
1003
1008
|
BUTTON = "BUTTON"
|
graphlit_api/get_content.py
CHANGED
@@ -305,9 +305,20 @@ class GetContentContentPages(BaseModel):
|
|
305
305
|
index: Optional[int]
|
306
306
|
text: Optional[str]
|
307
307
|
relevance: Optional[float]
|
308
|
+
images: Optional[List[Optional["GetContentContentPagesImages"]]]
|
308
309
|
chunks: Optional[List[Optional["GetContentContentPagesChunks"]]]
|
309
310
|
|
310
311
|
|
312
|
+
class GetContentContentPagesImages(BaseModel):
|
313
|
+
id: Optional[str]
|
314
|
+
mime_type: Optional[str] = Field(alias="mimeType")
|
315
|
+
data: Optional[str]
|
316
|
+
left: Optional[int]
|
317
|
+
right: Optional[int]
|
318
|
+
top: Optional[int]
|
319
|
+
bottom: Optional[int]
|
320
|
+
|
321
|
+
|
311
322
|
class GetContentContentPagesChunks(BaseModel):
|
312
323
|
index: Optional[int]
|
313
324
|
page_index: Optional[int] = Field(alias="pageIndex")
|
graphlit_api/get_workflow.py
CHANGED
@@ -131,6 +131,7 @@ class GetWorkflowWorkflowPreparationJobsConnector(BaseModel):
|
|
131
131
|
model_document: Optional[
|
132
132
|
"GetWorkflowWorkflowPreparationJobsConnectorModelDocument"
|
133
133
|
] = Field(alias="modelDocument")
|
134
|
+
mistral: Optional["GetWorkflowWorkflowPreparationJobsConnectorMistral"]
|
134
135
|
|
135
136
|
|
136
137
|
class GetWorkflowWorkflowPreparationJobsConnectorAzureDocument(BaseModel):
|
@@ -176,6 +177,10 @@ class GetWorkflowWorkflowPreparationJobsConnectorModelDocumentSpecification(Base
|
|
176
177
|
id: str
|
177
178
|
|
178
179
|
|
180
|
+
class GetWorkflowWorkflowPreparationJobsConnectorMistral(BaseModel):
|
181
|
+
key: Optional[str]
|
182
|
+
|
183
|
+
|
179
184
|
class GetWorkflowWorkflowExtraction(BaseModel):
|
180
185
|
jobs: Optional[List[Optional["GetWorkflowWorkflowExtractionJobs"]]]
|
181
186
|
|
graphlit_api/input_types.py
CHANGED
@@ -492,6 +492,10 @@ class MedicalDrugFacetInput(BaseModel):
|
|
492
492
|
facet: Optional[MedicalDrugFacetTypes] = None
|
493
493
|
|
494
494
|
|
495
|
+
class MistralDocumentPreparationPropertiesInput(BaseModel):
|
496
|
+
key: Optional[str] = None
|
497
|
+
|
498
|
+
|
495
499
|
class DocumentPreparationPropertiesInput(BaseModel):
|
496
500
|
include_images: Optional[bool] = Field(alias="includeImages", default=None)
|
497
501
|
|
@@ -1122,6 +1126,10 @@ class ObservationInput(BaseModel):
|
|
1122
1126
|
occurrences: List["ObservationOccurrenceInput"]
|
1123
1127
|
|
1124
1128
|
|
1129
|
+
class LinearProjectsInput(BaseModel):
|
1130
|
+
key: str
|
1131
|
+
|
1132
|
+
|
1125
1133
|
class ContentGraphInput(BaseModel):
|
1126
1134
|
types: Optional[List[Optional[ObservableTypes]]] = None
|
1127
1135
|
|
@@ -1656,6 +1664,7 @@ class FilePreparationConnectorInput(BaseModel):
|
|
1656
1664
|
assembly_ai: Optional["AssemblyAIAudioPreparationPropertiesInput"] = Field(
|
1657
1665
|
alias="assemblyAI", default=None
|
1658
1666
|
)
|
1667
|
+
mistral: Optional["MistralDocumentPreparationPropertiesInput"] = None
|
1659
1668
|
model_document: Optional["ModelDocumentPreparationPropertiesInput"] = Field(
|
1660
1669
|
alias="modelDocument", default=None
|
1661
1670
|
)
|
graphlit_api/operations.py
CHANGED
@@ -215,6 +215,7 @@ __all__ = [
|
|
215
215
|
"QUERY_EVENTS_GQL",
|
216
216
|
"QUERY_FEEDS_GQL",
|
217
217
|
"QUERY_LABELS_GQL",
|
218
|
+
"QUERY_LINEAR_PROJECTS_GQL",
|
218
219
|
"QUERY_MEDICAL_CONDITIONS_GQL",
|
219
220
|
"QUERY_MEDICAL_CONTRAINDICATIONS_GQL",
|
220
221
|
"QUERY_MEDICAL_DEVICES_GQL",
|
@@ -237,6 +238,7 @@ __all__ = [
|
|
237
238
|
"QUERY_REPOS_GQL",
|
238
239
|
"QUERY_SHARE_POINT_FOLDERS_GQL",
|
239
240
|
"QUERY_SHARE_POINT_LIBRARIES_GQL",
|
241
|
+
"QUERY_SLACK_CHANNELS_GQL",
|
240
242
|
"QUERY_SOFTWARES_GQL",
|
241
243
|
"QUERY_SPECIFICATIONS_GQL",
|
242
244
|
"QUERY_USAGE_GQL",
|
@@ -1398,6 +1400,15 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
1398
1400
|
index
|
1399
1401
|
text
|
1400
1402
|
relevance
|
1403
|
+
images {
|
1404
|
+
id
|
1405
|
+
mimeType
|
1406
|
+
data
|
1407
|
+
left
|
1408
|
+
right
|
1409
|
+
top
|
1410
|
+
bottom
|
1411
|
+
}
|
1401
1412
|
chunks {
|
1402
1413
|
index
|
1403
1414
|
pageIndex
|
@@ -2170,6 +2181,15 @@ query QueryContents($filter: ContentFilter, $correlationId: String) {
|
|
2170
2181
|
index
|
2171
2182
|
text
|
2172
2183
|
relevance
|
2184
|
+
images {
|
2185
|
+
id
|
2186
|
+
mimeType
|
2187
|
+
data
|
2188
|
+
left
|
2189
|
+
right
|
2190
|
+
top
|
2191
|
+
bottom
|
2192
|
+
}
|
2173
2193
|
chunks {
|
2174
2194
|
index
|
2175
2195
|
pageIndex
|
@@ -2422,6 +2442,15 @@ query QueryContentsFacets($filter: ContentFilter, $facets: [ContentFacetInput!],
|
|
2422
2442
|
index
|
2423
2443
|
text
|
2424
2444
|
relevance
|
2445
|
+
images {
|
2446
|
+
id
|
2447
|
+
mimeType
|
2448
|
+
data
|
2449
|
+
left
|
2450
|
+
right
|
2451
|
+
top
|
2452
|
+
bottom
|
2453
|
+
}
|
2425
2454
|
chunks {
|
2426
2455
|
index
|
2427
2456
|
pageIndex
|
@@ -6253,6 +6282,14 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6253
6282
|
}
|
6254
6283
|
"""
|
6255
6284
|
|
6285
|
+
QUERY_LINEAR_PROJECTS_GQL = """
|
6286
|
+
query QueryLinearProjects($properties: LinearProjectsInput!) {
|
6287
|
+
linearProjects(properties: $properties) {
|
6288
|
+
results
|
6289
|
+
}
|
6290
|
+
}
|
6291
|
+
"""
|
6292
|
+
|
6256
6293
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL = """
|
6257
6294
|
query QueryMicrosoftTeamsChannels($properties: MicrosoftTeamsChannelsInput!, $teamId: ID!) {
|
6258
6295
|
microsoftTeamsChannels(properties: $properties, teamId: $teamId) {
|
@@ -6316,6 +6353,14 @@ query QuerySharePointLibraries($properties: SharePointLibrariesInput!) {
|
|
6316
6353
|
}
|
6317
6354
|
"""
|
6318
6355
|
|
6356
|
+
QUERY_SLACK_CHANNELS_GQL = """
|
6357
|
+
query QuerySlackChannels($properties: SlackChannelsInput!) {
|
6358
|
+
slackChannels(properties: $properties) {
|
6359
|
+
results
|
6360
|
+
}
|
6361
|
+
}
|
6362
|
+
"""
|
6363
|
+
|
6319
6364
|
UPDATE_FEED_GQL = """
|
6320
6365
|
mutation UpdateFeed($feed: FeedUpdateInput!) {
|
6321
6366
|
updateFeed(feed: $feed) {
|
@@ -9131,6 +9176,9 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
|
|
9131
9176
|
id
|
9132
9177
|
}
|
9133
9178
|
}
|
9179
|
+
mistral {
|
9180
|
+
key
|
9181
|
+
}
|
9134
9182
|
}
|
9135
9183
|
}
|
9136
9184
|
}
|
@@ -9327,6 +9375,9 @@ query GetWorkflow($id: ID!, $correlationId: String) {
|
|
9327
9375
|
id
|
9328
9376
|
}
|
9329
9377
|
}
|
9378
|
+
mistral {
|
9379
|
+
key
|
9380
|
+
}
|
9330
9381
|
}
|
9331
9382
|
}
|
9332
9383
|
}
|
@@ -9493,6 +9544,9 @@ query QueryWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
|
9493
9544
|
id
|
9494
9545
|
}
|
9495
9546
|
}
|
9547
|
+
mistral {
|
9548
|
+
key
|
9549
|
+
}
|
9496
9550
|
}
|
9497
9551
|
}
|
9498
9552
|
}
|
@@ -9654,6 +9708,9 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
|
|
9654
9708
|
id
|
9655
9709
|
}
|
9656
9710
|
}
|
9711
|
+
mistral {
|
9712
|
+
key
|
9713
|
+
}
|
9657
9714
|
}
|
9658
9715
|
}
|
9659
9716
|
}
|
graphlit_api/query_contents.py
CHANGED
@@ -313,9 +313,20 @@ class QueryContentsContentsResultsPages(BaseModel):
|
|
313
313
|
index: Optional[int]
|
314
314
|
text: Optional[str]
|
315
315
|
relevance: Optional[float]
|
316
|
+
images: Optional[List[Optional["QueryContentsContentsResultsPagesImages"]]]
|
316
317
|
chunks: Optional[List[Optional["QueryContentsContentsResultsPagesChunks"]]]
|
317
318
|
|
318
319
|
|
320
|
+
class QueryContentsContentsResultsPagesImages(BaseModel):
|
321
|
+
id: Optional[str]
|
322
|
+
mime_type: Optional[str] = Field(alias="mimeType")
|
323
|
+
data: Optional[str]
|
324
|
+
left: Optional[int]
|
325
|
+
right: Optional[int]
|
326
|
+
top: Optional[int]
|
327
|
+
bottom: Optional[int]
|
328
|
+
|
329
|
+
|
319
330
|
class QueryContentsContentsResultsPagesChunks(BaseModel):
|
320
331
|
index: Optional[int]
|
321
332
|
page_index: Optional[int] = Field(alias="pageIndex")
|
@@ -320,9 +320,20 @@ class QueryContentsFacetsContentsResultsPages(BaseModel):
|
|
320
320
|
index: Optional[int]
|
321
321
|
text: Optional[str]
|
322
322
|
relevance: Optional[float]
|
323
|
+
images: Optional[List[Optional["QueryContentsFacetsContentsResultsPagesImages"]]]
|
323
324
|
chunks: Optional[List[Optional["QueryContentsFacetsContentsResultsPagesChunks"]]]
|
324
325
|
|
325
326
|
|
327
|
+
class QueryContentsFacetsContentsResultsPagesImages(BaseModel):
|
328
|
+
id: Optional[str]
|
329
|
+
mime_type: Optional[str] = Field(alias="mimeType")
|
330
|
+
data: Optional[str]
|
331
|
+
left: Optional[int]
|
332
|
+
right: Optional[int]
|
333
|
+
top: Optional[int]
|
334
|
+
bottom: Optional[int]
|
335
|
+
|
336
|
+
|
326
337
|
class QueryContentsFacetsContentsResultsPagesChunks(BaseModel):
|
327
338
|
index: Optional[int]
|
328
339
|
page_index: Optional[int] = Field(alias="pageIndex")
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QueryLinearProjects(BaseModel):
|
12
|
+
linear_projects: Optional["QueryLinearProjectsLinearProjects"] = Field(
|
13
|
+
alias="linearProjects"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QueryLinearProjectsLinearProjects(BaseModel):
|
18
|
+
results: Optional[List[str]]
|
19
|
+
|
20
|
+
|
21
|
+
QueryLinearProjects.model_rebuild()
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: ./documents
|
3
|
+
|
4
|
+
from typing import List, Optional
|
5
|
+
|
6
|
+
from pydantic import Field
|
7
|
+
|
8
|
+
from .base_model import BaseModel
|
9
|
+
|
10
|
+
|
11
|
+
class QuerySlackChannels(BaseModel):
|
12
|
+
slack_channels: Optional["QuerySlackChannelsSlackChannels"] = Field(
|
13
|
+
alias="slackChannels"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QuerySlackChannelsSlackChannels(BaseModel):
|
18
|
+
results: Optional[List[str]]
|
19
|
+
|
20
|
+
|
21
|
+
QuerySlackChannels.model_rebuild()
|
graphlit_api/query_workflows.py
CHANGED
@@ -141,6 +141,7 @@ class QueryWorkflowsWorkflowsResultsPreparationJobsConnector(BaseModel):
|
|
141
141
|
model_document: Optional[
|
142
142
|
"QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocument"
|
143
143
|
] = Field(alias="modelDocument")
|
144
|
+
mistral: Optional["QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral"]
|
144
145
|
|
145
146
|
|
146
147
|
class QueryWorkflowsWorkflowsResultsPreparationJobsConnectorAzureDocument(BaseModel):
|
@@ -188,6 +189,10 @@ class QueryWorkflowsWorkflowsResultsPreparationJobsConnectorModelDocumentSpecifi
|
|
188
189
|
id: str
|
189
190
|
|
190
191
|
|
192
|
+
class QueryWorkflowsWorkflowsResultsPreparationJobsConnectorMistral(BaseModel):
|
193
|
+
key: Optional[str]
|
194
|
+
|
195
|
+
|
191
196
|
class QueryWorkflowsWorkflowsResultsExtraction(BaseModel):
|
192
197
|
jobs: Optional[List[Optional["QueryWorkflowsWorkflowsResultsExtractionJobs"]]]
|
193
198
|
|
graphlit_api/update_workflow.py
CHANGED
@@ -132,6 +132,7 @@ class UpdateWorkflowUpdateWorkflowPreparationJobsConnector(BaseModel):
|
|
132
132
|
model_document: Optional[
|
133
133
|
"UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocument"
|
134
134
|
] = Field(alias="modelDocument")
|
135
|
+
mistral: Optional["UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral"]
|
135
136
|
|
136
137
|
|
137
138
|
class UpdateWorkflowUpdateWorkflowPreparationJobsConnectorAzureDocument(BaseModel):
|
@@ -179,6 +180,10 @@ class UpdateWorkflowUpdateWorkflowPreparationJobsConnectorModelDocumentSpecifica
|
|
179
180
|
id: str
|
180
181
|
|
181
182
|
|
183
|
+
class UpdateWorkflowUpdateWorkflowPreparationJobsConnectorMistral(BaseModel):
|
184
|
+
key: Optional[str]
|
185
|
+
|
186
|
+
|
182
187
|
class UpdateWorkflowUpdateWorkflowExtraction(BaseModel):
|
183
188
|
jobs: Optional[List[Optional["UpdateWorkflowUpdateWorkflowExtractionJobs"]]]
|
184
189
|
|
{graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.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=6SvHM_MNJxarpw8BvohGn5gf6JRy_wN65jGEGn6vPyU,175401
|
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=SOuyxnxUBmbkS07TMj0s8yDM-qDKgTyeZBzLmc9IPyU,193643
|
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
|
@@ -65,7 +65,7 @@ graphlit_api/create_repo.py,sha256=hzxh3eZLzz1Re4UzDQ2U7Fzok3v2_bub-VbhG6LJuk4,3
|
|
65
65
|
graphlit_api/create_software.py,sha256=Y9hvsa5XoLzkjm2e_CycKpdIV734tGC4fBHPyGpNU-g,396
|
66
66
|
graphlit_api/create_specification.py,sha256=p23AxlkOa4UJP20C1Cn3Iqi_bVYzauH7f5MxPuhXuHY,643
|
67
67
|
graphlit_api/create_user.py,sha256=3lvKHsmxnAdvOa26v8Cv3L_7gmaewkgT959aUoCXrvg,465
|
68
|
-
graphlit_api/create_workflow.py,sha256=
|
68
|
+
graphlit_api/create_workflow.py,sha256=Imh7xSvM5yPDIpMUTBBUkqmUrM1b7gS8BiQauI0yAHQ,12610
|
69
69
|
graphlit_api/delete_alert.py,sha256=lSFt3rOfbW-Sl9QdcvvtABwqj0e_zs48UPkXjDpfJ8Y,398
|
70
70
|
graphlit_api/delete_alerts.py,sha256=Rza3SIO0ykapJk-HZ0JMuPtlG8_KcLTAOwNJbaGCH_8,442
|
71
71
|
graphlit_api/delete_all_alerts.py,sha256=O-bKV3mKWEPddj3yLBTpoiquj_1kK1Oqr0iGpJuobns,469
|
@@ -157,7 +157,7 @@ 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=26JFfULRypV9mDifiYKATyJjWJ3fv5JQ3Nt6wiVXGg4,25888
|
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
|
@@ -165,7 +165,7 @@ graphlit_api/format_conversation.py,sha256=Bx9bN6zXF8CS7xjUcWz2D4nM6rrS7eKdVn_wH
|
|
165
165
|
graphlit_api/get_alert.py,sha256=jes1SmZtpI9Mbm3iy77v3yN5GGkbW1HGI8r6qn2cr4w,5940
|
166
166
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
167
167
|
graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wTk,830
|
168
|
-
graphlit_api/get_content.py,sha256=
|
168
|
+
graphlit_api/get_content.py,sha256=CPsh6wLQfUGdYS1YYSxHbMa-JprQDtEif_PA36UocA0,11021
|
169
169
|
graphlit_api/get_conversation.py,sha256=vHgbQtxUYJ3Es__7k8QATPGrzAu4yzWzdFvm52wANvw,16825
|
170
170
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
171
171
|
graphlit_api/get_feed.py,sha256=Tqesoe2561SzkMtvgGtSM-CDEot7qfjXp3n4qvf65B8,11209
|
@@ -191,19 +191,19 @@ graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7va
|
|
191
191
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
192
192
|
graphlit_api/get_specification.py,sha256=jwF4H8QG45b8UI0pX-lEBN2ZAdVl9XrIjwWwAljfP0Y,10017
|
193
193
|
graphlit_api/get_user.py,sha256=AkJrtoLsSIWtgYGXWZ5RErguTBml1AbDCQMLkzB4h24,2023
|
194
|
-
graphlit_api/get_workflow.py,sha256=
|
194
|
+
graphlit_api/get_workflow.py,sha256=4mcc0ztAYNYV-3wOYpSP9fN2veZAFNDVyCv8vWCDblI,11731
|
195
195
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
196
196
|
graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cRW_Y3Fw,2607
|
197
197
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
198
198
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
199
199
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
200
|
-
graphlit_api/input_types.py,sha256=
|
200
|
+
graphlit_api/input_types.py,sha256=mlsTVSe4xYhSAAvL7pzdAV1_WdBk4UEWcii9RtNloQg,136469
|
201
201
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
202
202
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
203
203
|
graphlit_api/lookup_credits.py,sha256=hzeXG3KMwmseR3hXLWalKX0DefbFgYELZUzP70TcaYA,1318
|
204
204
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
205
205
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
206
|
-
graphlit_api/operations.py,sha256=
|
206
|
+
graphlit_api/operations.py,sha256=P4iVLd16zh57KqGC8BRFfa5V17WSrg1YudZ7D8hkCxc,178291
|
207
207
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
208
208
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
209
209
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -213,14 +213,15 @@ graphlit_api/publish_text.py,sha256=DSKPRiEgrqkdJ2E_E9GPeEpnlj60lGconC1TlgCaUCQ,
|
|
213
213
|
graphlit_api/query_alerts.py,sha256=33LVQhaDaQ2rsZaZ4Fube2n6Mp5aLt5kN_AE87ygxqQ,6901
|
214
214
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
215
215
|
graphlit_api/query_collections.py,sha256=lQoUD4-ZiQYWa2ZeyOqVXokEA9IbkqJhrG56O0p8QVU,1075
|
216
|
-
graphlit_api/query_contents.py,sha256=
|
217
|
-
graphlit_api/query_contents_facets.py,sha256=
|
216
|
+
graphlit_api/query_contents.py,sha256=D9K8jq9CoaloR5jrJWUf8DnZ6Lz68dqTmQk4FDuAWCg,11956
|
217
|
+
graphlit_api/query_contents_facets.py,sha256=D3tmgLiUcn9Ws1CTgqfH09LTMx5aogZqv-9WvQOjiKc,13391
|
218
218
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
219
219
|
graphlit_api/query_conversations.py,sha256=T8k3PS8ntPpJauE5fmbxl_xyq8_B2DzgBMO7sBEINaE,18909
|
220
220
|
graphlit_api/query_credits.py,sha256=zL-3YgCH3c6xHVPXUqLtHwCF5WltwCrRuTfhRfeEu10,1250
|
221
221
|
graphlit_api/query_events.py,sha256=-YWXAy3hjSHlrIk9GtiKaPow3aWppE2XO60sToSjxSc,1716
|
222
222
|
graphlit_api/query_feeds.py,sha256=0dlyUE4D9KyV0TQnYr_Yqo-s-fJ9r7JyI4iCukgNwHM,12233
|
223
223
|
graphlit_api/query_labels.py,sha256=7EPyZEAK5csU6cBoq2hVhrZY_NTHL1ZbvAQHCl19BSY,584
|
224
|
+
graphlit_api/query_linear_projects.py,sha256=JCu01TJ5RBZQ-KdJaa5AuE8bqobuZxvz2H1rQH_XrwA,429
|
224
225
|
graphlit_api/query_medical_conditions.py,sha256=_XWHs9XX3DUuYC7nUhQKlVAYufphu-ed30qvaU9nPHs,938
|
225
226
|
graphlit_api/query_medical_contraindications.py,sha256=PIU2r1N-wlMvVAWPJyqaBQw5W_bTmhTO3DhkipSRQiI,1050
|
226
227
|
graphlit_api/query_medical_devices.py,sha256=bR25JgiRV135-_PIgsTQUHHE4Q3pvyAeGBt5kJTq4Nc,896
|
@@ -243,11 +244,12 @@ graphlit_api/query_products.py,sha256=8sK5tHtLfgtZXOPcNZa7Q0ye9CO5j2FyXsGImFLZer
|
|
243
244
|
graphlit_api/query_repos.py,sha256=cuPWGiDFCYPLfykvQLfy1qZU29Lver8TWxPcI3MiwGI,732
|
244
245
|
graphlit_api/query_share_point_folders.py,sha256=vu7XjVlAcZhIok3wvIvkzqbdxpcsbWBx5E93pzy8zSk,807
|
245
246
|
graphlit_api/query_share_point_libraries.py,sha256=u7EGJ91YnZ_MMIixtqJKu-2YhLl6ZyQtkeRLfac3XhI,961
|
247
|
+
graphlit_api/query_slack_channels.py,sha256=QnG46uW5OIjh1S0nsXggNVKMAd2DqHc5JNXF9B5fd_8,421
|
246
248
|
graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganBkc,874
|
247
249
|
graphlit_api/query_specifications.py,sha256=PBEJMLJnLU4vC3-gxydtR__56rJhoTl0cFxbSDIelvA,10706
|
248
250
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
249
251
|
graphlit_api/query_users.py,sha256=1zVM7hFRUMietRet97_AqTPnYTRvGLL1rCXNk3PGZM0,2375
|
250
|
-
graphlit_api/query_workflows.py,sha256=
|
252
|
+
graphlit_api/query_workflows.py,sha256=bix6jpgEzYbVjKOgIESVBEXSulTzMCHqEZWJ9ILJvgQ,13118
|
251
253
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
252
254
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
253
255
|
graphlit_api/revise_content.py,sha256=s13fRFmFV-OV-YbE-tvLe5J3CbT8OM98hDGTLVHiKS4,6417
|
@@ -288,9 +290,9 @@ graphlit_api/update_repo.py,sha256=9BEt_65v0omSEwDmuspasvp45pCUHfmgq6u2OdLEycw,3
|
|
288
290
|
graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePymCY,396
|
289
291
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
290
292
|
graphlit_api/update_user.py,sha256=d8NCeCa3XqMXAlL-9sbfa4qpgiIDoXDif3KsV33Sz-w,465
|
291
|
-
graphlit_api/update_workflow.py,sha256=
|
292
|
-
graphlit_client-1.0.
|
293
|
-
graphlit_client-1.0.
|
294
|
-
graphlit_client-1.0.
|
295
|
-
graphlit_client-1.0.
|
296
|
-
graphlit_client-1.0.
|
293
|
+
graphlit_api/update_workflow.py,sha256=miOPgbF34BpF7gXNG0nV8Mpz49POYbc3ev7MeFU_JbE,12610
|
294
|
+
graphlit_client-1.0.20250306001.dist-info/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
295
|
+
graphlit_client-1.0.20250306001.dist-info/METADATA,sha256=J4qdW2bOCAUGoxYTdA-223ugKkMgaiCH5KL2E9rEebM,3386
|
296
|
+
graphlit_client-1.0.20250306001.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
297
|
+
graphlit_client-1.0.20250306001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
298
|
+
graphlit_client-1.0.20250306001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250225001.dist-info → graphlit_client-1.0.20250306001.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|