intentkit 0.6.10.dev6__py3-none-any.whl → 0.6.10.dev7__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/skills/xmtp/__init__.py +2 -2
- intentkit/skills/xmtp/schema.json +2 -0
- {intentkit-0.6.10.dev6.dist-info → intentkit-0.6.10.dev7.dist-info}/METADATA +1 -1
- {intentkit-0.6.10.dev6.dist-info → intentkit-0.6.10.dev7.dist-info}/RECORD +7 -7
- {intentkit-0.6.10.dev6.dist-info → intentkit-0.6.10.dev7.dist-info}/WHEEL +0 -0
- {intentkit-0.6.10.dev6.dist-info → intentkit-0.6.10.dev7.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
|
@@ -4,7 +4,7 @@ import logging
|
|
|
4
4
|
from typing import TypedDict
|
|
5
5
|
|
|
6
6
|
from intentkit.abstracts.skill import SkillStoreABC
|
|
7
|
-
from intentkit.skills.base import SkillConfig,
|
|
7
|
+
from intentkit.skills.base import SkillConfig, SkillState
|
|
8
8
|
from intentkit.skills.xmtp.base import XmtpBaseTool
|
|
9
9
|
from intentkit.skills.xmtp.transfer import XmtpTransfer
|
|
10
10
|
|
|
@@ -15,7 +15,7 @@ logger = logging.getLogger(__name__)
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class SkillStates(TypedDict):
|
|
18
|
-
xmtp_transfer:
|
|
18
|
+
xmtp_transfer: SkillState
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class Config(SkillConfig):
|
|
@@ -26,10 +26,12 @@
|
|
|
26
26
|
"title": "XMTP Transfer",
|
|
27
27
|
"enum": [
|
|
28
28
|
"disabled",
|
|
29
|
+
"public",
|
|
29
30
|
"private"
|
|
30
31
|
],
|
|
31
32
|
"x-enum-title": [
|
|
32
33
|
"Disabled",
|
|
34
|
+
"Agent Owner + All Users",
|
|
33
35
|
"Agent Owner Only"
|
|
34
36
|
],
|
|
35
37
|
"description": "Create XMTP transaction requests for transferring ETH or ERC20 tokens on Base mainnet. Supports both native ETH transfers and ERC20 token transfers. Generates wallet_sendCalls transaction data that users can sign.",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.6.10.
|
|
3
|
+
Version: 0.6.10.dev7
|
|
4
4
|
Summary: Intent-based AI Agent Platform - Core Package
|
|
5
5
|
Project-URL: Homepage, https://github.com/crestal-network/intentkit
|
|
6
6
|
Project-URL: Repository, https://github.com/crestal-network/intentkit
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
intentkit/__init__.py,sha256=
|
|
1
|
+
intentkit/__init__.py,sha256=ZmqNv3he6-fU_58ILsPGXGbpawiaKh-MXgNkiaFQA7c,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
|
|
@@ -388,9 +388,9 @@ intentkit/skills/web_scraper/scrape_and_index.py,sha256=Xi1BmUd-LgmJXnQOgSz82baq
|
|
|
388
388
|
intentkit/skills/web_scraper/utils.py,sha256=feGBTMWqpkoY7RFy2xDHVs5y8c2h8-XZ111jRo6cC3k,23349
|
|
389
389
|
intentkit/skills/web_scraper/website_indexer.py,sha256=rTqCx-XzJtMlZnyGImPGWRdLpS13_exXc3lQu9EDjQM,17925
|
|
390
390
|
intentkit/skills/xmtp/README.md,sha256=7y3ny77l5WUI758Q3xip1akFEgBdbibkwZjeJDu5MwE,2963
|
|
391
|
-
intentkit/skills/xmtp/__init__.py,sha256=
|
|
391
|
+
intentkit/skills/xmtp/__init__.py,sha256=pG56rMjtC85x_R_YadlKyTnWYJe-jgwW4xolilcVCkA,2003
|
|
392
392
|
intentkit/skills/xmtp/base.py,sha256=85ZEuNLJmI_NmBPkbvDXQrNvJNG8dp9MbcbQYQQ3QZ8,430
|
|
393
|
-
intentkit/skills/xmtp/schema.json,sha256=
|
|
393
|
+
intentkit/skills/xmtp/schema.json,sha256=p8lPnzAzsW4yrPcuEv48Tv6qj3ouSNEFjw7YSxDZ3ok,1558
|
|
394
394
|
intentkit/skills/xmtp/transfer.py,sha256=hlkUu2UkTKx1Y7mUrBT4OjkWuzDK8DwfNpxYEwdOFhc,5860
|
|
395
395
|
intentkit/skills/xmtp/xmtp.png,sha256=vQzT-71zIb8aPodg-GkGSQbBnjGAPczWGm3es2ZkJe8,6681
|
|
396
396
|
intentkit/utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -401,7 +401,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
|
|
|
401
401
|
intentkit/utils/s3.py,sha256=9trQNkKQ5VgxWsewVsV8Y0q_pXzGRvsCYP8xauyUYkg,8549
|
|
402
402
|
intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
|
|
403
403
|
intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
|
|
404
|
-
intentkit-0.6.10.
|
|
405
|
-
intentkit-0.6.10.
|
|
406
|
-
intentkit-0.6.10.
|
|
407
|
-
intentkit-0.6.10.
|
|
404
|
+
intentkit-0.6.10.dev7.dist-info/METADATA,sha256=7fKyuBYx-P6ONWtY6BCv7SslqGW3IfRqAbQNC9ArH3U,6373
|
|
405
|
+
intentkit-0.6.10.dev7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
406
|
+
intentkit-0.6.10.dev7.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
407
|
+
intentkit-0.6.10.dev7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|