intentkit 0.8.12.dev3__py3-none-any.whl → 0.8.12.dev5__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.
Potentially problematic release.
This version of intentkit might be problematic. Click here for more details.
- intentkit/__init__.py +1 -1
- intentkit/core/engine.py +4 -1
- intentkit/models/agent.py +0 -5
- intentkit/models/agent_schema.json +2 -7
- intentkit/models/llm.csv +14 -12
- intentkit/skills/cdp/__init__.py +0 -1
- intentkit/skills/cdp/schema.json +1 -17
- {intentkit-0.8.12.dev3.dist-info → intentkit-0.8.12.dev5.dist-info}/METADATA +1 -1
- {intentkit-0.8.12.dev3.dist-info → intentkit-0.8.12.dev5.dist-info}/RECORD +11 -11
- {intentkit-0.8.12.dev3.dist-info → intentkit-0.8.12.dev5.dist-info}/WHEEL +0 -0
- {intentkit-0.8.12.dev3.dist-info → intentkit-0.8.12.dev5.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/core/engine.py
CHANGED
|
@@ -55,7 +55,7 @@ from intentkit.models.chat import (
|
|
|
55
55
|
from intentkit.models.credit import CreditAccount, OwnerType
|
|
56
56
|
from intentkit.models.db import get_langgraph_checkpointer, get_session
|
|
57
57
|
from intentkit.models.llm import LLMModelInfo, LLMProvider, create_llm_model
|
|
58
|
-
from intentkit.models.skill import AgentSkillData, ChatSkillData
|
|
58
|
+
from intentkit.models.skill import AgentSkillData, ChatSkillData, Skill
|
|
59
59
|
from intentkit.models.user import User
|
|
60
60
|
from intentkit.utils.error import IntentKitAPIError
|
|
61
61
|
|
|
@@ -702,6 +702,9 @@ async def stream_agent_raw(
|
|
|
702
702
|
for skill_call in skill_calls:
|
|
703
703
|
if not skill_call["success"]:
|
|
704
704
|
continue
|
|
705
|
+
skill = await Skill.get(skill_call["name"])
|
|
706
|
+
if not skill:
|
|
707
|
+
continue
|
|
705
708
|
payment_event = await expense_skill(
|
|
706
709
|
session,
|
|
707
710
|
payer,
|
intentkit/models/agent.py
CHANGED
|
@@ -538,15 +538,10 @@ class AgentCore(BaseModel):
|
|
|
538
538
|
Optional[
|
|
539
539
|
Literal[
|
|
540
540
|
"base-mainnet",
|
|
541
|
-
"base-sepolia",
|
|
542
541
|
"ethereum-mainnet",
|
|
543
|
-
"ethereum-sepolia",
|
|
544
542
|
"polygon-mainnet",
|
|
545
|
-
"polygon-mumbai",
|
|
546
543
|
"arbitrum-mainnet",
|
|
547
|
-
"arbitrum-sepolia",
|
|
548
544
|
"optimism-mainnet",
|
|
549
|
-
"optimism-sepolia",
|
|
550
545
|
"solana",
|
|
551
546
|
]
|
|
552
547
|
],
|
|
@@ -348,16 +348,11 @@
|
|
|
348
348
|
"description": "Default Network, please note that some CDP Wallet native skills like swap only support the base network.",
|
|
349
349
|
"default": "base-mainnet",
|
|
350
350
|
"enum": [
|
|
351
|
+
"base-mainnet",
|
|
351
352
|
"ethereum-mainnet",
|
|
352
|
-
"ethereum-sepolia",
|
|
353
353
|
"polygon-mainnet",
|
|
354
|
-
"polygon-mumbai",
|
|
355
|
-
"base-mainnet",
|
|
356
|
-
"base-sepolia",
|
|
357
354
|
"arbitrum-mainnet",
|
|
358
|
-
"
|
|
359
|
-
"optimism-mainnet",
|
|
360
|
-
"optimism-sepolia"
|
|
355
|
+
"optimism-mainnet"
|
|
361
356
|
],
|
|
362
357
|
"x-group": "onchain"
|
|
363
358
|
}
|
intentkit/models/llm.csv
CHANGED
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
id,name,provider,enabled,input_price,output_price,price_level,context_length,output_length,intelligence,speed,supports_image_input,supports_skill_calls,supports_structured_output,has_reasoning,supports_search,supports_temperature,supports_frequency_penalty,supports_presence_penalty,api_base,timeout
|
|
2
|
-
qwen/qwen3-235b-a22b-2507,Qwen3 235B A22B Instruct 2507,gatewayz,TRUE,0.1,0.6,1,262000,262000,
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
anthropic/claude-sonnet-4,Anthropic Claude Sonnet 4,gatewayz,TRUE,3,15,5,200000,64000,5,1,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
2
|
+
qwen/qwen3-235b-a22b-2507,Qwen3 235B A22B Instruct 2507,gatewayz,TRUE,0.1,0.6,1,262000,262000,3,3,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
3
|
+
qwen/qwen3-max,Qwen3 Max,gatewayz,TRUE,1.2,6,4,128000,32000,4,2,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
4
|
+
google/gemini-2.5-flash,Gemini 2.5 Flash,gatewayz,TRUE,0.3,2.5,2,1050000,65000,3,4,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
5
|
+
google/gemini-2.5-pro,Gemini 2.5 Pro,gatewayz,TRUE,1.25,10,4,1050000,65000,4,2,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
6
|
+
anthropic/claude-sonnet-4.5,Anthropic Claude Sonnet 4.5,gatewayz,TRUE,3,15,5,200000,64000,5,1,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,https://api.gatewayz.ai/v1,300
|
|
7
|
+
gpt-5-nano,GPT-5 Nano,openai,TRUE,0.05,0.4,1,400000,128000,3,5,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
8
|
+
gpt-5-mini,GPT-5 Mini,openai,TRUE,0.25,2,2,400000,128000,4,4,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
9
|
+
gpt-5,GPT-5,openai,TRUE,1.25,10,4,400000,128000,5,3,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,,180
|
|
7
10
|
gpt-4o,GPT-4o,openai,FALSE,2.5,10,4,128000,4096,4,3,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
8
11
|
gpt-4o-mini,GPT-4o Mini,openai,FALSE,0.15,0.6,1,128000,4096,3,4,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
9
12
|
gpt-4.1-nano,GPT-4.1 Nano,openai,TRUE,0.1,0.4,1,128000,4096,3,5,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,,180
|
|
10
13
|
gpt-4.1-mini,GPT-4.1 Mini,openai,TRUE,0.4,1.6,2,128000,4096,4,4,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
11
14
|
gpt-4.1,GPT-4.1,openai,TRUE,2,8,4,128000,4096,5,3,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
12
|
-
gpt-5-nano,GPT-5 Nano,openai,TRUE,0.05,0.4,1,400000,128000,3,5,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
13
|
-
gpt-5-mini,GPT-5 Mini,openai,TRUE,0.25,2,2,400000,128000,4,4,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
14
|
-
gpt-5,GPT-5,openai,TRUE,1.25,10,4,400000,128000,5,3,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,,180
|
|
15
15
|
o3,OpenAI o3,openai,TRUE,2,8,4,200000,100000,5,1,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
16
16
|
o4-mini,OpenAI o4-mini,openai,TRUE,1.1,4.4,3,128000,4096,4,3,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
17
|
-
deepseek-chat,Deepseek V3.
|
|
18
|
-
deepseek-reasoner,DeepSeek V3.
|
|
19
|
-
grok-
|
|
20
|
-
grok-
|
|
17
|
+
deepseek-chat,Deepseek V3.2 Exp,deepseek,TRUE,0.28,0.42,2,128000,4096,4,3,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,https://api.deepseek.com,300
|
|
18
|
+
deepseek-reasoner,DeepSeek V3.2 Exp (Thinking Mode),deepseek,TRUE,0.28,0.42,2,128000,32000,5,1,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,https://api.deepseek.com,300
|
|
19
|
+
grok-4,Grok 4,xai,TRUE,3,15,4,256000,4096,5,3,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,,180
|
|
20
|
+
grok-4-fast-non-reasoning,Grok 4 Fast,xai,TRUE,0.2,0.5,2,2000000,4096,3,4,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,,180
|
|
21
|
+
grok-code-fast-1,Grok Code Fast 1,xai,TRUE,0.2,1.5,3,256000,4096,4,4,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,,180
|
|
22
|
+
grok-3,Grok 3,xai,TRUE,3,15,4,131072,4096,5,3,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
21
23
|
grok-3-mini,Grok 3 Mini,xai,TRUE,0.3,0.5,2,131072,4096,5,3,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,,180
|
|
22
24
|
eternalai,Eternal AI (Llama-3.3-70B),eternal,FALSE,0.25,0.75,2,64000,4096,4,3,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,https://api.eternalai.org/v1,300
|
|
23
25
|
reigent,REI Network,reigent,FALSE,0.5,1.5,3,32000,4096,4,3,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,https://api.reisearch.box/v1,300
|
intentkit/skills/cdp/__init__.py
CHANGED
|
@@ -24,7 +24,6 @@ class SkillStates(TypedDict):
|
|
|
24
24
|
WalletActionProvider_get_balance: SkillState
|
|
25
25
|
WalletActionProvider_get_wallet_details: SkillState
|
|
26
26
|
WalletActionProvider_native_transfer: SkillState
|
|
27
|
-
CdpApiActionProvider_request_faucet_funds: SkillState
|
|
28
27
|
CdpEvmWalletActionProvider_get_swap_price: SkillState
|
|
29
28
|
CdpEvmWalletActionProvider_swap: SkillState
|
|
30
29
|
|
intentkit/skills/cdp/schema.json
CHANGED
|
@@ -66,22 +66,6 @@
|
|
|
66
66
|
"description": "Transfer the native asset from the wallet",
|
|
67
67
|
"default": "disabled"
|
|
68
68
|
},
|
|
69
|
-
"CdpApiActionProvider_request_faucet_funds": {
|
|
70
|
-
"type": "string",
|
|
71
|
-
"title": "Request Faucet Funds",
|
|
72
|
-
"enum": [
|
|
73
|
-
"disabled",
|
|
74
|
-
"public",
|
|
75
|
-
"private"
|
|
76
|
-
],
|
|
77
|
-
"x-enum-title": [
|
|
78
|
-
"Disabled",
|
|
79
|
-
"Agent Owner + All Users",
|
|
80
|
-
"Agent Owner Only"
|
|
81
|
-
],
|
|
82
|
-
"description": "State for CdpApiActionProvider_request_faucet_funds",
|
|
83
|
-
"default": "disabled"
|
|
84
|
-
},
|
|
85
69
|
"CdpEvmWalletActionProvider_get_swap_price": {
|
|
86
70
|
"type": "string",
|
|
87
71
|
"title": "Get Swap Price",
|
|
@@ -135,4 +119,4 @@
|
|
|
135
119
|
"enabled"
|
|
136
120
|
],
|
|
137
121
|
"additionalProperties": true
|
|
138
|
-
}
|
|
122
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.8.12.
|
|
3
|
+
Version: 0.8.12.dev5
|
|
4
4
|
Summary: Intent-based AI Agent Platform - Core Package
|
|
5
5
|
Project-URL: Homepage, https://github.com/crestalnetwork/intentkit
|
|
6
6
|
Project-URL: Repository, https://github.com/crestalnetwork/intentkit
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
intentkit/__init__.py,sha256
|
|
1
|
+
intentkit/__init__.py,sha256=-VHxlWLUEcj3vn50T9fJPTkJHijCaw5PE2h69wi3a08,384
|
|
2
2
|
intentkit/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
intentkit/abstracts/agent.py,sha256=108gb5W8Q1Sy4G55F2_ZFv2-_CnY76qrBtpIr0Oxxqk,1489
|
|
4
4
|
intentkit/abstracts/api.py,sha256=ZUc24vaQvQVbbjznx7bV0lbbQxdQPfEV8ZxM2R6wZWo,166
|
|
@@ -19,15 +19,15 @@ intentkit/core/asset.py,sha256=9hkIgi-QRmr4FQddloEcQ5xdZlnHGFcxekNhss_gHOY,7339
|
|
|
19
19
|
intentkit/core/chat.py,sha256=YN20CnDazWLjiOZFOHgV6uHmA2DKkvPCsD5Q5sfNcZg,1685
|
|
20
20
|
intentkit/core/client.py,sha256=J5K7f08-ucszBKAbn9K3QNOFKIC__7amTbKYii1jFkI,3056
|
|
21
21
|
intentkit/core/credit.py,sha256=b4f4T6G6eeBTMe0L_r8awWtXgUnqiog4IUaymDPYym0,75587
|
|
22
|
-
intentkit/core/engine.py,sha256=
|
|
22
|
+
intentkit/core/engine.py,sha256=stFQtRO_hGyb9SMNIZdO8dDAb3NRNUW9kQfoZzV0Y4M,39010
|
|
23
23
|
intentkit/core/node.py,sha256=-QVgmQuMnrzo6cF-4AECOIVT3R4gCnWfQ1EjTm2Sz1g,8791
|
|
24
24
|
intentkit/core/prompt.py,sha256=cf33qLpGozRc_aPdbnI_pDFREivSUhvUB9VboOKscXA,17212
|
|
25
25
|
intentkit/core/scheduler.py,sha256=De84aTHYoIH18YPooB_GckHts5oGFZg-XQZQcqFvlXc,2842
|
|
26
26
|
intentkit/core/statistics.py,sha256=-IZmxIBzyzZuai7QyfPEY1tx8Q8ydmmcm6eqbSSy_6o,6366
|
|
27
|
-
intentkit/models/agent.py,sha256=
|
|
27
|
+
intentkit/models/agent.py,sha256=CuUPPKSun4VVaiwEMMFpXMw0qkOCGmzcqDs3LBIuguI,69154
|
|
28
28
|
intentkit/models/agent_data.py,sha256=5zq3EPKnygT2P1OHc2IfEmL8hXkjeBND6sJ0JJsvQJg,28370
|
|
29
29
|
intentkit/models/agent_public.json,sha256=0X8Bd2WOobDJLsok8avWNzmzu4uvKSGEyy6Myn53eT4,2802
|
|
30
|
-
intentkit/models/agent_schema.json,sha256=
|
|
30
|
+
intentkit/models/agent_schema.json,sha256=_-oviPLPCdveQ3H4wTuoxC2PF5tOhFXuG7BUsmhUJG8,11829
|
|
31
31
|
intentkit/models/app_setting.py,sha256=iYbW63QD91bt4oEYV3wOXHuRFav2b4VXLwb_StgUQtQ,8230
|
|
32
32
|
intentkit/models/base.py,sha256=o-zRjVrak-f5Jokdvj8BjLm8gcC3yYiYMCTLegwT2lA,185
|
|
33
33
|
intentkit/models/chat.py,sha256=cDccEHU8nd7Y5uhrHDCuZGwqrRwhqCaeztMiZcemiug,20469
|
|
@@ -36,7 +36,7 @@ intentkit/models/credit.py,sha256=CM_oOhcpKHkdCVTe86osYsBM9vIo-9N65SWrNKEKy7Y,52
|
|
|
36
36
|
intentkit/models/db.py,sha256=1uX1DJZGMx9A3lq6WKSTSwpXhWgWaiki55-iiED8BYM,5082
|
|
37
37
|
intentkit/models/db_mig.py,sha256=vT6Tanm-BHC2T7dTztuB1UG494EFBAlHADKsNzR6xaQ,3577
|
|
38
38
|
intentkit/models/generator.py,sha256=lyZu9U9rZUGkqd_QT5SAhay9DY358JJY8EhDSpN8I1M,10298
|
|
39
|
-
intentkit/models/llm.csv,sha256=
|
|
39
|
+
intentkit/models/llm.csv,sha256=uG3kp3qbs_Bto42ojWM7nYijmzsB24b8Cc3dZ40a5kY,3650
|
|
40
40
|
intentkit/models/llm.py,sha256=ZnM6qpk9ouTqFysQzzg8TcAfxXASD-H9f1eHsmVjYv8,22186
|
|
41
41
|
intentkit/models/redis.py,sha256=Vqb9pjeMQ85Az5GvUbqCsQ5stBpFg3n85p94TB40xEw,3727
|
|
42
42
|
intentkit/models/skill.py,sha256=vGJgKpUmjGsThFznEwMLipuZIlqtto_ovVELp1_AjB8,20709
|
|
@@ -82,10 +82,10 @@ intentkit/skills/casino/deck_shuffle.py,sha256=HkHOwQ6iuG-ixqqie3adZFAgb6nNxfeOl
|
|
|
82
82
|
intentkit/skills/casino/dice_roll.py,sha256=-yjTl949F_aqlYjzWzIrP9VB6G2YlA2uDoTTRkgeNyY,3258
|
|
83
83
|
intentkit/skills/casino/schema.json,sha256=-jTURxJSVHUi3Q76sP7h92SNvkJjuUNfTYiYKWhlI-4,2108
|
|
84
84
|
intentkit/skills/casino/utils.py,sha256=b5fPwACH_tHgXD-V646weDDEvd4giRGPNfd9f7RRXc0,2593
|
|
85
|
-
intentkit/skills/cdp/__init__.py,sha256=
|
|
85
|
+
intentkit/skills/cdp/__init__.py,sha256=ZGKkAc4HKq0UycaPx4AdXefPhraRw5xjJuL2wodMyuM,2150
|
|
86
86
|
intentkit/skills/cdp/base.py,sha256=cgDYk3NHWdVv8QEm6K-zKdl4RmeJt8rtRodIWSTZ8qM,425
|
|
87
87
|
intentkit/skills/cdp/cdp.png,sha256=dxPF6jPbKVfxJNMvbGTmBhXM-rSDvweF06txoX1cIM4,4425
|
|
88
|
-
intentkit/skills/cdp/schema.json,sha256=
|
|
88
|
+
intentkit/skills/cdp/schema.json,sha256=8C1Zwxw_r5V24AFFoB8KWOTMZdpu49AeE09K-SIE-1s,3404
|
|
89
89
|
intentkit/skills/chainlist/README.md,sha256=FEVQObs2W_oL2kyV-vZpHNwZCCgqm5Kt0sv0GD_Xo1M,958
|
|
90
90
|
intentkit/skills/chainlist/__init__.py,sha256=oP7BjKoTYejj7yxiYhlMLLTojuxEbByqx-W4tpF-UKA,1343
|
|
91
91
|
intentkit/skills/chainlist/base.py,sha256=tAxCqRhMKlVRLr7XAbJKvtZIpjKsBgg2Xb75_KCuyhY,443
|
|
@@ -451,7 +451,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
|
|
|
451
451
|
intentkit/utils/s3.py,sha256=A8Nsx5QJyLsxhj9g7oHNy2-m24tjQUhC9URm8Qb1jFw,10057
|
|
452
452
|
intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
|
|
453
453
|
intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
|
|
454
|
-
intentkit-0.8.12.
|
|
455
|
-
intentkit-0.8.12.
|
|
456
|
-
intentkit-0.8.12.
|
|
457
|
-
intentkit-0.8.12.
|
|
454
|
+
intentkit-0.8.12.dev5.dist-info/METADATA,sha256=IgfdCacSWtoLkh4U9dHa0k6yaZHem-zksGJWJLokvYQ,6316
|
|
455
|
+
intentkit-0.8.12.dev5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
456
|
+
intentkit-0.8.12.dev5.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
457
|
+
intentkit-0.8.12.dev5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|