graphlit-client 1.0.20250627001__py3-none-any.whl → 1.0.20250627002__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 +15 -0
- graphlit_api/client.py +62 -0
- graphlit_api/delete_all_views.py +23 -0
- graphlit_api/delete_views.py +23 -0
- graphlit_api/operations.py +33 -0
- graphlit_api/view_exists.py +19 -0
- {graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/RECORD +11 -8
- {graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -405,6 +405,7 @@ from .delete_all_specifications import (
|
|
405
405
|
DeleteAllSpecifications,
|
406
406
|
DeleteAllSpecificationsDeleteAllSpecifications,
|
407
407
|
)
|
408
|
+
from .delete_all_views import DeleteAllViews, DeleteAllViewsDeleteAllViews
|
408
409
|
from .delete_all_workflows import (
|
409
410
|
DeleteAllWorkflows,
|
410
411
|
DeleteAllWorkflowsDeleteAllWorkflows,
|
@@ -541,6 +542,7 @@ from .delete_specifications import (
|
|
541
542
|
)
|
542
543
|
from .delete_user import DeleteUser, DeleteUserDeleteUser
|
543
544
|
from .delete_view import DeleteView, DeleteViewDeleteView
|
545
|
+
from .delete_views import DeleteViews, DeleteViewsDeleteViews
|
544
546
|
from .delete_workflow import DeleteWorkflow, DeleteWorkflowDeleteWorkflow
|
545
547
|
from .delete_workflows import DeleteWorkflows, DeleteWorkflowsDeleteWorkflows
|
546
548
|
from .describe_encoded_image import (
|
@@ -1753,6 +1755,7 @@ from .operations import (
|
|
1753
1755
|
DELETE_ALL_REPOS_GQL,
|
1754
1756
|
DELETE_ALL_SOFTWARES_GQL,
|
1755
1757
|
DELETE_ALL_SPECIFICATIONS_GQL,
|
1758
|
+
DELETE_ALL_VIEWS_GQL,
|
1756
1759
|
DELETE_ALL_WORKFLOWS_GQL,
|
1757
1760
|
DELETE_CATEGORIES_GQL,
|
1758
1761
|
DELETE_CATEGORY_GQL,
|
@@ -1808,6 +1811,7 @@ from .operations import (
|
|
1808
1811
|
DELETE_SPECIFICATIONS_GQL,
|
1809
1812
|
DELETE_USER_GQL,
|
1810
1813
|
DELETE_VIEW_GQL,
|
1814
|
+
DELETE_VIEWS_GQL,
|
1811
1815
|
DELETE_WORKFLOW_GQL,
|
1812
1816
|
DELETE_WORKFLOWS_GQL,
|
1813
1817
|
DESCRIBE_ENCODED_IMAGE_GQL,
|
@@ -1974,6 +1978,7 @@ from .operations import (
|
|
1974
1978
|
UPSERT_LABEL_GQL,
|
1975
1979
|
UPSERT_SPECIFICATION_GQL,
|
1976
1980
|
UPSERT_WORKFLOW_GQL,
|
1981
|
+
VIEW_EXISTS_GQL,
|
1977
1982
|
WORKFLOW_EXISTS_GQL,
|
1978
1983
|
)
|
1979
1984
|
from .prompt import (
|
@@ -2996,6 +3001,7 @@ from .upsert_workflow import (
|
|
2996
3001
|
UpsertWorkflowUpsertWorkflowStorage,
|
2997
3002
|
UpsertWorkflowUpsertWorkflowStoragePolicy,
|
2998
3003
|
)
|
3004
|
+
from .view_exists import ViewExists, ViewExistsViewExists
|
2999
3005
|
from .workflow_exists import WorkflowExists, WorkflowExistsWorkflowExists
|
3000
3006
|
|
3001
3007
|
__all__ = [
|
@@ -3498,6 +3504,7 @@ __all__ = [
|
|
3498
3504
|
"DELETE_ALL_REPOS_GQL",
|
3499
3505
|
"DELETE_ALL_SOFTWARES_GQL",
|
3500
3506
|
"DELETE_ALL_SPECIFICATIONS_GQL",
|
3507
|
+
"DELETE_ALL_VIEWS_GQL",
|
3501
3508
|
"DELETE_ALL_WORKFLOWS_GQL",
|
3502
3509
|
"DELETE_CATEGORIES_GQL",
|
3503
3510
|
"DELETE_CATEGORY_GQL",
|
@@ -3552,6 +3559,7 @@ __all__ = [
|
|
3552
3559
|
"DELETE_SPECIFICATIONS_GQL",
|
3553
3560
|
"DELETE_SPECIFICATION_GQL",
|
3554
3561
|
"DELETE_USER_GQL",
|
3562
|
+
"DELETE_VIEWS_GQL",
|
3555
3563
|
"DELETE_VIEW_GQL",
|
3556
3564
|
"DELETE_WORKFLOWS_GQL",
|
3557
3565
|
"DELETE_WORKFLOW_GQL",
|
@@ -3623,6 +3631,8 @@ __all__ = [
|
|
3623
3631
|
"DeleteAllSoftwaresDeleteAllSoftwares",
|
3624
3632
|
"DeleteAllSpecifications",
|
3625
3633
|
"DeleteAllSpecificationsDeleteAllSpecifications",
|
3634
|
+
"DeleteAllViews",
|
3635
|
+
"DeleteAllViewsDeleteAllViews",
|
3626
3636
|
"DeleteAllWorkflows",
|
3627
3637
|
"DeleteAllWorkflowsDeleteAllWorkflows",
|
3628
3638
|
"DeleteCategories",
|
@@ -3733,6 +3743,8 @@ __all__ = [
|
|
3733
3743
|
"DeleteUserDeleteUser",
|
3734
3744
|
"DeleteView",
|
3735
3745
|
"DeleteViewDeleteView",
|
3746
|
+
"DeleteViews",
|
3747
|
+
"DeleteViewsDeleteViews",
|
3736
3748
|
"DeleteWorkflow",
|
3737
3749
|
"DeleteWorkflowDeleteWorkflow",
|
3738
3750
|
"DeleteWorkflows",
|
@@ -5725,7 +5737,10 @@ __all__ = [
|
|
5725
5737
|
"UserInput",
|
5726
5738
|
"UserTypes",
|
5727
5739
|
"UserUpdateInput",
|
5740
|
+
"VIEW_EXISTS_GQL",
|
5728
5741
|
"VideoMetadataInput",
|
5742
|
+
"ViewExists",
|
5743
|
+
"ViewExistsViewExists",
|
5729
5744
|
"ViewFilter",
|
5730
5745
|
"ViewInput",
|
5731
5746
|
"ViewTypes",
|
graphlit_api/client.py
CHANGED
@@ -100,6 +100,7 @@ from .delete_all_products import DeleteAllProducts
|
|
100
100
|
from .delete_all_repos import DeleteAllRepos
|
101
101
|
from .delete_all_softwares import DeleteAllSoftwares
|
102
102
|
from .delete_all_specifications import DeleteAllSpecifications
|
103
|
+
from .delete_all_views import DeleteAllViews
|
103
104
|
from .delete_all_workflows import DeleteAllWorkflows
|
104
105
|
from .delete_categories import DeleteCategories
|
105
106
|
from .delete_category import DeleteCategory
|
@@ -155,6 +156,7 @@ from .delete_specification import DeleteSpecification
|
|
155
156
|
from .delete_specifications import DeleteSpecifications
|
156
157
|
from .delete_user import DeleteUser
|
157
158
|
from .delete_view import DeleteView
|
159
|
+
from .delete_views import DeleteViews
|
158
160
|
from .delete_workflow import DeleteWorkflow
|
159
161
|
from .delete_workflows import DeleteWorkflows
|
160
162
|
from .describe_encoded_image import DescribeEncodedImage
|
@@ -434,6 +436,7 @@ from .operations import (
|
|
434
436
|
DELETE_ALL_REPOS_GQL,
|
435
437
|
DELETE_ALL_SOFTWARES_GQL,
|
436
438
|
DELETE_ALL_SPECIFICATIONS_GQL,
|
439
|
+
DELETE_ALL_VIEWS_GQL,
|
437
440
|
DELETE_ALL_WORKFLOWS_GQL,
|
438
441
|
DELETE_CATEGORIES_GQL,
|
439
442
|
DELETE_CATEGORY_GQL,
|
@@ -489,6 +492,7 @@ from .operations import (
|
|
489
492
|
DELETE_SPECIFICATIONS_GQL,
|
490
493
|
DELETE_USER_GQL,
|
491
494
|
DELETE_VIEW_GQL,
|
495
|
+
DELETE_VIEWS_GQL,
|
492
496
|
DELETE_WORKFLOW_GQL,
|
493
497
|
DELETE_WORKFLOWS_GQL,
|
494
498
|
DESCRIBE_ENCODED_IMAGE_GQL,
|
@@ -655,6 +659,7 @@ from .operations import (
|
|
655
659
|
UPSERT_LABEL_GQL,
|
656
660
|
UPSERT_SPECIFICATION_GQL,
|
657
661
|
UPSERT_WORKFLOW_GQL,
|
662
|
+
VIEW_EXISTS_GQL,
|
658
663
|
WORKFLOW_EXISTS_GQL,
|
659
664
|
)
|
660
665
|
from .prompt import Prompt
|
@@ -763,6 +768,7 @@ from .upsert_category import UpsertCategory
|
|
763
768
|
from .upsert_label import UpsertLabel
|
764
769
|
from .upsert_specification import UpsertSpecification
|
765
770
|
from .upsert_workflow import UpsertWorkflow
|
771
|
+
from .view_exists import ViewExists
|
766
772
|
from .workflow_exists import WorkflowExists
|
767
773
|
|
768
774
|
|
@@ -5876,6 +5882,27 @@ class Client(AsyncBaseClient):
|
|
5876
5882
|
data = self.get_data(response)
|
5877
5883
|
return CreateView.model_validate(data)
|
5878
5884
|
|
5885
|
+
async def delete_all_views(
|
5886
|
+
self,
|
5887
|
+
filter: Union[Optional[ViewFilter], UnsetType] = UNSET,
|
5888
|
+
is_synchronous: Union[Optional[bool], UnsetType] = UNSET,
|
5889
|
+
correlation_id: Union[Optional[str], UnsetType] = UNSET,
|
5890
|
+
**kwargs: Any
|
5891
|
+
) -> DeleteAllViews:
|
5892
|
+
variables: Dict[str, object] = {
|
5893
|
+
"filter": filter,
|
5894
|
+
"isSynchronous": is_synchronous,
|
5895
|
+
"correlationId": correlation_id,
|
5896
|
+
}
|
5897
|
+
response = await self.execute(
|
5898
|
+
query=DELETE_ALL_VIEWS_GQL,
|
5899
|
+
operation_name="DeleteAllViews",
|
5900
|
+
variables=variables,
|
5901
|
+
**kwargs
|
5902
|
+
)
|
5903
|
+
data = self.get_data(response)
|
5904
|
+
return DeleteAllViews.model_validate(data)
|
5905
|
+
|
5879
5906
|
async def delete_view(self, id: str, **kwargs: Any) -> DeleteView:
|
5880
5907
|
variables: Dict[str, object] = {"id": id}
|
5881
5908
|
response = await self.execute(
|
@@ -5887,6 +5914,22 @@ class Client(AsyncBaseClient):
|
|
5887
5914
|
data = self.get_data(response)
|
5888
5915
|
return DeleteView.model_validate(data)
|
5889
5916
|
|
5917
|
+
async def delete_views(
|
5918
|
+
self,
|
5919
|
+
ids: List[str],
|
5920
|
+
is_synchronous: Union[Optional[bool], UnsetType] = UNSET,
|
5921
|
+
**kwargs: Any
|
5922
|
+
) -> DeleteViews:
|
5923
|
+
variables: Dict[str, object] = {"ids": ids, "isSynchronous": is_synchronous}
|
5924
|
+
response = await self.execute(
|
5925
|
+
query=DELETE_VIEWS_GQL,
|
5926
|
+
operation_name="DeleteViews",
|
5927
|
+
variables=variables,
|
5928
|
+
**kwargs
|
5929
|
+
)
|
5930
|
+
data = self.get_data(response)
|
5931
|
+
return DeleteViews.model_validate(data)
|
5932
|
+
|
5890
5933
|
async def get_view(
|
5891
5934
|
self,
|
5892
5935
|
id: str,
|
@@ -5930,6 +5973,25 @@ class Client(AsyncBaseClient):
|
|
5930
5973
|
data = self.get_data(response)
|
5931
5974
|
return UpdateView.model_validate(data)
|
5932
5975
|
|
5976
|
+
async def view_exists(
|
5977
|
+
self,
|
5978
|
+
filter: Union[Optional[ViewFilter], UnsetType] = UNSET,
|
5979
|
+
correlation_id: Union[Optional[str], UnsetType] = UNSET,
|
5980
|
+
**kwargs: Any
|
5981
|
+
) -> ViewExists:
|
5982
|
+
variables: Dict[str, object] = {
|
5983
|
+
"filter": filter,
|
5984
|
+
"correlationId": correlation_id,
|
5985
|
+
}
|
5986
|
+
response = await self.execute(
|
5987
|
+
query=VIEW_EXISTS_GQL,
|
5988
|
+
operation_name="ViewExists",
|
5989
|
+
variables=variables,
|
5990
|
+
**kwargs
|
5991
|
+
)
|
5992
|
+
data = self.get_data(response)
|
5993
|
+
return ViewExists.model_validate(data)
|
5994
|
+
|
5933
5995
|
async def count_workflows(
|
5934
5996
|
self,
|
5935
5997
|
filter: Union[Optional[WorkflowFilter], UnsetType] = UNSET,
|
@@ -0,0 +1,23 @@
|
|
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
|
+
from .enums import EntityState
|
10
|
+
|
11
|
+
|
12
|
+
class DeleteAllViews(BaseModel):
|
13
|
+
delete_all_views: Optional[List[Optional["DeleteAllViewsDeleteAllViews"]]] = Field(
|
14
|
+
alias="deleteAllViews"
|
15
|
+
)
|
16
|
+
|
17
|
+
|
18
|
+
class DeleteAllViewsDeleteAllViews(BaseModel):
|
19
|
+
id: str
|
20
|
+
state: EntityState
|
21
|
+
|
22
|
+
|
23
|
+
DeleteAllViews.model_rebuild()
|
@@ -0,0 +1,23 @@
|
|
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
|
+
from .enums import EntityState
|
10
|
+
|
11
|
+
|
12
|
+
class DeleteViews(BaseModel):
|
13
|
+
delete_views: Optional[List[Optional["DeleteViewsDeleteViews"]]] = Field(
|
14
|
+
alias="deleteViews"
|
15
|
+
)
|
16
|
+
|
17
|
+
|
18
|
+
class DeleteViewsDeleteViews(BaseModel):
|
19
|
+
id: str
|
20
|
+
state: EntityState
|
21
|
+
|
22
|
+
|
23
|
+
DeleteViews.model_rebuild()
|
graphlit_api/operations.py
CHANGED
@@ -97,6 +97,7 @@ __all__ = [
|
|
97
97
|
"DELETE_ALL_REPOS_GQL",
|
98
98
|
"DELETE_ALL_SOFTWARES_GQL",
|
99
99
|
"DELETE_ALL_SPECIFICATIONS_GQL",
|
100
|
+
"DELETE_ALL_VIEWS_GQL",
|
100
101
|
"DELETE_ALL_WORKFLOWS_GQL",
|
101
102
|
"DELETE_CATEGORIES_GQL",
|
102
103
|
"DELETE_CATEGORY_GQL",
|
@@ -151,6 +152,7 @@ __all__ = [
|
|
151
152
|
"DELETE_SPECIFICATIONS_GQL",
|
152
153
|
"DELETE_SPECIFICATION_GQL",
|
153
154
|
"DELETE_USER_GQL",
|
155
|
+
"DELETE_VIEWS_GQL",
|
154
156
|
"DELETE_VIEW_GQL",
|
155
157
|
"DELETE_WORKFLOWS_GQL",
|
156
158
|
"DELETE_WORKFLOW_GQL",
|
@@ -318,6 +320,7 @@ __all__ = [
|
|
318
320
|
"UPSERT_LABEL_GQL",
|
319
321
|
"UPSERT_SPECIFICATION_GQL",
|
320
322
|
"UPSERT_WORKFLOW_GQL",
|
323
|
+
"VIEW_EXISTS_GQL",
|
321
324
|
"WORKFLOW_EXISTS_GQL",
|
322
325
|
]
|
323
326
|
|
@@ -10568,6 +10571,19 @@ mutation CreateView($view: ViewInput!) {
|
|
10568
10571
|
}
|
10569
10572
|
"""
|
10570
10573
|
|
10574
|
+
DELETE_ALL_VIEWS_GQL = """
|
10575
|
+
mutation DeleteAllViews($filter: ViewFilter, $isSynchronous: Boolean, $correlationId: String) {
|
10576
|
+
deleteAllViews(
|
10577
|
+
filter: $filter
|
10578
|
+
isSynchronous: $isSynchronous
|
10579
|
+
correlationId: $correlationId
|
10580
|
+
) {
|
10581
|
+
id
|
10582
|
+
state
|
10583
|
+
}
|
10584
|
+
}
|
10585
|
+
"""
|
10586
|
+
|
10571
10587
|
DELETE_VIEW_GQL = """
|
10572
10588
|
mutation DeleteView($id: ID!) {
|
10573
10589
|
deleteView(id: $id) {
|
@@ -10577,6 +10593,15 @@ mutation DeleteView($id: ID!) {
|
|
10577
10593
|
}
|
10578
10594
|
"""
|
10579
10595
|
|
10596
|
+
DELETE_VIEWS_GQL = """
|
10597
|
+
mutation DeleteViews($ids: [ID!]!, $isSynchronous: Boolean) {
|
10598
|
+
deleteViews(ids: $ids, isSynchronous: $isSynchronous) {
|
10599
|
+
id
|
10600
|
+
state
|
10601
|
+
}
|
10602
|
+
}
|
10603
|
+
"""
|
10604
|
+
|
10580
10605
|
GET_VIEW_GQL = """
|
10581
10606
|
query GetView($id: ID!, $correlationId: String) {
|
10582
10607
|
view(id: $id, correlationId: $correlationId) {
|
@@ -11120,6 +11145,14 @@ mutation UpdateView($view: ViewUpdateInput!) {
|
|
11120
11145
|
}
|
11121
11146
|
"""
|
11122
11147
|
|
11148
|
+
VIEW_EXISTS_GQL = """
|
11149
|
+
query ViewExists($filter: ViewFilter, $correlationId: String) {
|
11150
|
+
viewExists(filter: $filter, correlationId: $correlationId) {
|
11151
|
+
result
|
11152
|
+
}
|
11153
|
+
}
|
11154
|
+
"""
|
11155
|
+
|
11123
11156
|
COUNT_WORKFLOWS_GQL = """
|
11124
11157
|
query CountWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
11125
11158
|
countWorkflows(filter: $filter, correlationId: $correlationId) {
|
@@ -0,0 +1,19 @@
|
|
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 ViewExists(BaseModel):
|
12
|
+
view_exists: Optional["ViewExistsViewExists"] = Field(alias="viewExists")
|
13
|
+
|
14
|
+
|
15
|
+
class ViewExistsViewExists(BaseModel):
|
16
|
+
result: Optional[bool]
|
17
|
+
|
18
|
+
|
19
|
+
ViewExists.model_rebuild()
|
{graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/RECORD
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
|
2
2
|
graphlit/graphlit.py,sha256=g2znIWEb6fIwMKGm5G_BY4VHdaZi6hLO4Y6FdBjNesM,2389
|
3
|
-
graphlit_api/__init__.py,sha256=
|
3
|
+
graphlit_api/__init__.py,sha256=xAZqDQS2xgG4i82ldRwhwdQRPC4ZlkN5QwTExPKeT3Y,230979
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
|
5
5
|
graphlit_api/ask_graphlit.py,sha256=U2grdqvzeFMjTzM5ACTEXV2Rk-R_WAwdslzWAtZb6i8,6489
|
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/branch_conversation.py,sha256=iU3IsoM526AHUHjX0ODAyOPTpyS9N5RqSdytoAOmKbU,539
|
9
9
|
graphlit_api/clear_conversation.py,sha256=5GOmc2wfupV-7EHWyi3v6LA0pSVLtFNCzxPJm42Dp6Y,531
|
10
|
-
graphlit_api/client.py,sha256=
|
10
|
+
graphlit_api/client.py,sha256=obbaeXykXw7rJ_OxvlChK0z2YHKrjM3viGK1pTJ6VSU,219059
|
11
11
|
graphlit_api/close_conversation.py,sha256=HcIUUiNf7hnuLZ7Fy6IcgfuHMSyWyJ7uOEy1EEETy_4,531
|
12
12
|
graphlit_api/complete_conversation.py,sha256=39v86YLrm9IGQVcsRHUyxoTkiT1sNoVPQZzim5FxSZo,16844
|
13
13
|
graphlit_api/continue_conversation.py,sha256=Ba_ufN-4Ji6ZjznlilvS85xxkdV5JGpnuEQUU-qGXBk,16844
|
@@ -99,6 +99,7 @@ graphlit_api/delete_all_products.py,sha256=A2qRbnffYYEMCUQduaXxAIwDcWx22z7rDGE7T
|
|
99
99
|
graphlit_api/delete_all_repos.py,sha256=_p6kVnTjYpfCpzGrvEMR9Y8SChLrfWhTuDZNVwajclQ,459
|
100
100
|
graphlit_api/delete_all_softwares.py,sha256=G_HayzezkSiIi3iedLQ2H3ZSV4Z8SFsuzgIF6qDfAAg,491
|
101
101
|
graphlit_api/delete_all_specifications.py,sha256=h8xNxH1trSA5hOU7PpaX2aoyx9jCuO43tHWzCRY_G4Y,531
|
102
|
+
graphlit_api/delete_all_views.py,sha256=CxzqV8RDwZC5euk6NbnNzn5lzK2I6kdw0MTk8gaB4fc,459
|
102
103
|
graphlit_api/delete_all_workflows.py,sha256=1W_ofIlRSAt7_4XIWNJCegdPSXDIqBkzyepJKdFBji8,491
|
103
104
|
graphlit_api/delete_categories.py,sha256=BieY7zDWsXKTsYv2c_fLtEkXbzTFsJ3AFJV-FKdwk2o,476
|
104
105
|
graphlit_api/delete_category.py,sha256=HUvroX0LWXLAHEJ7TBEprjbUsJ3zQzkKIEM8KhuaGcY,436
|
@@ -154,6 +155,7 @@ graphlit_api/delete_specification.py,sha256=N1xmncFTKoznDEBcqD2BbiRSpf-4tCqhT-hN
|
|
154
155
|
graphlit_api/delete_specifications.py,sha256=AR9Ipo0_tNwnAUb2PSbpt3Mmzi-U_nZ345ZWI5mdJbY,506
|
155
156
|
graphlit_api/delete_user.py,sha256=ACVimDvC5JV4I8r9EsoKBTcW28DL4WYKnRIzCkz5KRo,390
|
156
157
|
graphlit_api/delete_view.py,sha256=e-H_mzuvFpKXd_dfz3jt5dZQkoq3EqGJUSG7qwtY_uU,390
|
158
|
+
graphlit_api/delete_views.py,sha256=Ke6ECN5zLz1lg5l0HCmmXAfPF0G-wqX9SQsqeJjzPss,434
|
157
159
|
graphlit_api/delete_workflow.py,sha256=8En1P3HYHc9h5PSZumSFQyLITlxGejgpB4pnlZ9Jz2w,436
|
158
160
|
graphlit_api/delete_workflows.py,sha256=9fHteXWNKeHJU1J54bKF7uxb3FFueQFanIBY0DreKfY,468
|
159
161
|
graphlit_api/describe_encoded_image.py,sha256=9MzArgCTfepv_wBlvKYCAuY-AJtwhNMU8U_BYF1wxDk,6452
|
@@ -217,7 +219,7 @@ graphlit_api/lookup_contents.py,sha256=_s9tmHSm6WNIEKQ4J2JEdSsGg30HKhf3CxoiPMwZJ
|
|
217
219
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
218
220
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
219
221
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
220
|
-
graphlit_api/operations.py,sha256=
|
222
|
+
graphlit_api/operations.py,sha256=M1yqV4bK1ah35hV8VVP7Yt8dhcQt_U3fmh0oGFuUp2s,221381
|
221
223
|
graphlit_api/prompt.py,sha256=jBlM3ywGnbVPYSBHMDPAy5ZlDDtndRsHnV7twcwLX1g,6203
|
222
224
|
graphlit_api/prompt_conversation.py,sha256=JMiDfxFaixz63wXcT-h948c5x2Uc6PgB3D7wORltkhU,16458
|
223
225
|
graphlit_api/prompt_specifications.py,sha256=GFLRlyp5pISfB0PVMw3RPCwGvqkA3qI5M2NiXXu2aT0,7090
|
@@ -324,9 +326,10 @@ graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7
|
|
324
326
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
325
327
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
326
328
|
graphlit_api/upsert_workflow.py,sha256=BWzMvOF7kQWs-uLuet5jCletHq8KGD7XK-ZwWpHM5MU,16804
|
329
|
+
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
327
330
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
328
|
-
graphlit_client-1.0.
|
329
|
-
graphlit_client-1.0.
|
330
|
-
graphlit_client-1.0.
|
331
|
-
graphlit_client-1.0.
|
332
|
-
graphlit_client-1.0.
|
331
|
+
graphlit_client-1.0.20250627002.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
332
|
+
graphlit_client-1.0.20250627002.dist-info/METADATA,sha256=Uf_Uw0EJotN4iDrZ1yElclNNobBHYzNdgQFftsDLTOo,3408
|
333
|
+
graphlit_client-1.0.20250627002.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
334
|
+
graphlit_client-1.0.20250627002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
335
|
+
graphlit_client-1.0.20250627002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250627001.dist-info → graphlit_client-1.0.20250627002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|