graphlit-client 1.0.20250224002__py3-none-any.whl → 1.0.20250301001__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 +5 -0
- graphlit_api/client.py +16 -0
- graphlit_api/get_specification.py +2 -0
- graphlit_api/operations.py +13 -0
- graphlit_api/query_slack_channels.py +21 -0
- graphlit_api/query_specifications.py +2 -0
- {graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/RECORD +11 -10
- {graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/WHEEL +1 -1
- {graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/LICENSE +0 -0
- {graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
@@ -1572,6 +1572,7 @@ from .operations import (
|
|
1572
1572
|
QUERY_REPOS_GQL,
|
1573
1573
|
QUERY_SHARE_POINT_FOLDERS_GQL,
|
1574
1574
|
QUERY_SHARE_POINT_LIBRARIES_GQL,
|
1575
|
+
QUERY_SLACK_CHANNELS_GQL,
|
1575
1576
|
QUERY_SOFTWARES_GQL,
|
1576
1577
|
QUERY_SPECIFICATIONS_GQL,
|
1577
1578
|
QUERY_USAGE_GQL,
|
@@ -2055,6 +2056,7 @@ from .query_share_point_libraries import (
|
|
2055
2056
|
QuerySharePointLibrariesSharePointLibraries,
|
2056
2057
|
QuerySharePointLibrariesSharePointLibrariesResults,
|
2057
2058
|
)
|
2059
|
+
from .query_slack_channels import QuerySlackChannels, QuerySlackChannelsSlackChannels
|
2058
2060
|
from .query_softwares import (
|
2059
2061
|
QuerySoftwares,
|
2060
2062
|
QuerySoftwaresSoftwares,
|
@@ -3801,6 +3803,7 @@ __all__ = [
|
|
3801
3803
|
"QUERY_REPOS_GQL",
|
3802
3804
|
"QUERY_SHARE_POINT_FOLDERS_GQL",
|
3803
3805
|
"QUERY_SHARE_POINT_LIBRARIES_GQL",
|
3806
|
+
"QUERY_SLACK_CHANNELS_GQL",
|
3804
3807
|
"QUERY_SOFTWARES_GQL",
|
3805
3808
|
"QUERY_SPECIFICATIONS_GQL",
|
3806
3809
|
"QUERY_USAGE_GQL",
|
@@ -4105,6 +4108,8 @@ __all__ = [
|
|
4105
4108
|
"QuerySharePointLibraries",
|
4106
4109
|
"QuerySharePointLibrariesSharePointLibraries",
|
4107
4110
|
"QuerySharePointLibrariesSharePointLibrariesResults",
|
4111
|
+
"QuerySlackChannels",
|
4112
|
+
"QuerySlackChannelsSlackChannels",
|
4108
4113
|
"QuerySoftwares",
|
4109
4114
|
"QuerySoftwaresSoftwares",
|
4110
4115
|
"QuerySoftwaresSoftwaresResults",
|
graphlit_api/client.py
CHANGED
@@ -287,6 +287,7 @@ from .input_types import (
|
|
287
287
|
RetrievalStrategyInput,
|
288
288
|
SharePointFoldersInput,
|
289
289
|
SharePointLibrariesInput,
|
290
|
+
SlackChannelsInput,
|
290
291
|
SoftwareFilter,
|
291
292
|
SoftwareInput,
|
292
293
|
SoftwareUpdateInput,
|
@@ -544,6 +545,7 @@ from .operations import (
|
|
544
545
|
QUERY_REPOS_GQL,
|
545
546
|
QUERY_SHARE_POINT_FOLDERS_GQL,
|
546
547
|
QUERY_SHARE_POINT_LIBRARIES_GQL,
|
548
|
+
QUERY_SLACK_CHANNELS_GQL,
|
547
549
|
QUERY_SOFTWARES_GQL,
|
548
550
|
QUERY_SPECIFICATIONS_GQL,
|
549
551
|
QUERY_USAGE_GQL,
|
@@ -630,6 +632,7 @@ from .query_products import QueryProducts
|
|
630
632
|
from .query_repos import QueryRepos
|
631
633
|
from .query_share_point_folders import QuerySharePointFolders
|
632
634
|
from .query_share_point_libraries import QuerySharePointLibraries
|
635
|
+
from .query_slack_channels import QuerySlackChannels
|
633
636
|
from .query_softwares import QuerySoftwares
|
634
637
|
from .query_specifications import QuerySpecifications
|
635
638
|
from .query_usage import QueryUsage
|
@@ -2532,6 +2535,19 @@ class Client(AsyncBaseClient):
|
|
2532
2535
|
data = self.get_data(response)
|
2533
2536
|
return QuerySharePointLibraries.model_validate(data)
|
2534
2537
|
|
2538
|
+
async def query_slack_channels(
|
2539
|
+
self, properties: SlackChannelsInput, **kwargs: Any
|
2540
|
+
) -> QuerySlackChannels:
|
2541
|
+
variables: Dict[str, object] = {"properties": properties}
|
2542
|
+
response = await self.execute(
|
2543
|
+
query=QUERY_SLACK_CHANNELS_GQL,
|
2544
|
+
operation_name="QuerySlackChannels",
|
2545
|
+
variables=variables,
|
2546
|
+
**kwargs
|
2547
|
+
)
|
2548
|
+
data = self.get_data(response)
|
2549
|
+
return QuerySlackChannels.model_validate(data)
|
2550
|
+
|
2535
2551
|
async def update_feed(self, feed: FeedUpdateInput, **kwargs: Any) -> UpdateFeed:
|
2536
2552
|
variables: Dict[str, object] = {"feed": feed}
|
2537
2553
|
response = await self.execute(
|
@@ -183,6 +183,8 @@ class GetSpecificationSpecificationAnthropic(BaseModel):
|
|
183
183
|
model_name: Optional[str] = Field(alias="modelName")
|
184
184
|
temperature: Optional[float]
|
185
185
|
probability: Optional[float]
|
186
|
+
enable_thinking: Optional[bool] = Field(alias="enableThinking")
|
187
|
+
thinking_token_limit: Optional[int] = Field(alias="thinkingTokenLimit")
|
186
188
|
|
187
189
|
|
188
190
|
class GetSpecificationSpecificationGoogle(BaseModel):
|
graphlit_api/operations.py
CHANGED
@@ -237,6 +237,7 @@ __all__ = [
|
|
237
237
|
"QUERY_REPOS_GQL",
|
238
238
|
"QUERY_SHARE_POINT_FOLDERS_GQL",
|
239
239
|
"QUERY_SHARE_POINT_LIBRARIES_GQL",
|
240
|
+
"QUERY_SLACK_CHANNELS_GQL",
|
240
241
|
"QUERY_SOFTWARES_GQL",
|
241
242
|
"QUERY_SPECIFICATIONS_GQL",
|
242
243
|
"QUERY_USAGE_GQL",
|
@@ -6316,6 +6317,14 @@ query QuerySharePointLibraries($properties: SharePointLibrariesInput!) {
|
|
6316
6317
|
}
|
6317
6318
|
"""
|
6318
6319
|
|
6320
|
+
QUERY_SLACK_CHANNELS_GQL = """
|
6321
|
+
query QuerySlackChannels($properties: SlackChannelsInput!) {
|
6322
|
+
slackChannels(properties: $properties) {
|
6323
|
+
results
|
6324
|
+
}
|
6325
|
+
}
|
6326
|
+
"""
|
6327
|
+
|
6319
6328
|
UPDATE_FEED_GQL = """
|
6320
6329
|
mutation UpdateFeed($feed: FeedUpdateInput!) {
|
6321
6330
|
updateFeed(feed: $feed) {
|
@@ -8457,6 +8466,8 @@ query GetSpecification($id: ID!, $correlationId: String) {
|
|
8457
8466
|
modelName
|
8458
8467
|
temperature
|
8459
8468
|
probability
|
8469
|
+
enableThinking
|
8470
|
+
thinkingTokenLimit
|
8460
8471
|
}
|
8461
8472
|
google {
|
8462
8473
|
tokenLimit
|
@@ -8801,6 +8812,8 @@ query QuerySpecifications($filter: SpecificationFilter, $correlationId: String)
|
|
8801
8812
|
modelName
|
8802
8813
|
temperature
|
8803
8814
|
probability
|
8815
|
+
enableThinking
|
8816
|
+
thinkingTokenLimit
|
8804
8817
|
}
|
8805
8818
|
google {
|
8806
8819
|
tokenLimit
|
@@ -0,0 +1,21 @@
|
|
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
|
+
|
10
|
+
|
11
|
+
class QuerySlackChannels(BaseModel):
|
12
|
+
slack_channels: Optional["QuerySlackChannelsSlackChannels"] = Field(
|
13
|
+
alias="slackChannels"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class QuerySlackChannelsSlackChannels(BaseModel):
|
18
|
+
results: Optional[List[str]]
|
19
|
+
|
20
|
+
|
21
|
+
QuerySlackChannels.model_rebuild()
|
@@ -191,6 +191,8 @@ class QuerySpecificationsSpecificationsResultsAnthropic(BaseModel):
|
|
191
191
|
model_name: Optional[str] = Field(alias="modelName")
|
192
192
|
temperature: Optional[float]
|
193
193
|
probability: Optional[float]
|
194
|
+
enable_thinking: Optional[bool] = Field(alias="enableThinking")
|
195
|
+
thinking_token_limit: Optional[int] = Field(alias="thinkingTokenLimit")
|
194
196
|
|
195
197
|
|
196
198
|
class QuerySpecificationsSpecificationsResultsGoogle(BaseModel):
|
{graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/RECORD
RENAMED
@@ -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=
|
3
|
+
graphlit_api/__init__.py,sha256=row0VIYGATzBizOzYZ6R964rc0hgVRJFNDgU7tI5juw,174238
|
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=
|
9
|
+
graphlit_api/client.py,sha256=FiHUBI0aGFpHR8d_Fouu4hiek95KWfbTVbbKzx1I198,193044
|
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
|
@@ -189,7 +189,7 @@ graphlit_api/get_project.py,sha256=KDuQprWSINZrzhb_K1bnUY9MEdqhXl51x7uwclPCcJA,1
|
|
189
189
|
graphlit_api/get_repo.py,sha256=4ngiYmVFEeKe7zK0daSppsbvRwXlwYpbB4HMU2xsl78,578
|
190
190
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
191
191
|
graphlit_api/get_software.py,sha256=oFpWsAFCQfclVj7kdIzBxaIuKXavff4IP4jqVMDOzDI,696
|
192
|
-
graphlit_api/get_specification.py,sha256=
|
192
|
+
graphlit_api/get_specification.py,sha256=jwF4H8QG45b8UI0pX-lEBN2ZAdVl9XrIjwWwAljfP0Y,10017
|
193
193
|
graphlit_api/get_user.py,sha256=AkJrtoLsSIWtgYGXWZ5RErguTBml1AbDCQMLkzB4h24,2023
|
194
194
|
graphlit_api/get_workflow.py,sha256=kkCFdGDOBizKNeJozjaRIcocdFtfB9I0UnBVFYl59QQ,11561
|
195
195
|
graphlit_api/ingest_batch.py,sha256=pmO_rAZdG8dPid40h8lnTfKSa5r0EAOmFF7PIg3a_r4,2366
|
@@ -203,7 +203,7 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
|
|
203
203
|
graphlit_api/lookup_credits.py,sha256=hzeXG3KMwmseR3hXLWalKX0DefbFgYELZUzP70TcaYA,1318
|
204
204
|
graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
|
205
205
|
graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
|
206
|
-
graphlit_api/operations.py,sha256=
|
206
|
+
graphlit_api/operations.py,sha256=6ph2ZeIlJzChOOFwowaZzXsW7L32vQVj45c63pKAXvk,177508
|
207
207
|
graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
|
208
208
|
graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
|
209
209
|
graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
|
@@ -243,8 +243,9 @@ graphlit_api/query_products.py,sha256=8sK5tHtLfgtZXOPcNZa7Q0ye9CO5j2FyXsGImFLZer
|
|
243
243
|
graphlit_api/query_repos.py,sha256=cuPWGiDFCYPLfykvQLfy1qZU29Lver8TWxPcI3MiwGI,732
|
244
244
|
graphlit_api/query_share_point_folders.py,sha256=vu7XjVlAcZhIok3wvIvkzqbdxpcsbWBx5E93pzy8zSk,807
|
245
245
|
graphlit_api/query_share_point_libraries.py,sha256=u7EGJ91YnZ_MMIixtqJKu-2YhLl6ZyQtkeRLfac3XhI,961
|
246
|
+
graphlit_api/query_slack_channels.py,sha256=QnG46uW5OIjh1S0nsXggNVKMAd2DqHc5JNXF9B5fd_8,421
|
246
247
|
graphlit_api/query_softwares.py,sha256=WSPS-Q2Ol7bCqgqc5Q066wwa_afZEQESuLV1aganBkc,874
|
247
|
-
graphlit_api/query_specifications.py,sha256=
|
248
|
+
graphlit_api/query_specifications.py,sha256=PBEJMLJnLU4vC3-gxydtR__56rJhoTl0cFxbSDIelvA,10706
|
248
249
|
graphlit_api/query_usage.py,sha256=VUKzjpaZjkcQFXJlEKIQT9I87HTgcYzX1CeimAzqeIM,1645
|
249
250
|
graphlit_api/query_users.py,sha256=1zVM7hFRUMietRet97_AqTPnYTRvGLL1rCXNk3PGZM0,2375
|
250
251
|
graphlit_api/query_workflows.py,sha256=23yiq0v0WDOqjRAcySQgYbQO_oZ1egIPaDNqXCyT5zU,12926
|
@@ -289,8 +290,8 @@ graphlit_api/update_software.py,sha256=J78h3r976bLWuiS9q7EixqWLu-G7U0IiQ2SyAePym
|
|
289
290
|
graphlit_api/update_specification.py,sha256=P-VoQ6uqRxIV68XDVyibXFuQ3SE973FCmaCgrnA3A84,643
|
290
291
|
graphlit_api/update_user.py,sha256=d8NCeCa3XqMXAlL-9sbfa4qpgiIDoXDif3KsV33Sz-w,465
|
291
292
|
graphlit_api/update_workflow.py,sha256=JNA2XIJskPJypY1IwLtTNijWfiT7Q2VI0yCO7CeIB3E,12422
|
292
|
-
graphlit_client-1.0.
|
293
|
-
graphlit_client-1.0.
|
294
|
-
graphlit_client-1.0.
|
295
|
-
graphlit_client-1.0.
|
296
|
-
graphlit_client-1.0.
|
293
|
+
graphlit_client-1.0.20250301001.dist-info/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
|
294
|
+
graphlit_client-1.0.20250301001.dist-info/METADATA,sha256=OQW84y1Q8WtIO5eucYxhEV9hcSUJR1aaUC6qz4iVVhQ,3386
|
295
|
+
graphlit_client-1.0.20250301001.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
296
|
+
graphlit_client-1.0.20250301001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
297
|
+
graphlit_client-1.0.20250301001.dist-info/RECORD,,
|
{graphlit_client-1.0.20250224002.dist-info → graphlit_client-1.0.20250301001.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|