graphlit-client 1.0.20250428001__py3-none-any.whl → 1.0.20250428003__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/client.py +4 -0
- graphlit_api/operations.py +4 -2
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/RECORD +7 -7
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/top_level.txt +0 -0
graphlit_api/client.py
CHANGED
@@ -1512,6 +1512,7 @@ class Client(AsyncBaseClient):
|
|
1512
1512
|
uri: Any,
|
1513
1513
|
name: Union[Optional[str], UnsetType] = UNSET,
|
1514
1514
|
id: Union[Optional[str], UnsetType] = UNSET,
|
1515
|
+
mime_type: Union[Optional[str], UnsetType] = UNSET,
|
1515
1516
|
is_synchronous: Union[Optional[bool], UnsetType] = UNSET,
|
1516
1517
|
workflow: Union[Optional[EntityReferenceInput], UnsetType] = UNSET,
|
1517
1518
|
collections: Union[Optional[List[EntityReferenceInput]], UnsetType] = UNSET,
|
@@ -1525,6 +1526,7 @@ class Client(AsyncBaseClient):
|
|
1525
1526
|
"name": name,
|
1526
1527
|
"uri": uri,
|
1527
1528
|
"id": id,
|
1529
|
+
"mimeType": mime_type,
|
1528
1530
|
"isSynchronous": is_synchronous,
|
1529
1531
|
"workflow": workflow,
|
1530
1532
|
"collections": collections,
|
@@ -4877,6 +4879,7 @@ class Client(AsyncBaseClient):
|
|
4877
4879
|
start_date: Any,
|
4878
4880
|
duration: Any,
|
4879
4881
|
names: Union[Optional[List[str]], UnsetType] = UNSET,
|
4882
|
+
excluded_names: Union[Optional[List[str]], UnsetType] = UNSET,
|
4880
4883
|
offset: Union[Optional[int], UnsetType] = UNSET,
|
4881
4884
|
limit: Union[Optional[int], UnsetType] = UNSET,
|
4882
4885
|
**kwargs: Any
|
@@ -4885,6 +4888,7 @@ class Client(AsyncBaseClient):
|
|
4885
4888
|
"startDate": start_date,
|
4886
4889
|
"duration": duration,
|
4887
4890
|
"names": names,
|
4891
|
+
"excludedNames": excluded_names,
|
4888
4892
|
"offset": offset,
|
4889
4893
|
"limit": limit,
|
4890
4894
|
}
|
graphlit_api/operations.py
CHANGED
@@ -1768,11 +1768,12 @@ mutation IngestTextBatch($batch: [TextContentInput!]!, $textType: TextTypes, $wo
|
|
1768
1768
|
"""
|
1769
1769
|
|
1770
1770
|
INGEST_URI_GQL = """
|
1771
|
-
mutation IngestUri($name: String, $uri: URL!, $id: ID, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
|
1771
|
+
mutation IngestUri($name: String, $uri: URL!, $id: ID, $mimeType: String, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
|
1772
1772
|
ingestUri(
|
1773
1773
|
name: $name
|
1774
1774
|
uri: $uri
|
1775
1775
|
id: $id
|
1776
|
+
mimeType: $mimeType
|
1776
1777
|
workflow: $workflow
|
1777
1778
|
collections: $collections
|
1778
1779
|
observations: $observations
|
@@ -8040,11 +8041,12 @@ query QueryTokens($startDate: DateTime!, $duration: TimeSpan!) {
|
|
8040
8041
|
"""
|
8041
8042
|
|
8042
8043
|
QUERY_USAGE_GQL = """
|
8043
|
-
query QueryUsage($startDate: DateTime!, $duration: TimeSpan!, $names: [String!], $offset: Int, $limit: Int) {
|
8044
|
+
query QueryUsage($startDate: DateTime!, $duration: TimeSpan!, $names: [String!], $excludedNames: [String!], $offset: Int, $limit: Int) {
|
8044
8045
|
usage(
|
8045
8046
|
startDate: $startDate
|
8046
8047
|
duration: $duration
|
8047
8048
|
names: $names
|
8049
|
+
excludedNames: $excludedNames
|
8048
8050
|
offset: $offset
|
8049
8051
|
limit: $limit
|
8050
8052
|
) {
|
{graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/RECORD
RENAMED
@@ -6,7 +6,7 @@ graphlit_api/ask_graphlit.py,sha256=F-mgXMfUqGYCOP4WFQXmZDp5RgK7Cej-nA1RkmRvp7o,
|
|
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=zqdWEg0yd0NuzfX9vJXF-H5EXs2m5vzva9Br-YDY4Rs,201558
|
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
|
@@ -205,7 +205,7 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
|
|
205
205
|
graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
|
206
206
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
207
207
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
208
|
-
graphlit_api/operations.py,sha256=
|
208
|
+
graphlit_api/operations.py,sha256=70LFEeXHJpmNMkAUOgrpE3IT_3L6l-ecoWodyommuO0,186427
|
209
209
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
210
210
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
211
211
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -303,8 +303,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
|
|
303
303
|
graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
|
304
304
|
graphlit_api/upsert_workflow.py,sha256=QL5Gi8jqF4wG9_qReoW8E5X7VsSIsLzgxIY1aAK0ebo,15692
|
305
305
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
306
|
-
graphlit_client-1.0.
|
307
|
-
graphlit_client-1.0.
|
308
|
-
graphlit_client-1.0.
|
309
|
-
graphlit_client-1.0.
|
310
|
-
graphlit_client-1.0.
|
306
|
+
graphlit_client-1.0.20250428003.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
307
|
+
graphlit_client-1.0.20250428003.dist-info/METADATA,sha256=sPunxq06h-6SveMmIe8p7wxpjUQmqAFtNQVNPWolDtE,3408
|
308
|
+
graphlit_client-1.0.20250428003.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
309
|
+
graphlit_client-1.0.20250428003.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
310
|
+
graphlit_client-1.0.20250428003.dist-info/RECORD,,
|
{graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428003.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|