intentkit 0.7.5.dev32__py3-none-any.whl → 0.7.5.dev34__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/agent.py +2 -0
- intentkit/core/engine.py +20 -0
- intentkit/models/agent.py +1 -1
- intentkit/models/agent_schema.json +5 -2
- intentkit/skills/allora/schema.json +2 -2
- intentkit/skills/basename/schema.json +2 -2
- intentkit/skills/dapplooker/schema.json +2 -2
- intentkit/skills/elfa/schema.json +2 -2
- intentkit/skills/erc20/schema.json +2 -2
- intentkit/skills/erc721/schema.json +2 -2
- intentkit/skills/morpho/schema.json +2 -2
- intentkit/skills/openai/schema.json +2 -2
- intentkit/skills/portfolio/schema.json +2 -2
- intentkit/skills/pyth/schema.json +2 -2
- intentkit/skills/superfluid/schema.json +2 -2
- intentkit/skills/system/schema.json +6 -6
- intentkit/skills/weth/schema.json +2 -2
- intentkit/skills/wow/schema.json +2 -2
- {intentkit-0.7.5.dev32.dist-info → intentkit-0.7.5.dev34.dist-info}/METADATA +1 -1
- {intentkit-0.7.5.dev32.dist-info → intentkit-0.7.5.dev34.dist-info}/RECORD +23 -23
- {intentkit-0.7.5.dev32.dist-info → intentkit-0.7.5.dev34.dist-info}/WHEEL +0 -0
- {intentkit-0.7.5.dev32.dist-info → intentkit-0.7.5.dev34.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/core/agent.py
CHANGED
|
@@ -57,6 +57,7 @@ async def process_agent_wallet(
|
|
|
57
57
|
# 1. Check if changing between cdp and readonly (not allowed)
|
|
58
58
|
if (
|
|
59
59
|
old_wallet_provider is not None
|
|
60
|
+
and old_wallet_provider != "none"
|
|
60
61
|
and old_wallet_provider != current_wallet_provider
|
|
61
62
|
):
|
|
62
63
|
raise IntentKitAPIError(
|
|
@@ -68,6 +69,7 @@ async def process_agent_wallet(
|
|
|
68
69
|
# 2. If wallet provider hasn't changed, return existing agent data
|
|
69
70
|
if (
|
|
70
71
|
old_wallet_provider is not None
|
|
72
|
+
and old_wallet_provider != "none"
|
|
71
73
|
and old_wallet_provider == current_wallet_provider
|
|
72
74
|
):
|
|
73
75
|
return await AgentData.get(agent.id)
|
intentkit/core/engine.py
CHANGED
|
@@ -293,6 +293,26 @@ async def stream_agent_raw(
|
|
|
293
293
|
# save input message first
|
|
294
294
|
user_message = await message.save()
|
|
295
295
|
|
|
296
|
+
if user_message.message.startswith("@clear "):
|
|
297
|
+
await clear_thread_memory(user_message.agent_id, user_message.chat_id)
|
|
298
|
+
|
|
299
|
+
confirmation_message = ChatMessageCreate(
|
|
300
|
+
id=str(XID()),
|
|
301
|
+
agent_id=user_message.agent_id,
|
|
302
|
+
chat_id=user_message.chat_id,
|
|
303
|
+
user_id=user_message.user_id,
|
|
304
|
+
author_id=user_message.agent_id,
|
|
305
|
+
author_type=AuthorType.AGENT,
|
|
306
|
+
model=agent.model,
|
|
307
|
+
thread_type=user_message.author_type,
|
|
308
|
+
reply_to=user_message.id,
|
|
309
|
+
message="Memory in context has been cleared.",
|
|
310
|
+
time_cost=time.perf_counter() - start,
|
|
311
|
+
)
|
|
312
|
+
|
|
313
|
+
yield await confirmation_message.save()
|
|
314
|
+
return
|
|
315
|
+
|
|
296
316
|
model = await LLMModelInfo.get(agent.model)
|
|
297
317
|
|
|
298
318
|
payment_enabled = config.payment_enabled
|
intentkit/models/agent.py
CHANGED
|
@@ -329,12 +329,15 @@
|
|
|
329
329
|
"description": "Provider of the agent's wallet, choose cdp if you want the agent to have it's own wallet.",
|
|
330
330
|
"enum": [
|
|
331
331
|
"cdp",
|
|
332
|
-
"readonly"
|
|
332
|
+
"readonly",
|
|
333
|
+
"none"
|
|
333
334
|
],
|
|
334
335
|
"x-enum-title": [
|
|
335
336
|
"Coinbase Server Wallet V2",
|
|
336
|
-
"Readonly Wallet"
|
|
337
|
+
"Readonly Wallet",
|
|
338
|
+
"None"
|
|
337
339
|
],
|
|
340
|
+
"default": "cdp",
|
|
338
341
|
"x-group": "onchain"
|
|
339
342
|
},
|
|
340
343
|
"network_id": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -87,4 +87,4 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"additionalProperties": true
|
|
90
|
-
}
|
|
90
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -55,4 +55,4 @@
|
|
|
55
55
|
"enabled"
|
|
56
56
|
],
|
|
57
57
|
"additionalProperties": true
|
|
58
|
-
}
|
|
58
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
}
|
|
87
87
|
},
|
|
88
88
|
"additionalProperties": true
|
|
89
|
-
}
|
|
89
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"type": "boolean",
|
|
15
15
|
"title": "Enabled",
|
|
16
16
|
"description": "Whether this skill is enabled",
|
|
17
|
-
"default":
|
|
17
|
+
"default": false
|
|
18
18
|
},
|
|
19
19
|
"states": {
|
|
20
20
|
"type": "object",
|
|
@@ -135,4 +135,4 @@
|
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
137
|
"additionalProperties": true
|
|
138
|
-
}
|
|
138
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -71,4 +71,4 @@
|
|
|
71
71
|
"enabled"
|
|
72
72
|
],
|
|
73
73
|
"additionalProperties": true
|
|
74
|
-
}
|
|
74
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -87,4 +87,4 @@
|
|
|
87
87
|
"enabled"
|
|
88
88
|
],
|
|
89
89
|
"additionalProperties": true
|
|
90
|
-
}
|
|
90
|
+
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "boolean",
|
|
13
13
|
"title": "Enabled",
|
|
14
14
|
"description": "Whether this skill is enabled",
|
|
15
|
-
"default":
|
|
15
|
+
"default": false
|
|
16
16
|
},
|
|
17
17
|
"states": {
|
|
18
18
|
"type": "object",
|
|
@@ -70,4 +70,4 @@
|
|
|
70
70
|
"enabled"
|
|
71
71
|
],
|
|
72
72
|
"additionalProperties": true
|
|
73
|
-
}
|
|
73
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -135,4 +135,4 @@
|
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
137
|
"additionalProperties": true
|
|
138
|
-
}
|
|
138
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"type": "boolean",
|
|
15
15
|
"title": "Enabled",
|
|
16
16
|
"description": "Whether this skill is enabled",
|
|
17
|
-
"default":
|
|
17
|
+
"default": false
|
|
18
18
|
},
|
|
19
19
|
"states": {
|
|
20
20
|
"type": "object",
|
|
@@ -232,4 +232,4 @@
|
|
|
232
232
|
}
|
|
233
233
|
},
|
|
234
234
|
"additionalProperties": true
|
|
235
|
-
}
|
|
235
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"type": "boolean",
|
|
15
15
|
"title": "Enabled",
|
|
16
16
|
"description": "Whether this skill is enabled",
|
|
17
|
-
"default":
|
|
17
|
+
"default": false
|
|
18
18
|
},
|
|
19
19
|
"states": {
|
|
20
20
|
"type": "object",
|
|
@@ -72,4 +72,4 @@
|
|
|
72
72
|
"enabled"
|
|
73
73
|
],
|
|
74
74
|
"additionalProperties": true
|
|
75
|
-
}
|
|
75
|
+
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "boolean",
|
|
13
13
|
"title": "Enabled",
|
|
14
14
|
"description": "Whether this skill is enabled",
|
|
15
|
-
"default":
|
|
15
|
+
"default": false
|
|
16
16
|
},
|
|
17
17
|
"states": {
|
|
18
18
|
"type": "object",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
"enabled"
|
|
87
87
|
],
|
|
88
88
|
"additionalProperties": true
|
|
89
|
-
}
|
|
89
|
+
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "boolean",
|
|
13
13
|
"title": "Enabled",
|
|
14
14
|
"description": "Whether this skill is enabled",
|
|
15
|
-
"default":
|
|
15
|
+
"default": true
|
|
16
16
|
},
|
|
17
17
|
"states": {
|
|
18
18
|
"type": "object",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"Agent Owner Only"
|
|
58
58
|
],
|
|
59
59
|
"description": "List all autonomous task configurations for the agent.",
|
|
60
|
-
"default": "
|
|
60
|
+
"default": "private"
|
|
61
61
|
},
|
|
62
62
|
"add_autonomous_task": {
|
|
63
63
|
"type": "string",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"Agent Owner Only"
|
|
72
72
|
],
|
|
73
73
|
"description": "Add a new autonomous task configuration to the agent.",
|
|
74
|
-
"default": "
|
|
74
|
+
"default": "private"
|
|
75
75
|
},
|
|
76
76
|
"delete_autonomous_task": {
|
|
77
77
|
"type": "string",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"Agent Owner Only"
|
|
86
86
|
],
|
|
87
87
|
"description": "Delete an autonomous task configuration from the agent.",
|
|
88
|
-
"default": "
|
|
88
|
+
"default": "private"
|
|
89
89
|
},
|
|
90
90
|
"edit_autonomous_task": {
|
|
91
91
|
"type": "string",
|
|
@@ -99,9 +99,9 @@
|
|
|
99
99
|
"Agent Owner Only"
|
|
100
100
|
],
|
|
101
101
|
"description": "Edit an existing autonomous task configuration for the agent.",
|
|
102
|
-
"default": "
|
|
102
|
+
"default": "private"
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
-
}
|
|
107
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "boolean",
|
|
14
14
|
"title": "Enabled",
|
|
15
15
|
"description": "Whether this skill is enabled",
|
|
16
|
-
"default":
|
|
16
|
+
"default": false
|
|
17
17
|
},
|
|
18
18
|
"states": {
|
|
19
19
|
"type": "object",
|
|
@@ -55,4 +55,4 @@
|
|
|
55
55
|
"enabled"
|
|
56
56
|
],
|
|
57
57
|
"additionalProperties": true
|
|
58
|
-
}
|
|
58
|
+
}
|
intentkit/skills/wow/schema.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "boolean",
|
|
13
13
|
"title": "Enabled",
|
|
14
14
|
"description": "Whether this skill is enabled",
|
|
15
|
-
"default":
|
|
15
|
+
"default": false
|
|
16
16
|
},
|
|
17
17
|
"states": {
|
|
18
18
|
"type": "object",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
"enabled"
|
|
87
87
|
],
|
|
88
88
|
"additionalProperties": true
|
|
89
|
-
}
|
|
89
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.7.5.
|
|
3
|
+
Version: 0.7.5.dev34
|
|
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=C6m4Gyh91ENDPH--p3LeNzt5GrJvsz47xvPY9PTjflQ,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
|
|
@@ -13,21 +13,21 @@ intentkit/clients/web3.py,sha256=iFjjingL9Aqh3kwUUKN8Tw5N66o2SE_bfo6OhqI-6SU,890
|
|
|
13
13
|
intentkit/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
intentkit/config/config.py,sha256=kw9F-uLsJd-knCKmYNb-hqR7x7HUXUkNg5FZCgOPH54,8868
|
|
15
15
|
intentkit/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
intentkit/core/agent.py,sha256=
|
|
16
|
+
intentkit/core/agent.py,sha256=GLdd9Rh6aTdiU514R_aze7zuq4PgnDO7SDlwUAQrMyA,38016
|
|
17
17
|
intentkit/core/api.py,sha256=WfoaHNquujYJIpNPuTR1dSaaxog0S3X2W4lG9Ehmkm4,3284
|
|
18
18
|
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=nr43JGJP29KGVLl7RrblK5lwQ7tiEFOJwiM163ocBXM,38324
|
|
23
23
|
intentkit/core/node.py,sha256=Cjekrg5RFtNNj3k_pLAWTZVGzm33Wnn2JtE__RSNMA8,8880
|
|
24
24
|
intentkit/core/prompt.py,sha256=idNx1ono4Maz2i6IBKfaKOBBbEQiWbaSxr2Eb1vZTI4,15482
|
|
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=1SAQnNAi63L1DNLF3fXPiRhxyos183SosImY6BUUJ2s,69082
|
|
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=FIu3kVdIHZy--nDcpCMgYAMhe5WyiFXcufUNY_d8PHY,11911
|
|
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
|
|
@@ -60,11 +60,11 @@ intentkit/skills/allora/__init__.py,sha256=KCRA-NbOP_rQd1vkYDienF2DZzA8ey-1MeTcE
|
|
|
60
60
|
intentkit/skills/allora/allora.jpeg,sha256=OOFkmkdUouw0a5FH137-ai1mvksS9oy9pFoD9IVPMVA,5360
|
|
61
61
|
intentkit/skills/allora/base.py,sha256=dkzkfCZfkpjizVBF1ebkSHpIyrGUCEkHKOGzw05niZI,1315
|
|
62
62
|
intentkit/skills/allora/price.py,sha256=_xQHroUpmNsmDCkqIdIymQloxO1sxvr0gmfCj2GGlNc,5194
|
|
63
|
-
intentkit/skills/allora/schema.json,sha256=
|
|
63
|
+
intentkit/skills/allora/schema.json,sha256=UrrbX_Y9usIzqQr64AkWOM2qoEY1qmAR9OBSqhf-Psc,2245
|
|
64
64
|
intentkit/skills/basename/__init__.py,sha256=KhOAqUbEJ752im-kA5JgvMf1grjIiRjKrzysjO1Kewo,1466
|
|
65
65
|
intentkit/skills/basename/base.py,sha256=yJZNjFF2m5ej6B9o4orlPg4MoxCcx_2pgqYicV34dME,246
|
|
66
66
|
intentkit/skills/basename/basename.svg,sha256=1YoKTX90HDJUYI7yhKF31FVQWFud80Gcy8BnRuQ1NUg,605
|
|
67
|
-
intentkit/skills/basename/schema.json,sha256=
|
|
67
|
+
intentkit/skills/basename/schema.json,sha256=qu9FNbZzieEptmKT2la2zScbndVduaRJbfjL3JaBO1Q,1470
|
|
68
68
|
intentkit/skills/carv/README.md,sha256=mCyt8r_fBekt4Dv1QiwFRCQhwlpTiE4NE8GUa_thLQQ,5327
|
|
69
69
|
intentkit/skills/carv/__init__.py,sha256=qqtljOBo95DgB0L81znu91Y4kK6G7AeULlGWxYOKIMw,3845
|
|
70
70
|
intentkit/skills/carv/base.py,sha256=HX8HSE7AWoDKywUZwiZlMY5lTLATg5gFFYA9tbg9N-4,7531
|
|
@@ -130,7 +130,7 @@ intentkit/skills/dapplooker/__init__.py,sha256=GvsGsFAYxbE5qPIL6BiR-CC2oe76v2SXK
|
|
|
130
130
|
intentkit/skills/dapplooker/base.py,sha256=m53bhT5PYDduo1d5tfaJkYsCLxhPQkEdUtQ80LL_xek,1284
|
|
131
131
|
intentkit/skills/dapplooker/dapplooker.jpg,sha256=P1JHhiyodlQY1rTKG_peX59T_jU-8ZQ_ivg0oq55n70,2481
|
|
132
132
|
intentkit/skills/dapplooker/dapplooker_token_data.py,sha256=TtxdK2nRoEi5rxFJhMDDvMdDtkXoBJS28HDamXrdOzo,20839
|
|
133
|
-
intentkit/skills/dapplooker/schema.json,sha256=
|
|
133
|
+
intentkit/skills/dapplooker/schema.json,sha256=4mYLpNbiNUzDO9gEcW5quLUo-OE_R2VPvxENHFT51Pc,2188
|
|
134
134
|
intentkit/skills/defillama/__init__.py,sha256=Q8s7r6MITlM_cXVb43dYzYP-xtx3HKBGECPDFDR6WUM,10121
|
|
135
135
|
intentkit/skills/defillama/api.py,sha256=_dgNEjMFD_y5Z0y4lh1Vd1JrkRn_wFyaUShKaTf5DtE,11617
|
|
136
136
|
intentkit/skills/defillama/base.py,sha256=IHYwrvN12JE3qdqpWP__4RGzeeNobj5VS-tnCT5yLGs,4139
|
|
@@ -193,7 +193,7 @@ intentkit/skills/elfa/__init__.py,sha256=rpCR_l1SwJMdhLWyBM2dnynr3YKHWcHJNkVaK6w
|
|
|
193
193
|
intentkit/skills/elfa/base.py,sha256=wO5X-RvFLuyM9qCiV_y2A4vBMprKKXj24vxjIPjtY7c,1297
|
|
194
194
|
intentkit/skills/elfa/elfa.jpg,sha256=4K6Ht0wGitpVnvHzdEcWVjaiCVwWBTvhOfkqWWWuc5U,11053
|
|
195
195
|
intentkit/skills/elfa/mention.py,sha256=ShfDk32NAxxRUMNzgS-As0CM9KeoP6D4SzS01QE70tA,8142
|
|
196
|
-
intentkit/skills/elfa/schema.json,sha256=
|
|
196
|
+
intentkit/skills/elfa/schema.json,sha256=LfB84O7U5iblppYEDCaFwiR2afzyMm_ekDu88Un9x5U,4188
|
|
197
197
|
intentkit/skills/elfa/stats.py,sha256=aCu-EklosttykdRRP-R5yZGsokm-SCZ55xNZGy97ETM,2978
|
|
198
198
|
intentkit/skills/elfa/tokens.py,sha256=bgOuP83d16APpmKl_-2Yha-_diurG3ArYZknRYjCZhs,4537
|
|
199
199
|
intentkit/skills/elfa/utils.py,sha256=y6hfiWBu31vMXc4rrdUpbWQzmMQLk_L-iaAQLUs8dJM,4388
|
|
@@ -215,11 +215,11 @@ intentkit/skills/enso/abi/route.py,sha256=ng9U2RSyS5R3d-b0m5ELa4rFpaUDO9HcgSoX9P
|
|
|
215
215
|
intentkit/skills/erc20/__init__.py,sha256=84chqfP9YTYeCoY7z6Uu7up6TOhHF-9W80t9rZC8-Nk,1475
|
|
216
216
|
intentkit/skills/erc20/base.py,sha256=6F5XHhujzRts_KcK35MiZA3HIAnrJnX3OFBkE3p8PkE,234
|
|
217
217
|
intentkit/skills/erc20/erc20.svg,sha256=llKPc2BHM2XKl5n1csa_96Bcbij-Qvb4BIArBGd-v30,324
|
|
218
|
-
intentkit/skills/erc20/schema.json,sha256=
|
|
218
|
+
intentkit/skills/erc20/schema.json,sha256=n1b1M9opqNIPwqFKqCru6MGS3UgQArOG1393Pegg_So,1893
|
|
219
219
|
intentkit/skills/erc721/__init__.py,sha256=9jcnPA3N0jjtLR7a4OylrFZKR7t2kFIlw1ExEGW1MAA,1528
|
|
220
220
|
intentkit/skills/erc721/base.py,sha256=xGYCrSjqFezZCHHVj042ilfNYmGlR5BPXUKon7MQz44,238
|
|
221
221
|
intentkit/skills/erc721/erc721.svg,sha256=sKQxaV5Lb2ug0KJoZ4f_UimV2_ozYXa5hLEdkyBQsyM,338
|
|
222
|
-
intentkit/skills/erc721/schema.json,sha256=
|
|
222
|
+
intentkit/skills/erc721/schema.json,sha256=2_6bEEW34j1BnZL-Efdts1CBo2CfIDWSBtevMcFjOj4,2335
|
|
223
223
|
intentkit/skills/firecrawl/README.md,sha256=OP5rCC5aNx9A4YjgotZB-JFdBR_0qHiWmYLuA52a8Tw,7366
|
|
224
224
|
intentkit/skills/firecrawl/__init__.py,sha256=QQ0I5vlUgsLRFqHO17vbq-3ERKL3nzoo2B4MFGH0Igg,3160
|
|
225
225
|
intentkit/skills/firecrawl/base.py,sha256=8D66w4kRM807DRAO0kW9ph1GoGdR4dBXoU0p96I1QxE,1250
|
|
@@ -276,7 +276,7 @@ intentkit/skills/moralis/schema.json,sha256=jpD66pyw1LtUXejAjWHNJy_FGXeHK-YRlRMt
|
|
|
276
276
|
intentkit/skills/morpho/__init__.py,sha256=03BU7URDdBCu7PEl9JNvZ1JJ0GSy3Xk7tiQJzJuNc84,1482
|
|
277
277
|
intentkit/skills/morpho/base.py,sha256=FYbgul_35OX-oHwTqA8Jb99V9azM1AVcsUqGScOvQAg,238
|
|
278
278
|
intentkit/skills/morpho/morpho.svg,sha256=v3snRB2CkMbaw36YbdmNRuptu5I07O-6WUw__Htciv8,602
|
|
279
|
-
intentkit/skills/morpho/schema.json,sha256=
|
|
279
|
+
intentkit/skills/morpho/schema.json,sha256=HQM8_TZ9cZZhA1RYVCBqk7krDE1yhfMZ2B4tmpmdFKg,1845
|
|
280
280
|
intentkit/skills/nation/__init__.py,sha256=QgNHWRfe-7ZCCgCzUzEzOqR2QGPOVQThjRFEhLjLGqQ,1602
|
|
281
281
|
intentkit/skills/nation/base.py,sha256=PXZFuhrgmWksfSE7SYZWOKXTw3dcXd7Tk_7keAUrp5k,951
|
|
282
282
|
intentkit/skills/nation/nation.png,sha256=yWsOQiUxaR6T274Z_xW4nI1vFA0SeC4Zy_PslT5GvPQ,130648
|
|
@@ -289,13 +289,13 @@ intentkit/skills/openai/gpt_image_generation.py,sha256=y1qfBd6Jv1g4kAwnduS7hnxKH
|
|
|
289
289
|
intentkit/skills/openai/gpt_image_to_image.py,sha256=aHXiQxM46unTJEW12pl1DVJAieORAw9B6e7qoM206ew,6966
|
|
290
290
|
intentkit/skills/openai/image_to_text.py,sha256=cv3tmLo9dtE9CCR7VtWday6Vn7oVtX2RnURgXkIBsa0,4996
|
|
291
291
|
intentkit/skills/openai/openai.png,sha256=YCWkNHqOrtF-Merr94NOM-xK8mzH9ZvlhqxZulFX-hw,4081
|
|
292
|
-
intentkit/skills/openai/schema.json,sha256=
|
|
292
|
+
intentkit/skills/openai/schema.json,sha256=_IIfWb8s656-IAeJ7Rj_UccsGTHNkifvq_RpYtvkGGk,3567
|
|
293
293
|
intentkit/skills/portfolio/README.md,sha256=mqch3w2cmXF9iXC4j1DDMFXAajblVvOBi7L61uTfpzE,3586
|
|
294
294
|
intentkit/skills/portfolio/__init__.py,sha256=dzndB7DszgZIRVN6oIt-cVQlKmbjd7AN-ElYZihxbNQ,4779
|
|
295
295
|
intentkit/skills/portfolio/base.py,sha256=uG-X7vzK5zI6LDilwTR5XsrRDBq3_rp1uUg-O18Enbc,3542
|
|
296
296
|
intentkit/skills/portfolio/constants.py,sha256=DMs4mc1nnmm2GnJpDzjgUfLhCgRKucB3LsAmTtFW_rU,213
|
|
297
297
|
intentkit/skills/portfolio/moralis.png,sha256=fUm771g9SmL3SO2m0yeEAzrnT0C_scj_r9rowCvFiVo,11232
|
|
298
|
-
intentkit/skills/portfolio/schema.json,sha256=
|
|
298
|
+
intentkit/skills/portfolio/schema.json,sha256=D8XkK_OovkY4UTHDXWJOKkzil5AVcI-u48atZHhyDDI,6349
|
|
299
299
|
intentkit/skills/portfolio/token_balances.py,sha256=t3bJjM3hnPOqyhiZ-TISa5If0vovBjm2V2klq6VJNqI,5600
|
|
300
300
|
intentkit/skills/portfolio/wallet_approvals.py,sha256=NSmHmytoNU-GbiYeGDp6UQNiPNZoCiu_r4CFmRVsKqk,3119
|
|
301
301
|
intentkit/skills/portfolio/wallet_defi_positions.py,sha256=ZkLan3LBy0BPjSu8oTmYxc1xaBaenKfP96PR8HrBPEI,2665
|
|
@@ -309,7 +309,7 @@ intentkit/skills/portfolio/wallet_swaps.py,sha256=LWeHmuJLVaUHaaE39uynio2htjXwAv
|
|
|
309
309
|
intentkit/skills/pyth/__init__.py,sha256=zc4wXEQ38UjT1vci3jJ5oSqpOc-_Invh9PQnXeECD_Y,1472
|
|
310
310
|
intentkit/skills/pyth/base.py,sha256=IWQP6yiNWm-tzTEVj9BXv-gCsiHf7MQRFH76YhD5OyA,230
|
|
311
311
|
intentkit/skills/pyth/pyth.svg,sha256=cH_UjhbUHyPDQHW0Xz7SqPaKygIi1eMETvSEu6wFou4,387
|
|
312
|
-
intentkit/skills/pyth/schema.json,sha256=
|
|
312
|
+
intentkit/skills/pyth/schema.json,sha256=obQpVXpQXZRD2XHgIC82MJY0qO5-1TyIsRkMiO6aCSs,1896
|
|
313
313
|
intentkit/skills/slack/__init__.py,sha256=P3oPb7SnMq5wPFVMh_kQv_HUXZzdznvMvp4syzKTGiA,2681
|
|
314
314
|
intentkit/skills/slack/base.py,sha256=GMAnV-v0z7J8W7yVfBlsAeuHQbMuPC5YT0xGrCpxD38,2035
|
|
315
315
|
intentkit/skills/slack/get_channel.py,sha256=gCBoeFk5nQiLcflubOhWIwh3GDr-EScxNRAxLh4DIxk,4218
|
|
@@ -330,7 +330,7 @@ intentkit/skills/supabase/update_data.py,sha256=IOB78dSbP3yrsNuE2DH5z-UztADXpu89
|
|
|
330
330
|
intentkit/skills/supabase/upsert_data.py,sha256=tZOch4jOfXwrk6V-1D6UIWXRRgpgfO9dIXWZLnEJvyw,2387
|
|
331
331
|
intentkit/skills/superfluid/__init__.py,sha256=f-X-SldQcFuiI0dO0mtttaJKIEG13KipoQaTQmY_vW0,1586
|
|
332
332
|
intentkit/skills/superfluid/base.py,sha256=CD075eBd9OWliYex4P1BscGWCJqnurWpu63cUcoMEC4,254
|
|
333
|
-
intentkit/skills/superfluid/schema.json,sha256=
|
|
333
|
+
intentkit/skills/superfluid/schema.json,sha256=B9S4k5BJNVz7aPXon1VETE_Lw1b64pRW_qlK75U0NlQ,2370
|
|
334
334
|
intentkit/skills/superfluid/superfluid.svg,sha256=lIre1sDtkv0opwekdVb7gqqY3Xp8P73nnzbPhjZXxnY,422
|
|
335
335
|
intentkit/skills/system/__init__.py,sha256=bqNYJCjLx9p23E21ELLP-T0B_NP0ltzT0TMqsBI-9Bg,3668
|
|
336
336
|
intentkit/skills/system/add_autonomous_task.py,sha256=YnkxBaNLPUEPt7rWWWKFVXugdb_wCcxCpSr1cuCSPio,3164
|
|
@@ -340,7 +340,7 @@ intentkit/skills/system/edit_autonomous_task.py,sha256=m0Tocp_KhLbiAWNxZb20iCdET
|
|
|
340
340
|
intentkit/skills/system/list_autonomous_tasks.py,sha256=S8yQw5_Z0Viz5mFJVYqJKWGZfZUK9fKU5Pt4vPNmDAU,1398
|
|
341
341
|
intentkit/skills/system/read_agent_api_key.py,sha256=36fvWC-mktVLW_txatCXMtJINldtx4b797pI1zk0b6w,3320
|
|
342
342
|
intentkit/skills/system/regenerate_agent_api_key.py,sha256=yuc8at21AR3dnY0tfXtt8i4uP1eKuliydjl8991plKc,2966
|
|
343
|
-
intentkit/skills/system/schema.json,sha256=
|
|
343
|
+
intentkit/skills/system/schema.json,sha256=341w1M9cyz3H9xvtQwf3H-Xwb6trRYY0dWJ6M-8pDjM,3063
|
|
344
344
|
intentkit/skills/system/system.svg,sha256=PVbC6r6rOhvht0lB1fcxDNTcbMUa7haHAkJ8rxp7gm0,3740
|
|
345
345
|
intentkit/skills/tavily/README.md,sha256=VagMkuHrS_ge2Sir9M9CoeqmWc_rysKhTO9-LGICQsA,2840
|
|
346
346
|
intentkit/skills/tavily/__init__.py,sha256=PDtH-O3fdAPCc3lGMbgcXKK1fDdkTO1CW-40825FtGU,2386
|
|
@@ -429,11 +429,11 @@ intentkit/skills/web_scraper/utils.py,sha256=feGBTMWqpkoY7RFy2xDHVs5y8c2h8-XZ111
|
|
|
429
429
|
intentkit/skills/web_scraper/website_indexer.py,sha256=rTqCx-XzJtMlZnyGImPGWRdLpS13_exXc3lQu9EDjQM,17925
|
|
430
430
|
intentkit/skills/weth/__init__.py,sha256=j8akHAdJR5E2vwOq6C-jjCkT7i0yXdE1s5pUn4JxtSk,1417
|
|
431
431
|
intentkit/skills/weth/base.py,sha256=gRzTPrMX2E7N3EqAh11moyt-JEsrvTpEhUeAp5LLJiY,230
|
|
432
|
-
intentkit/skills/weth/schema.json,sha256=
|
|
432
|
+
intentkit/skills/weth/schema.json,sha256=bQmGR9HozW0QakRUOx3Kr_bKSfe9ZaDVDM8tbg-2fv0,1395
|
|
433
433
|
intentkit/skills/weth/weth.svg,sha256=WoHgvjDXJ2YR5o4PCv23Hdesi_IP155OekCNVZSJ-YE,382
|
|
434
434
|
intentkit/skills/wow/__init__.py,sha256=o_4Yn-n4ejlrB_DOUqvSWrSxvJlOyUPs-luHu9VbI_k,1500
|
|
435
435
|
intentkit/skills/wow/base.py,sha256=nFt8sJtQQsu2_ZlRasXhyG148fSJYRL-20kEt380PaE,226
|
|
436
|
-
intentkit/skills/wow/schema.json,sha256=
|
|
436
|
+
intentkit/skills/wow/schema.json,sha256=jGpugebVupGTlOUYNu7fN99p-zL-cfaoOYSX7KW8VQc,2292
|
|
437
437
|
intentkit/skills/wow/wow.svg,sha256=PO0-m6TZjJCql9r1oWohlRV5PyqGc5kIDUEnpP2-5SU,427
|
|
438
438
|
intentkit/skills/xmtp/README.md,sha256=7y3ny77l5WUI758Q3xip1akFEgBdbibkwZjeJDu5MwE,2963
|
|
439
439
|
intentkit/skills/xmtp/__init__.py,sha256=inpuVqA9i98g8VIqqfC28PbfveozSukbEHOLbOMYv14,2538
|
|
@@ -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.7.5.
|
|
455
|
-
intentkit-0.7.5.
|
|
456
|
-
intentkit-0.7.5.
|
|
457
|
-
intentkit-0.7.5.
|
|
454
|
+
intentkit-0.7.5.dev34.dist-info/METADATA,sha256=i-Xxz0UTey5VIIgfF6qqq7bk6-IrJU-T3SWPArWcfK8,6331
|
|
455
|
+
intentkit-0.7.5.dev34.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
456
|
+
intentkit-0.7.5.dev34.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
457
|
+
intentkit-0.7.5.dev34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|