graphlit-client 1.0.20260203001__py3-none-any.whl → 1.0.20260205002__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 +2 -0
- graphlit_api/enums.py +13 -0
- graphlit_api/get_specification.py +2 -0
- graphlit_api/input_types.py +3 -0
- graphlit_api/operations.py +2 -0
- graphlit_api/query_specifications.py +2 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/RECORD +11 -11
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/top_level.txt +0 -0
graphlit_api/__init__.py
CHANGED
|
@@ -632,6 +632,7 @@ from .enrich_places import EnrichPlaces, EnrichPlacesEnrichPlaces
|
|
|
632
632
|
from .enrich_products import EnrichProducts, EnrichProductsEnrichProducts
|
|
633
633
|
from .enums import (
|
|
634
634
|
AlertTypes,
|
|
635
|
+
AnthropicEffortLevels,
|
|
635
636
|
AnthropicModels,
|
|
636
637
|
ApplyPolicy,
|
|
637
638
|
ArcadeProviders,
|
|
@@ -4663,6 +4664,7 @@ __all__ = [
|
|
|
4663
4664
|
"AlertUpdateInput",
|
|
4664
4665
|
"AmazonFeedPropertiesInput",
|
|
4665
4666
|
"AmazonFeedPropertiesUpdateInput",
|
|
4667
|
+
"AnthropicEffortLevels",
|
|
4666
4668
|
"AnthropicModelPropertiesInput",
|
|
4667
4669
|
"AnthropicModelPropertiesUpdateInput",
|
|
4668
4670
|
"AnthropicModels",
|
graphlit_api/enums.py
CHANGED
|
@@ -734,6 +734,10 @@ class AnthropicModels(str, Enum):
|
|
|
734
734
|
CLAUDE_4_5_SONNET_20250929 = "CLAUDE_4_5_SONNET_20250929"
|
|
735
735
|
CLAUDE_4_5_OPUS = "CLAUDE_4_5_OPUS"
|
|
736
736
|
CLAUDE_4_5_OPUS_20251101 = "CLAUDE_4_5_OPUS_20251101"
|
|
737
|
+
CLAUDE_4_6_OPUS = "CLAUDE_4_6_OPUS"
|
|
738
|
+
CLAUDE_4_6_OPUS_20260205 = "CLAUDE_4_6_OPUS_20260205"
|
|
739
|
+
CLAUDE_4_6_OPUS_1_M = "CLAUDE_4_6_OPUS_1_M"
|
|
740
|
+
CLAUDE_4_6_OPUS_1_M_20260205 = "CLAUDE_4_6_OPUS_1_M_20260205"
|
|
737
741
|
CLAUDE_4_OPUS = "CLAUDE_4_OPUS"
|
|
738
742
|
CLAUDE_4_OPUS_20250514 = "CLAUDE_4_OPUS_20250514"
|
|
739
743
|
CLAUDE_4_1_OPUS = "CLAUDE_4_1_OPUS"
|
|
@@ -928,6 +932,13 @@ class EntityResolutionStrategyTypes(str, Enum):
|
|
|
928
932
|
AUTOMATIC = "AUTOMATIC"
|
|
929
933
|
|
|
930
934
|
|
|
935
|
+
class AnthropicEffortLevels(str, Enum):
|
|
936
|
+
LOW = "LOW"
|
|
937
|
+
MEDIUM = "MEDIUM"
|
|
938
|
+
HIGH = "HIGH"
|
|
939
|
+
MAX = "MAX"
|
|
940
|
+
|
|
941
|
+
|
|
931
942
|
class StoragePolicyTypes(str, Enum):
|
|
932
943
|
ARCHIVE = "ARCHIVE"
|
|
933
944
|
MINIMIZE = "MINIMIZE"
|
|
@@ -962,6 +973,7 @@ class GoogleModels(str, Enum):
|
|
|
962
973
|
GEMINI_1_5_FLASH_002 = "GEMINI_1_5_FLASH_002"
|
|
963
974
|
GEMINI_1_5_PRO_002 = "GEMINI_1_5_PRO_002"
|
|
964
975
|
EMBEDDING_004 = "EMBEDDING_004"
|
|
976
|
+
GEMINI_EMBEDDING_001 = "GEMINI_EMBEDDING_001"
|
|
965
977
|
CUSTOM = "CUSTOM"
|
|
966
978
|
|
|
967
979
|
|
|
@@ -1600,6 +1612,7 @@ class AsanaAuthenticationTypes(str, Enum):
|
|
|
1600
1612
|
|
|
1601
1613
|
|
|
1602
1614
|
class OpenAIReasoningEffortLevels(str, Enum):
|
|
1615
|
+
MINIMAL = "MINIMAL"
|
|
1603
1616
|
LOW = "LOW"
|
|
1604
1617
|
MEDIUM = "MEDIUM"
|
|
1605
1618
|
HIGH = "HIGH"
|
|
@@ -7,6 +7,7 @@ from pydantic import Field
|
|
|
7
7
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
9
|
from .enums import (
|
|
10
|
+
AnthropicEffortLevels,
|
|
10
11
|
AnthropicModels,
|
|
11
12
|
AzureOpenAIModels,
|
|
12
13
|
BedrockModels,
|
|
@@ -202,6 +203,7 @@ class GetSpecificationSpecificationAnthropic(BaseModel):
|
|
|
202
203
|
probability: Optional[float]
|
|
203
204
|
enable_thinking: Optional[bool] = Field(alias="enableThinking")
|
|
204
205
|
thinking_token_limit: Optional[int] = Field(alias="thinkingTokenLimit")
|
|
206
|
+
effort: Optional[AnthropicEffortLevels]
|
|
205
207
|
|
|
206
208
|
|
|
207
209
|
class GetSpecificationSpecificationGoogle(BaseModel):
|
graphlit_api/input_types.py
CHANGED
|
@@ -8,6 +8,7 @@ from pydantic import Field
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
9
|
from .enums import (
|
|
10
10
|
AlertTypes,
|
|
11
|
+
AnthropicEffortLevels,
|
|
11
12
|
AnthropicModels,
|
|
12
13
|
ArcadeProviders,
|
|
13
14
|
AsanaAuthenticationTypes,
|
|
@@ -3614,6 +3615,7 @@ class AnthropicModelPropertiesInput(BaseModel):
|
|
|
3614
3615
|
thinking_token_limit: Optional[int] = Field(
|
|
3615
3616
|
alias="thinkingTokenLimit", default=None
|
|
3616
3617
|
)
|
|
3618
|
+
effort: Optional[AnthropicEffortLevels] = None
|
|
3617
3619
|
|
|
3618
3620
|
|
|
3619
3621
|
class ProjectQuotaInput(BaseModel):
|
|
@@ -4051,6 +4053,7 @@ class AnthropicModelPropertiesUpdateInput(BaseModel):
|
|
|
4051
4053
|
thinking_token_limit: Optional[int] = Field(
|
|
4052
4054
|
alias="thinkingTokenLimit", default=None
|
|
4053
4055
|
)
|
|
4056
|
+
effort: Optional[AnthropicEffortLevels] = None
|
|
4054
4057
|
|
|
4055
4058
|
|
|
4056
4059
|
class GoogleModelPropertiesUpdateInput(BaseModel):
|
graphlit_api/operations.py
CHANGED
|
@@ -16463,6 +16463,7 @@ query GetSpecification($id: ID!, $correlationId: String) {
|
|
|
16463
16463
|
probability
|
|
16464
16464
|
enableThinking
|
|
16465
16465
|
thinkingTokenLimit
|
|
16466
|
+
effort
|
|
16466
16467
|
}
|
|
16467
16468
|
google {
|
|
16468
16469
|
tokenLimit
|
|
@@ -16853,6 +16854,7 @@ query QuerySpecifications($filter: SpecificationFilter, $correlationId: String)
|
|
|
16853
16854
|
probability
|
|
16854
16855
|
enableThinking
|
|
16855
16856
|
thinkingTokenLimit
|
|
16857
|
+
effort
|
|
16856
16858
|
}
|
|
16857
16859
|
google {
|
|
16858
16860
|
tokenLimit
|
|
@@ -7,6 +7,7 @@ from pydantic import Field
|
|
|
7
7
|
|
|
8
8
|
from .base_model import BaseModel
|
|
9
9
|
from .enums import (
|
|
10
|
+
AnthropicEffortLevels,
|
|
10
11
|
AnthropicModels,
|
|
11
12
|
AzureOpenAIModels,
|
|
12
13
|
BedrockModels,
|
|
@@ -211,6 +212,7 @@ class QuerySpecificationsSpecificationsResultsAnthropic(BaseModel):
|
|
|
211
212
|
probability: Optional[float]
|
|
212
213
|
enable_thinking: Optional[bool] = Field(alias="enableThinking")
|
|
213
214
|
thinking_token_limit: Optional[int] = Field(alias="thinkingTokenLimit")
|
|
215
|
+
effort: Optional[AnthropicEffortLevels]
|
|
214
216
|
|
|
215
217
|
|
|
216
218
|
class QuerySpecificationsSpecificationsResultsGoogle(BaseModel):
|
{graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
graphlit/__init__.py,sha256=D3Qg8szqjSHDVcAY3uwwuok9umiUOUB7Xg6ZovHJHbA,31
|
|
2
2
|
graphlit/graphlit.py,sha256=qsvNZMS4A0tcpujZI3XNHuTrNO1sDg94irIRQ4GL-pw,2337
|
|
3
|
-
graphlit_api/__init__.py,sha256=
|
|
3
|
+
graphlit_api/__init__.py,sha256=FKXpBFmOy49B-pPk5_TNWoxuEow0C3fhZP8sLaHVYIE,370946
|
|
4
4
|
graphlit_api/add_contents_to_collections.py,sha256=1tiojA1TZvfua02MrBCvCa7p1qnqk_VtQn4JvrTY9sw,882
|
|
5
5
|
graphlit_api/approve_content.py,sha256=YDpE6Q0KaWutphAwo7oSSfjEWbUDrc0sCVDjYfkY0WQ,436
|
|
6
6
|
graphlit_api/ask_graphlit.py,sha256=d0k-Htsn5fx0Vm60iqj08n0EesoSTlXJZ5JofZpKgDA,6818
|
|
@@ -191,7 +191,7 @@ graphlit_api/enrich_organizations.py,sha256=HOakGRxUdeXJRtCOPSoyjCtLGirPHzZGVDP0
|
|
|
191
191
|
graphlit_api/enrich_persons.py,sha256=5b_THYNJuRK81IXSD-xtkdsVhVj0IuhFV9TLkj7WP74,404
|
|
192
192
|
graphlit_api/enrich_places.py,sha256=uy9LvHdKWnhoNeb96-lDcEyre0PTJhLqJ7lF5xjQdl8,396
|
|
193
193
|
graphlit_api/enrich_products.py,sha256=rnXiQ-hr22aTSJy6jHDj715WS3FSKfLv6xqXwaEsCHA,412
|
|
194
|
-
graphlit_api/enums.py,sha256=
|
|
194
|
+
graphlit_api/enums.py,sha256=fuZeWzVCtAkDD-TdZQhveKhQx1LmD6EIYFAA-i8Ft3g,40516
|
|
195
195
|
graphlit_api/exceptions.py,sha256=z0s5zBylpbPvt5iYzV3cw5SZR7664nupVoARPv6bNzg,2417
|
|
196
196
|
graphlit_api/extract_contents.py,sha256=4QSRtoKgrh23dL7KpsDpThYHA7tJlVphxVnXPudslRE,955
|
|
197
197
|
graphlit_api/extract_observables.py,sha256=TTLV9s8GF8uCFMsafQQjNPqCdskNZY01mT6alewOXG0,6077
|
|
@@ -230,7 +230,7 @@ graphlit_api/get_project.py,sha256=KDuQprWSINZrzhb_K1bnUY9MEdqhXl51x7uwclPCcJA,1
|
|
|
230
230
|
graphlit_api/get_repo.py,sha256=75n8z7_irCC39l5g1jnx6Olg9uVHkIQ0DkMF0P43Suo,2244
|
|
231
231
|
graphlit_api/get_share_point_consent_uri.py,sha256=QaZxlq7Lkx29ryWk66F6ii_JRr7vao0xiObhK-1Ig3o,462
|
|
232
232
|
graphlit_api/get_software.py,sha256=v5Z16PoO3ML-atGDTl8K3FNwqrHwBz0Ed3td2ZMt3Rk,2466
|
|
233
|
-
graphlit_api/get_specification.py,sha256=
|
|
233
|
+
graphlit_api/get_specification.py,sha256=V3pLsjDA2ZeTYz6AdSmeG_8iOlmuNGnj6TBhnUZNhao,12074
|
|
234
234
|
graphlit_api/get_user.py,sha256=yOjIDPNeXew5GmO27zYCOJ5ODX2byfgjHh2rlUb9fSs,3520
|
|
235
235
|
graphlit_api/get_user_by_identifier.py,sha256=NumqnPXbivKIKFALdbXxy6phVcVy8-dOzC6DGy6XDoA,4396
|
|
236
236
|
graphlit_api/get_view.py,sha256=eTVa8PZP3QDkkUmPGmD_gdIf6cQ0hxmqZ7aBFXOvmQo,10556
|
|
@@ -242,7 +242,7 @@ graphlit_api/ingest_memory.py,sha256=0JyWGbb5_hSWt4vZw7kRq16gAKae0ceZaCS_wKrFFwI
|
|
|
242
242
|
graphlit_api/ingest_text.py,sha256=mkGU7KaYmDwGBdzz4b4_fNKUtQUpwAo-6F58Oidj7ao,2367
|
|
243
243
|
graphlit_api/ingest_text_batch.py,sha256=3MJHuR2WEt6WFM1f5Zoax0jtHN36TC1Dupg8HdI06H4,2602
|
|
244
244
|
graphlit_api/ingest_uri.py,sha256=fYKvCOBz3rfvhEpDHWM559Kqin4QyLLDQ9pjMr07QwY,2329
|
|
245
|
-
graphlit_api/input_types.py,sha256=
|
|
245
|
+
graphlit_api/input_types.py,sha256=yreh9V6gEtSxxf9EHm6zYdmGqCKUO8huAcmMpZaLjUQ,247246
|
|
246
246
|
graphlit_api/is_content_done.py,sha256=X8uevsTD6oFMbC8I3E9Emg-_yrFTWnnrVL5LpruSB6Q,390
|
|
247
247
|
graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,352
|
|
248
248
|
graphlit_api/lookup_contents.py,sha256=LwfIk-Vw9NkvHN5Ijbfz_OH6qeg5hrLUXoaYc2Dn0zo,24102
|
|
@@ -251,7 +251,7 @@ graphlit_api/lookup_entity.py,sha256=wDdOlauwGTQWmCVK3jeT2yJTxlZLK_XSU71unWKgN8k
|
|
|
251
251
|
graphlit_api/lookup_usage.py,sha256=PepK3k3esbgqiLIy8szqepOwRiOmxBKoxoSm2R8ZmgU,1565
|
|
252
252
|
graphlit_api/map_web.py,sha256=vnkzWgB83OPQh-sk6Zs_EgP_RFBONWuEZIes3b7gYV8,340
|
|
253
253
|
graphlit_api/match_entity.py,sha256=FOSSAoG7T250uAXEhHhu7RIorJK8zG8lX9jpLPneUG8,809
|
|
254
|
-
graphlit_api/operations.py,sha256=
|
|
254
|
+
graphlit_api/operations.py,sha256=b1NOg3-L8doW9eGLPIQdavqcxcMuFb0ktza_b4ntD_4,338644
|
|
255
255
|
graphlit_api/prompt.py,sha256=SyMD2_HYSoD1YqJz7W7AyzF-Vq89kZOJBeq3B0Fv750,6532
|
|
256
256
|
graphlit_api/prompt_conversation.py,sha256=1FGc9EHtgYA7vkwySuybvwpWsU04ySB5vvJnqLX88H0,17122
|
|
257
257
|
graphlit_api/prompt_specifications.py,sha256=pYDuzj-Vy0_avuqwMyh0foJkQRkiynm8mo1Qc4KBpDA,7419
|
|
@@ -351,7 +351,7 @@ graphlit_api/query_share_point_libraries.py,sha256=4bMUeB0B_C3X28g1hYCaDomBNhBF4
|
|
|
351
351
|
graphlit_api/query_slack_channels.py,sha256=JXUaU7Z5_HyW3a-n9t5VJ7RpyWaeANhX2RclnenNfz4,415
|
|
352
352
|
graphlit_api/query_softwares.py,sha256=WkDRXf5yacjYDMTDCWmVbNghoDjVa8btJyTXoutNK5I,2818
|
|
353
353
|
graphlit_api/query_softwares_clusters.py,sha256=4vhzomN59IK3B6wHjmkHd6PnVTHF3JFYNaahhUiPSuQ,3594
|
|
354
|
-
graphlit_api/query_specifications.py,sha256=
|
|
354
|
+
graphlit_api/query_specifications.py,sha256=tKJIf-o7-jP3swnfHRFxSB58QfOrcJZdiJ_KHzkX9iQ,12846
|
|
355
355
|
graphlit_api/query_tokens.py,sha256=IXCkeVKwv4qNzJmkZnxBpKfsp7vUgpA6h2i8F3_YS6k,1733
|
|
356
356
|
graphlit_api/query_usage.py,sha256=kFJrzFKYExPJqBK5cZpey5Gha1h8hQDKZHvWR22EexI,1499
|
|
357
357
|
graphlit_api/query_users.py,sha256=j_g_Yoh8ZEo5oNUdS8A_4qpbPhgH51L9cK3HS4nooHw,3972
|
|
@@ -423,8 +423,8 @@ graphlit_api/upsert_view.py,sha256=2UmBHM76kB3MOrFl0C84tdolXYHoukgZ60yzWSe9t54,1
|
|
|
423
423
|
graphlit_api/upsert_workflow.py,sha256=SDyXg3wKuTSDFRafOIplMHBVcnB8D4c_gPxbM0-IM9k,20129
|
|
424
424
|
graphlit_api/view_exists.py,sha256=OSYvGogCDHxbHfIjcjgKBSmCoIE4gOEjnPgiS5xX_yE,351
|
|
425
425
|
graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
|
|
426
|
-
graphlit_client-1.0.
|
|
427
|
-
graphlit_client-1.0.
|
|
428
|
-
graphlit_client-1.0.
|
|
429
|
-
graphlit_client-1.0.
|
|
430
|
-
graphlit_client-1.0.
|
|
426
|
+
graphlit_client-1.0.20260205002.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
427
|
+
graphlit_client-1.0.20260205002.dist-info/METADATA,sha256=S89B7s1yV0EegNU3e7QxjqefcwVo-2K01sZGvKiRfHk,3408
|
|
428
|
+
graphlit_client-1.0.20260205002.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
429
|
+
graphlit_client-1.0.20260205002.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
430
|
+
graphlit_client-1.0.20260205002.dist-info/RECORD,,
|
{graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205002.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|