graphlit-client 1.0.20250315001__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 CHANGED
@@ -639,6 +639,7 @@ from .extract_text import (
639
639
  ExtractTextExtractTextContent,
640
640
  ExtractTextExtractTextSpecification,
641
641
  )
642
+ from .feed_exists import FeedExists, FeedExistsFeedExists
642
643
  from .format_conversation import (
643
644
  FormatConversation,
644
645
  FormatConversationFormatConversation,
@@ -1527,6 +1528,7 @@ from .operations import (
1527
1528
  ENABLE_USER_GQL,
1528
1529
  EXTRACT_CONTENTS_GQL,
1529
1530
  EXTRACT_TEXT_GQL,
1531
+ FEED_EXISTS_GQL,
1530
1532
  FORMAT_CONVERSATION_GQL,
1531
1533
  GET_ALERT_GQL,
1532
1534
  GET_CATEGORY_GQL,
@@ -1623,6 +1625,7 @@ from .operations import (
1623
1625
  SCREENSHOT_PAGE_GQL,
1624
1626
  SEARCH_WEB_GQL,
1625
1627
  SEND_NOTIFICATION_GQL,
1628
+ SPECIFICATION_EXISTS_GQL,
1626
1629
  SUGGEST_CONVERSATION_GQL,
1627
1630
  SUMMARIZE_CONTENTS_GQL,
1628
1631
  SUMMARIZE_TEXT_GQL,
@@ -1660,6 +1663,7 @@ from .operations import (
1660
1663
  UPSERT_LABEL_GQL,
1661
1664
  UPSERT_SPECIFICATION_GQL,
1662
1665
  UPSERT_WORKFLOW_GQL,
1666
+ WORKFLOW_EXISTS_GQL,
1663
1667
  )
1664
1668
  from .prompt import (
1665
1669
  Prompt,
@@ -2246,6 +2250,10 @@ from .screenshot_page import (
2246
2250
  )
2247
2251
  from .search_web import SearchWeb, SearchWebSearchWeb, SearchWebSearchWebResults
2248
2252
  from .send_notification import SendNotification, SendNotificationSendNotification
2253
+ from .specification_exists import (
2254
+ SpecificationExists,
2255
+ SpecificationExistsSpecificationExists,
2256
+ )
2249
2257
  from .suggest_conversation import (
2250
2258
  SuggestConversation,
2251
2259
  SuggestConversationSuggestConversation,
@@ -2452,6 +2460,7 @@ from .upsert_workflow import (
2452
2460
  UpsertWorkflowUpsertWorkflowStorage,
2453
2461
  UpsertWorkflowUpsertWorkflowStoragePolicy,
2454
2462
  )
2463
+ from .workflow_exists import WorkflowExists, WorkflowExistsWorkflowExists
2455
2464
 
2456
2465
  __all__ = [
2457
2466
  "ADD_CONTENTS_TO_COLLECTIONS_GQL",
@@ -3182,10 +3191,13 @@ __all__ = [
3182
3191
  "ExtractTextExtractTextSpecification",
3183
3192
  "ExtractionWorkflowJobInput",
3184
3193
  "ExtractionWorkflowStageInput",
3194
+ "FEED_EXISTS_GQL",
3185
3195
  "FHIREnrichmentPropertiesInput",
3186
3196
  "FORMAT_CONVERSATION_GQL",
3187
3197
  "FacetValueTypes",
3188
3198
  "FeedConnectorTypes",
3199
+ "FeedExists",
3200
+ "FeedExistsFeedExists",
3189
3201
  "FeedFilter",
3190
3202
  "FeedInput",
3191
3203
  "FeedListingTypes",
@@ -4389,6 +4401,7 @@ __all__ = [
4389
4401
  "SCREENSHOT_PAGE_GQL",
4390
4402
  "SEARCH_WEB_GQL",
4391
4403
  "SEND_NOTIFICATION_GQL",
4404
+ "SPECIFICATION_EXISTS_GQL",
4392
4405
  "SUGGEST_CONVERSATION_GQL",
4393
4406
  "SUMMARIZE_CONTENTS_GQL",
4394
4407
  "SUMMARIZE_TEXT_GQL",
@@ -4429,6 +4442,8 @@ __all__ = [
4429
4442
  "SoftwareFilter",
4430
4443
  "SoftwareInput",
4431
4444
  "SoftwareUpdateInput",
4445
+ "SpecificationExists",
4446
+ "SpecificationExistsSpecificationExists",
4432
4447
  "SpecificationFilter",
4433
4448
  "SpecificationInput",
4434
4449
  "SpecificationTypes",
@@ -4677,9 +4692,12 @@ __all__ = [
4677
4692
  "VoyageModelPropertiesInput",
4678
4693
  "VoyageModelPropertiesUpdateInput",
4679
4694
  "VoyageModels",
4695
+ "WORKFLOW_EXISTS_GQL",
4680
4696
  "WebFeedPropertiesInput",
4681
4697
  "WebFeedPropertiesUpdateInput",
4682
4698
  "WorkflowActionInput",
4699
+ "WorkflowExists",
4700
+ "WorkflowExistsWorkflowExists",
4683
4701
  "WorkflowFilter",
4684
4702
  "WorkflowInput",
4685
4703
  "WorkflowUpdateInput",
graphlit_api/client.py CHANGED
@@ -161,6 +161,7 @@ from .enable_user import EnableUser
161
161
  from .enums import SdkTypes, SearchServiceTypes, TextTypes
162
162
  from .extract_contents import ExtractContents
163
163
  from .extract_text import ExtractText
164
+ from .feed_exists import FeedExists
164
165
  from .format_conversation import FormatConversation
165
166
  from .get_alert import GetAlert
166
167
  from .get_category import GetCategory
@@ -467,6 +468,7 @@ from .operations import (
467
468
  ENABLE_USER_GQL,
468
469
  EXTRACT_CONTENTS_GQL,
469
470
  EXTRACT_TEXT_GQL,
471
+ FEED_EXISTS_GQL,
470
472
  FORMAT_CONVERSATION_GQL,
471
473
  GET_ALERT_GQL,
472
474
  GET_CATEGORY_GQL,
@@ -563,6 +565,7 @@ from .operations import (
563
565
  SCREENSHOT_PAGE_GQL,
564
566
  SEARCH_WEB_GQL,
565
567
  SEND_NOTIFICATION_GQL,
568
+ SPECIFICATION_EXISTS_GQL,
566
569
  SUGGEST_CONVERSATION_GQL,
567
570
  SUMMARIZE_CONTENTS_GQL,
568
571
  SUMMARIZE_TEXT_GQL,
@@ -600,6 +603,7 @@ from .operations import (
600
603
  UPSERT_LABEL_GQL,
601
604
  UPSERT_SPECIFICATION_GQL,
602
605
  UPSERT_WORKFLOW_GQL,
606
+ WORKFLOW_EXISTS_GQL,
603
607
  )
604
608
  from .prompt import Prompt
605
609
  from .prompt_conversation import PromptConversation
@@ -656,6 +660,7 @@ from .revise_text import ReviseText
656
660
  from .screenshot_page import ScreenshotPage
657
661
  from .search_web import SearchWeb
658
662
  from .send_notification import SendNotification
663
+ from .specification_exists import SpecificationExists
659
664
  from .suggest_conversation import SuggestConversation
660
665
  from .summarize_contents import SummarizeContents
661
666
  from .summarize_text import SummarizeText
@@ -693,6 +698,7 @@ from .upsert_category import UpsertCategory
693
698
  from .upsert_label import UpsertLabel
694
699
  from .upsert_specification import UpsertSpecification
695
700
  from .upsert_workflow import UpsertWorkflow
701
+ from .workflow_exists import WorkflowExists
696
702
 
697
703
 
698
704
  def gql(q: str) -> str:
@@ -2430,6 +2436,25 @@ class Client(AsyncBaseClient):
2430
2436
  data = self.get_data(response)
2431
2437
  return EnableFeed.model_validate(data)
2432
2438
 
2439
+ async def feed_exists(
2440
+ self,
2441
+ filter: Union[Optional[FeedFilter], UnsetType] = UNSET,
2442
+ correlation_id: Union[Optional[str], UnsetType] = UNSET,
2443
+ **kwargs: Any
2444
+ ) -> FeedExists:
2445
+ variables: Dict[str, object] = {
2446
+ "filter": filter,
2447
+ "correlationId": correlation_id,
2448
+ }
2449
+ response = await self.execute(
2450
+ query=FEED_EXISTS_GQL,
2451
+ operation_name="FeedExists",
2452
+ variables=variables,
2453
+ **kwargs
2454
+ )
2455
+ data = self.get_data(response)
2456
+ return FeedExists.model_validate(data)
2457
+
2433
2458
  async def get_feed(
2434
2459
  self,
2435
2460
  id: str,
@@ -5241,6 +5266,25 @@ class Client(AsyncBaseClient):
5241
5266
  data = self.get_data(response)
5242
5267
  return QuerySpecifications.model_validate(data)
5243
5268
 
5269
+ async def specification_exists(
5270
+ self,
5271
+ filter: Union[Optional[SpecificationFilter], UnsetType] = UNSET,
5272
+ correlation_id: Union[Optional[str], UnsetType] = UNSET,
5273
+ **kwargs: Any
5274
+ ) -> SpecificationExists:
5275
+ variables: Dict[str, object] = {
5276
+ "filter": filter,
5277
+ "correlationId": correlation_id,
5278
+ }
5279
+ response = await self.execute(
5280
+ query=SPECIFICATION_EXISTS_GQL,
5281
+ operation_name="SpecificationExists",
5282
+ variables=variables,
5283
+ **kwargs
5284
+ )
5285
+ data = self.get_data(response)
5286
+ return SpecificationExists.model_validate(data)
5287
+
5244
5288
  async def update_specification(
5245
5289
  self, specification: SpecificationUpdateInput, **kwargs: Any
5246
5290
  ) -> UpdateSpecification:
@@ -5508,3 +5552,22 @@ class Client(AsyncBaseClient):
5508
5552
  )
5509
5553
  data = self.get_data(response)
5510
5554
  return UpsertWorkflow.model_validate(data)
5555
+
5556
+ async def workflow_exists(
5557
+ self,
5558
+ filter: Union[Optional[WorkflowFilter], UnsetType] = UNSET,
5559
+ correlation_id: Union[Optional[str], UnsetType] = UNSET,
5560
+ **kwargs: Any
5561
+ ) -> WorkflowExists:
5562
+ variables: Dict[str, object] = {
5563
+ "filter": filter,
5564
+ "correlationId": correlation_id,
5565
+ }
5566
+ response = await self.execute(
5567
+ query=WORKFLOW_EXISTS_GQL,
5568
+ operation_name="WorkflowExists",
5569
+ variables=variables,
5570
+ **kwargs
5571
+ )
5572
+ data = self.get_data(response)
5573
+ return WorkflowExists.model_validate(data)
@@ -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 FeedExists(BaseModel):
12
+ feed_exists: Optional["FeedExistsFeedExists"] = Field(alias="feedExists")
13
+
14
+
15
+ class FeedExistsFeedExists(BaseModel):
16
+ result: Optional[bool]
17
+
18
+
19
+ FeedExists.model_rebuild()
@@ -157,6 +157,7 @@ __all__ = [
157
157
  "ENABLE_USER_GQL",
158
158
  "EXTRACT_CONTENTS_GQL",
159
159
  "EXTRACT_TEXT_GQL",
160
+ "FEED_EXISTS_GQL",
160
161
  "FORMAT_CONVERSATION_GQL",
161
162
  "GET_ALERT_GQL",
162
163
  "GET_CATEGORY_GQL",
@@ -253,6 +254,7 @@ __all__ = [
253
254
  "SCREENSHOT_PAGE_GQL",
254
255
  "SEARCH_WEB_GQL",
255
256
  "SEND_NOTIFICATION_GQL",
257
+ "SPECIFICATION_EXISTS_GQL",
256
258
  "SUGGEST_CONVERSATION_GQL",
257
259
  "SUMMARIZE_CONTENTS_GQL",
258
260
  "SUMMARIZE_TEXT_GQL",
@@ -290,6 +292,7 @@ __all__ = [
290
292
  "UPSERT_LABEL_GQL",
291
293
  "UPSERT_SPECIFICATION_GQL",
292
294
  "UPSERT_WORKFLOW_GQL",
295
+ "WORKFLOW_EXISTS_GQL",
293
296
  ]
294
297
 
295
298
  COUNT_ALERTS_GQL = """
@@ -5562,6 +5565,14 @@ mutation EnableFeed($id: ID!) {
5562
5565
  }
5563
5566
  """
5564
5567
 
5568
+ FEED_EXISTS_GQL = """
5569
+ query FeedExists($filter: FeedFilter, $correlationId: String) {
5570
+ feedExists(filter: $filter, correlationId: $correlationId) {
5571
+ result
5572
+ }
5573
+ }
5574
+ """
5575
+
5565
5576
  GET_FEED_GQL = """
5566
5577
  query GetFeed($id: ID!, $correlationId: String) {
5567
5578
  feed(id: $id, correlationId: $correlationId) {
@@ -8706,6 +8717,14 @@ query QuerySpecifications($filter: SpecificationFilter, $correlationId: String)
8706
8717
  }
8707
8718
  """
8708
8719
 
8720
+ SPECIFICATION_EXISTS_GQL = """
8721
+ query SpecificationExists($filter: SpecificationFilter, $correlationId: String) {
8722
+ specificationExists(filter: $filter, correlationId: $correlationId) {
8723
+ result
8724
+ }
8725
+ }
8726
+ """
8727
+
8709
8728
  UPDATE_SPECIFICATION_GQL = """
8710
8729
  mutation UpdateSpecification($specification: SpecificationUpdateInput!) {
8711
8730
  updateSpecification(specification: $specification) {
@@ -9907,3 +9926,11 @@ mutation UpsertWorkflow($workflow: WorkflowInput!) {
9907
9926
  }
9908
9927
  }
9909
9928
  """
9929
+
9930
+ WORKFLOW_EXISTS_GQL = """
9931
+ query WorkflowExists($filter: WorkflowFilter, $correlationId: String) {
9932
+ workflowExists(filter: $filter, correlationId: $correlationId) {
9933
+ result
9934
+ }
9935
+ }
9936
+ """
@@ -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 SpecificationExists(BaseModel):
12
+ specification_exists: Optional["SpecificationExistsSpecificationExists"] = Field(
13
+ alias="specificationExists"
14
+ )
15
+
16
+
17
+ class SpecificationExistsSpecificationExists(BaseModel):
18
+ result: Optional[bool]
19
+
20
+
21
+ SpecificationExists.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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: graphlit-client
3
- Version: 1.0.20250315001
3
+ Version: 1.0.20250315002
4
4
  Summary: Graphlit API Python Client
5
5
  Home-page: https://github.com/graphlit/graphlit-client-python
6
6
  Author: Unstruk Data Inc.
@@ -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=ZXyACnmV6L6BgWyKFoTyDkMSEo7V4rRS7S7DL04cyRo,184623
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=Ad48VV6QdT1XHcOzIv1vIfMdgrE6hTrN-Y3PN0Yd1iE,196490
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
@@ -161,6 +161,7 @@ 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
@@ -203,7 +204,7 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
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=mFV2QUhKTa1CDtsce_z3gZPaxcCObO01QVltTSQdgfg,180829
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
@@ -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
@@ -296,8 +298,9 @@ graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7
296
298
  graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
297
299
  graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
298
300
  graphlit_api/upsert_workflow.py,sha256=BGZC0wjy9mq2vhIE8dSoj4hYuVOJNre9IRxsDBWPerY,15112
299
- graphlit_client-1.0.20250315001.dist-info/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
300
- graphlit_client-1.0.20250315001.dist-info/METADATA,sha256=ZF_FJcIeGyP3jYyUd8kzvZbw3tY3_PzTSsAVZP6-YDg,3386
301
- graphlit_client-1.0.20250315001.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
302
- graphlit_client-1.0.20250315001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
303
- graphlit_client-1.0.20250315001.dist-info/RECORD,,
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,,