graphlit-client 1.0.20260203001__py3-none-any.whl → 1.0.20260205001__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 +12 -0
- graphlit_api/input_types.py +3 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.dist-info}/RECORD +8 -8
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.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"
|
|
@@ -1600,6 +1611,7 @@ class AsanaAuthenticationTypes(str, Enum):
|
|
|
1600
1611
|
|
|
1601
1612
|
|
|
1602
1613
|
class OpenAIReasoningEffortLevels(str, Enum):
|
|
1614
|
+
MINIMAL = "MINIMAL"
|
|
1603
1615
|
LOW = "LOW"
|
|
1604
1616
|
MEDIUM = "MEDIUM"
|
|
1605
1617
|
HIGH = "HIGH"
|
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_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.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=pYIh4rkkYPWpzdOVv4b1ANbF6Hhf4pLeB5A-B_EqKOw,40466
|
|
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
|
|
@@ -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
|
|
@@ -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.20260205001.dist-info/licenses/LICENSE,sha256=jXhY7KvtRtwhhxDAmj6TO3oHISIIgch5KusiqpAwcAI,1074
|
|
427
|
+
graphlit_client-1.0.20260205001.dist-info/METADATA,sha256=OiY9b2lo761kX7yoE0ARXH5dto7Q0Z7xQuv2ZUFAALU,3408
|
|
428
|
+
graphlit_client-1.0.20260205001.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
429
|
+
graphlit_client-1.0.20260205001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
|
|
430
|
+
graphlit_client-1.0.20260205001.dist-info/RECORD,,
|
{graphlit_client-1.0.20260203001.dist-info → graphlit_client-1.0.20260205001.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|