graphlit-client 1.0.20250428001__py3-none-any.whl → 1.0.20250428002__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 +2 -0
- graphlit_api/operations.py +2 -1
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/RECORD +7 -7
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/top_level.txt +0 -0
graphlit_api/client.py
CHANGED
@@ -4877,6 +4877,7 @@ class Client(AsyncBaseClient):
|
|
4877
4877
|
start_date: Any,
|
4878
4878
|
duration: Any,
|
4879
4879
|
names: Union[Optional[List[str]], UnsetType] = UNSET,
|
4880
|
+
excluded_names: Union[Optional[List[str]], UnsetType] = UNSET,
|
4880
4881
|
offset: Union[Optional[int], UnsetType] = UNSET,
|
4881
4882
|
limit: Union[Optional[int], UnsetType] = UNSET,
|
4882
4883
|
**kwargs: Any
|
@@ -4885,6 +4886,7 @@ class Client(AsyncBaseClient):
|
|
4885
4886
|
"startDate": start_date,
|
4886
4887
|
"duration": duration,
|
4887
4888
|
"names": names,
|
4889
|
+
"excludedNames": excluded_names,
|
4888
4890
|
"offset": offset,
|
4889
4891
|
"limit": limit,
|
4890
4892
|
}
|
graphlit_api/operations.py
CHANGED
@@ -8040,11 +8040,12 @@ query QueryTokens($startDate: DateTime!, $duration: TimeSpan!) {
|
|
8040
8040
|
"""
|
8041
8041
|
|
8042
8042
|
QUERY_USAGE_GQL = """
|
8043
|
-
query QueryUsage($startDate: DateTime!, $duration: TimeSpan!, $names: [String!], $offset: Int, $limit: Int) {
|
8043
|
+
query QueryUsage($startDate: DateTime!, $duration: TimeSpan!, $names: [String!], $excludedNames: [String!], $offset: Int, $limit: Int) {
|
8044
8044
|
usage(
|
8045
8045
|
startDate: $startDate
|
8046
8046
|
duration: $duration
|
8047
8047
|
names: $names
|
8048
|
+
excludedNames: $excludedNames
|
8048
8049
|
offset: $offset
|
8049
8050
|
limit: $limit
|
8050
8051
|
) {
|
{graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.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=eM9cChsYgWxaXnQsi1lrZFF6pbRLH6rhUbASMCSaPbk,201463
|
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=-r0p1PcR1WoQBoHc4wOe25v89ppT10ZuQkajMa7D3uE,186384
|
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.20250428002.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
307
|
+
graphlit_client-1.0.20250428002.dist-info/METADATA,sha256=2tQh0YkmrNBwGQvvG8BEahihX_UtVeN05y5ZQtmwhS8,3408
|
308
|
+
graphlit_client-1.0.20250428002.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
|
309
|
+
graphlit_client-1.0.20250428002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
310
|
+
graphlit_client-1.0.20250428002.dist-info/RECORD,,
|
{graphlit_client-1.0.20250428001.dist-info → graphlit_client-1.0.20250428002.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|