graphlit-client 1.0.20250402001__py3-none-any.whl → 1.0.20250407001__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/create_workflow.py +1 -0
- graphlit_api/enums.py +3 -0
- graphlit_api/get_content.py +1 -0
- graphlit_api/get_workflow.py +1 -0
- graphlit_api/input_types.py +4 -0
- graphlit_api/operations.py +7 -0
- graphlit_api/query_contents.py +1 -0
- graphlit_api/query_workflows.py +1 -0
- graphlit_api/update_workflow.py +1 -0
- graphlit_api/upsert_workflow.py +1 -0
- {graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/RECORD +15 -15
- {graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/top_level.txt +0 -0
graphlit_api/create_workflow.py
CHANGED
@@ -56,6 +56,7 @@ class CreateWorkflowCreateWorkflowIngestion(BaseModel):
|
|
56
56
|
observations: Optional[
|
57
57
|
List[Optional["CreateWorkflowCreateWorkflowIngestionObservations"]]
|
58
58
|
]
|
59
|
+
enable_email_collections: Optional[bool] = Field(alias="enableEmailCollections")
|
59
60
|
|
60
61
|
|
61
62
|
class CreateWorkflowCreateWorkflowIngestionIf(BaseModel):
|
graphlit_api/enums.py
CHANGED
@@ -238,6 +238,7 @@ class MedicalStudyFacetTypes(str, Enum):
|
|
238
238
|
|
239
239
|
class CollectionTypes(str, Enum):
|
240
240
|
COLLECTION = "COLLECTION"
|
241
|
+
THREAD = "THREAD"
|
241
242
|
|
242
243
|
|
243
244
|
class MedicalDeviceFacetTypes(str, Enum):
|
@@ -653,6 +654,8 @@ class VoyageModels(str, Enum):
|
|
653
654
|
|
654
655
|
|
655
656
|
class GroqModels(str, Enum):
|
657
|
+
LLAMA_4_MAVERICK_17B = "LLAMA_4_MAVERICK_17B"
|
658
|
+
LLAMA_4_SCOUT_17B = "LLAMA_4_SCOUT_17B"
|
656
659
|
DEEPSEEK_R1_LLAMA_70B_PREVIEW = "DEEPSEEK_R1_LLAMA_70B_PREVIEW"
|
657
660
|
MIXTRAL_8X7B_INSTRUCT = "MIXTRAL_8X7B_INSTRUCT"
|
658
661
|
LLAMA_3_3_70B = "LLAMA_3_3_70B"
|
graphlit_api/get_content.py
CHANGED
@@ -171,6 +171,7 @@ class GetContentContentDocument(BaseModel):
|
|
171
171
|
|
172
172
|
class GetContentContentEmail(BaseModel):
|
173
173
|
identifier: Optional[str]
|
174
|
+
thread_identifier: Optional[str] = Field(alias="threadIdentifier")
|
174
175
|
subject: Optional[str]
|
175
176
|
labels: Optional[List[Optional[str]]]
|
176
177
|
sensitivity: Optional[MailSensitivity]
|
graphlit_api/get_workflow.py
CHANGED
@@ -57,6 +57,7 @@ class GetWorkflowWorkflowIngestion(BaseModel):
|
|
57
57
|
if_: Optional["GetWorkflowWorkflowIngestionIf"] = Field(alias="if")
|
58
58
|
collections: Optional[List[Optional["GetWorkflowWorkflowIngestionCollections"]]]
|
59
59
|
observations: Optional[List[Optional["GetWorkflowWorkflowIngestionObservations"]]]
|
60
|
+
enable_email_collections: Optional[bool] = Field(alias="enableEmailCollections")
|
60
61
|
|
61
62
|
|
62
63
|
class GetWorkflowWorkflowIngestionIf(BaseModel):
|
graphlit_api/input_types.py
CHANGED
@@ -1979,6 +1979,9 @@ class IngestionWorkflowStageInput(BaseModel):
|
|
1979
1979
|
if_: Optional["IngestionContentFilterInput"] = Field(alias="if", default=None)
|
1980
1980
|
collections: Optional[List[Optional["EntityReferenceInput"]]] = None
|
1981
1981
|
observations: Optional[List[Optional["ObservationReferenceInput"]]] = None
|
1982
|
+
enable_email_collections: Optional[bool] = Field(
|
1983
|
+
alias="enableEmailCollections", default=None
|
1984
|
+
)
|
1982
1985
|
|
1983
1986
|
|
1984
1987
|
class VideoMetadataInput(BaseModel):
|
@@ -3039,6 +3042,7 @@ class EmailMetadataInput(BaseModel):
|
|
3039
3042
|
location: Optional["PointInput"] = None
|
3040
3043
|
subject: Optional[str] = None
|
3041
3044
|
identifier: Optional[str] = None
|
3045
|
+
thread_identifier: Optional[str] = Field(alias="threadIdentifier", default=None)
|
3042
3046
|
sensitivity: Optional[MailSensitivity] = None
|
3043
3047
|
priority: Optional[MailPriority] = None
|
3044
3048
|
importance: Optional[MailImportance] = None
|
graphlit_api/operations.py
CHANGED
@@ -1340,6 +1340,7 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
1340
1340
|
}
|
1341
1341
|
email {
|
1342
1342
|
identifier
|
1343
|
+
threadIdentifier
|
1343
1344
|
subject
|
1344
1345
|
labels
|
1345
1346
|
sensitivity
|
@@ -2120,6 +2121,7 @@ query QueryContents($filter: ContentFilter, $correlationId: String) {
|
|
2120
2121
|
}
|
2121
2122
|
email {
|
2122
2123
|
identifier
|
2124
|
+
threadIdentifier
|
2123
2125
|
subject
|
2124
2126
|
labels
|
2125
2127
|
sensitivity
|
@@ -9009,6 +9011,7 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
|
|
9009
9011
|
name
|
9010
9012
|
}
|
9011
9013
|
}
|
9014
|
+
enableEmailCollections
|
9012
9015
|
}
|
9013
9016
|
indexing {
|
9014
9017
|
jobs {
|
@@ -9247,6 +9250,7 @@ query GetWorkflow($id: ID!, $correlationId: String) {
|
|
9247
9250
|
name
|
9248
9251
|
}
|
9249
9252
|
}
|
9253
|
+
enableEmailCollections
|
9250
9254
|
}
|
9251
9255
|
indexing {
|
9252
9256
|
jobs {
|
@@ -9455,6 +9459,7 @@ query QueryWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
|
9455
9459
|
name
|
9456
9460
|
}
|
9457
9461
|
}
|
9462
|
+
enableEmailCollections
|
9458
9463
|
}
|
9459
9464
|
indexing {
|
9460
9465
|
jobs {
|
@@ -9658,6 +9663,7 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
|
|
9658
9663
|
name
|
9659
9664
|
}
|
9660
9665
|
}
|
9666
|
+
enableEmailCollections
|
9661
9667
|
}
|
9662
9668
|
indexing {
|
9663
9669
|
jobs {
|
@@ -9860,6 +9866,7 @@ mutation UpsertWorkflow($workflow: WorkflowInput!) {
|
|
9860
9866
|
name
|
9861
9867
|
}
|
9862
9868
|
}
|
9869
|
+
enableEmailCollections
|
9863
9870
|
}
|
9864
9871
|
indexing {
|
9865
9872
|
jobs {
|
graphlit_api/query_contents.py
CHANGED
@@ -173,6 +173,7 @@ class QueryContentsContentsResultsDocument(BaseModel):
|
|
173
173
|
|
174
174
|
class QueryContentsContentsResultsEmail(BaseModel):
|
175
175
|
identifier: Optional[str]
|
176
|
+
thread_identifier: Optional[str] = Field(alias="threadIdentifier")
|
176
177
|
subject: Optional[str]
|
177
178
|
labels: Optional[List[Optional[str]]]
|
178
179
|
sensitivity: Optional[MailSensitivity]
|
graphlit_api/query_workflows.py
CHANGED
@@ -65,6 +65,7 @@ class QueryWorkflowsWorkflowsResultsIngestion(BaseModel):
|
|
65
65
|
observations: Optional[
|
66
66
|
List[Optional["QueryWorkflowsWorkflowsResultsIngestionObservations"]]
|
67
67
|
]
|
68
|
+
enable_email_collections: Optional[bool] = Field(alias="enableEmailCollections")
|
68
69
|
|
69
70
|
|
70
71
|
class QueryWorkflowsWorkflowsResultsIngestionIf(BaseModel):
|
graphlit_api/update_workflow.py
CHANGED
@@ -56,6 +56,7 @@ class UpdateWorkflowUpdateWorkflowIngestion(BaseModel):
|
|
56
56
|
observations: Optional[
|
57
57
|
List[Optional["UpdateWorkflowUpdateWorkflowIngestionObservations"]]
|
58
58
|
]
|
59
|
+
enable_email_collections: Optional[bool] = Field(alias="enableEmailCollections")
|
59
60
|
|
60
61
|
|
61
62
|
class UpdateWorkflowUpdateWorkflowIngestionIf(BaseModel):
|
graphlit_api/upsert_workflow.py
CHANGED
@@ -56,6 +56,7 @@ class UpsertWorkflowUpsertWorkflowIngestion(BaseModel):
|
|
56
56
|
observations: Optional[
|
57
57
|
List[Optional["UpsertWorkflowUpsertWorkflowIngestionObservations"]]
|
58
58
|
]
|
59
|
+
enable_email_collections: Optional[bool] = Field(alias="enableEmailCollections")
|
59
60
|
|
60
61
|
|
61
62
|
class UpsertWorkflowUpsertWorkflowIngestionIf(BaseModel):
|
{graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/RECORD
RENAMED
@@ -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=wvqIjbwgVzNGcsTza-B_aFsjesObWCd2UUUbBHxybKA,15692
|
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=a9eeqihumGxKk2O43RmlSAcUaspn6GpVzVLk-kac7D4,26621
|
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
|
@@ -166,7 +166,7 @@ graphlit_api/format_conversation.py,sha256=Bx9bN6zXF8CS7xjUcWz2D4nM6rrS7eKdVn_wH
|
|
166
166
|
graphlit_api/get_alert.py,sha256=5sq4aOgxirBwqYDZaOP2LHZfx6ct7ELOVvYLZ6fyj8s,6570
|
167
167
|
graphlit_api/get_category.py,sha256=r4BhKYOT49VeBrbNkAd8Hs8ndXnvUV0nPr5CurbI_Bk,439
|
168
168
|
graphlit_api/get_collection.py,sha256=de2AaJQRkMEZoRhmYWnXlXlb1c76cF2Z8v6PwaL7wTk,830
|
169
|
-
graphlit_api/get_content.py,sha256=
|
169
|
+
graphlit_api/get_content.py,sha256=nMUyT7FE52rcqZWee4voconMMAp3yHP820eQMwY3zHo,11061
|
170
170
|
graphlit_api/get_conversation.py,sha256=q1CenM3uT_yYPBB5OlDaFCfmziDWXlsFe0Y1ryMl-xA,17057
|
171
171
|
graphlit_api/get_event.py,sha256=saVoCHle91eNLagCX8AZwcSDikEi9OSnImx-lGx3n9A,1523
|
172
172
|
graphlit_api/get_feed.py,sha256=TdEp3G33BKvG_Bu7of3kZCE63ShpNtQwEA3aBmJux7E,11585
|
@@ -192,19 +192,19 @@ graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7va
|
|
192
192
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
193
193
|
graphlit_api/get_specification.py,sha256=jwF4H8QG45b8UI0pX-lEBN2ZAdVl9XrIjwWwAljfP0Y,10017
|
194
194
|
graphlit_api/get_user.py,sha256=pdfR920veI3hTBWqbIp8PP_1LCYi8KWTJ2Has8t8URM,2569
|
195
|
-
graphlit_api/get_workflow.py,sha256=
|
195
|
+
graphlit_api/get_workflow.py,sha256=BWKzz03q51AmFnE0Cvxkm0WqIS2Es42x67r6KZxHuxo,14478
|
196
196
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
197
197
|
graphlit_api/ingest_encoded_file.py,sha256=mKoEc5qziw8i-MDT8CrGCfmaupWnIVQkow7cRW_Y3Fw,2607
|
198
198
|
graphlit_api/ingest_text.py,sha256=D4lpV9LTC_u586_ILVrB2rVpHG0-8HivqeOA1GpQuFs,2286
|
199
199
|
graphlit_api/ingest_text_batch.py,sha256=gSD1bH3mAPwJzy5TeMJ6UguEgI9yrPUXyz1soExSttM,2521
|
200
200
|
graphlit_api/ingest_uri.py,sha256=f71kMRyMoAhef6sJU85ZgGz4aPq_5CDLaDvCeQnLY5A,2248
|
201
|
-
graphlit_api/input_types.py,sha256=
|
201
|
+
graphlit_api/input_types.py,sha256=9Y1rB0hZ_0jBVwHqKOupAZXN12ixhNaY471to6ydOoQ,140469
|
202
202
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
203
203
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
204
204
|
graphlit_api/lookup_credits.py,sha256=xisQ4ExnjwWGbPZVU24bLF7pj4Dwp-d9q5GsHVBMoAM,1395
|
205
205
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
206
206
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
207
|
-
graphlit_api/operations.py,sha256=
|
207
|
+
graphlit_api/operations.py,sha256=A9xYBeQ0L0LeC3tS-qQTm50EoR34cUlU6DMdPt0zOEM,183921
|
208
208
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
209
209
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
210
210
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -214,7 +214,7 @@ graphlit_api/publish_text.py,sha256=DSKPRiEgrqkdJ2E_E9GPeEpnlj60lGconC1TlgCaUCQ,
|
|
214
214
|
graphlit_api/query_alerts.py,sha256=yJf2eWxdqngK1ivmqoGVY7Afpx6HRAJ93ucmXSCZm4U,7575
|
215
215
|
graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
|
216
216
|
graphlit_api/query_collections.py,sha256=lQoUD4-ZiQYWa2ZeyOqVXokEA9IbkqJhrG56O0p8QVU,1075
|
217
|
-
graphlit_api/query_contents.py,sha256=
|
217
|
+
graphlit_api/query_contents.py,sha256=e5vWK6LR5BE_eNx2cmwjtopOWUb1bz_Z3OdxDeONPUA,11697
|
218
218
|
graphlit_api/query_contents_facets.py,sha256=xKbOkq-F9-AYUulUQNPrR9PnQyq7M2j_u7fpQ8HYk4c,1368
|
219
219
|
graphlit_api/query_contents_graph.py,sha256=RzQHZEQOOzB0yLTvU6rBJu_Str3Gc9m8BG8fY8xVrYY,975
|
220
220
|
graphlit_api/query_conversations.py,sha256=rnCDtowAR0SSNCzqFTSQAcsfFshQyPI6F2cqRNaWA2o,19141
|
@@ -252,7 +252,7 @@ graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganB
|
|
252
252
|
graphlit_api/query_specifications.py,sha256=PBEJMLJnLU4vC3-gxydtR__56rJhoTl0cFxbSDIelvA,10706
|
253
253
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
254
254
|
graphlit_api/query_users.py,sha256=b50tNVR79XOcVqAGjxcjEsHe0Ka9rhXJzJHrEfaCP7Y,2965
|
255
|
-
graphlit_api/query_workflows.py,sha256=
|
255
|
+
graphlit_api/query_workflows.py,sha256=AqkmFsfGCrXqN4jAHBqLkwupqRyOSqLIlf2QBB6Qfx0,16250
|
256
256
|
graphlit_api/remove_contents_from_collection.py,sha256=LnUL43UNNIPY-DBn-vg0Jx89tfuEBpctGgdQ5U75UlU,950
|
257
257
|
graphlit_api/retrieve_sources.py,sha256=MLtgZ7_jKNGjf5LKFqJy-KyQESo_KvNeV_gjsfyV2XQ,1134
|
258
258
|
graphlit_api/revise_content.py,sha256=s13fRFmFV-OV-YbE-tvLe5J3CbT8OM98hDGTLVHiKS4,6417
|
@@ -295,14 +295,14 @@ graphlit_api/update_repo.py,sha256=9BEt_65v0omSEwDmuspasvp45pCUHfmgq6u2OdLEycw,3
|
|
295
295
|
graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePymCY,396
|
296
296
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
297
297
|
graphlit_api/update_user.py,sha256=d8NCeCa3XqMXAlL-9sbfa4qpgiIDoXDif3KsV33Sz-w,465
|
298
|
-
graphlit_api/update_workflow.py,sha256=
|
298
|
+
graphlit_api/update_workflow.py,sha256=SSgs9HTWK44b7HeWKqING5I-HGwCGXbzq_J0bipxxPc,15692
|
299
299
|
graphlit_api/upsert_category.py,sha256=Q60eV1hfyx9xV6fWNW9bhadTqWFfY4-u8V-vGMUO7Vs,396
|
300
300
|
graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,358
|
301
301
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
302
|
-
graphlit_api/upsert_workflow.py,sha256=
|
302
|
+
graphlit_api/upsert_workflow.py,sha256=QL5Gi8jqF4wG9_qReoW8E5X7VsSIsLzgxIY1aAK0ebo,15692
|
303
303
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
304
|
-
graphlit_client-1.0.
|
305
|
-
graphlit_client-1.0.
|
306
|
-
graphlit_client-1.0.
|
307
|
-
graphlit_client-1.0.
|
308
|
-
graphlit_client-1.0.
|
304
|
+
graphlit_client-1.0.20250407001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
305
|
+
graphlit_client-1.0.20250407001.dist-info/METADATA,sha256=apoc5PzPqdM-mW8nou79tnpXV872U2D8yiwWXCAD8Ww,3408
|
306
|
+
graphlit_client-1.0.20250407001.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
307
|
+
graphlit_client-1.0.20250407001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
308
|
+
graphlit_client-1.0.20250407001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250402001.dist-info → graphlit_client-1.0.20250407001.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|