intentkit 0.6.11.dev4__py3-none-any.whl → 0.6.11.dev6__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 +1 -1
- intentkit/skills/xmtp/schema.json +32 -0
- {intentkit-0.6.11.dev4.dist-info → intentkit-0.6.11.dev6.dist-info}/METADATA +1 -1
- {intentkit-0.6.11.dev4.dist-info → intentkit-0.6.11.dev6.dist-info}/RECORD +7 -7
- {intentkit-0.6.11.dev4.dist-info → intentkit-0.6.11.dev6.dist-info}/WHEEL +0 -0
- {intentkit-0.6.11.dev4.dist-info → intentkit-0.6.11.dev6.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/core/engine.py
CHANGED
|
@@ -139,7 +139,7 @@ async def create_agent(
|
|
|
139
139
|
has_search
|
|
140
140
|
and llm_model.info.provider == LLMProvider.OPENAI
|
|
141
141
|
and llm_model.info.supports_search
|
|
142
|
-
and not agent.model.
|
|
142
|
+
and not agent.model.startswith(
|
|
143
143
|
"gpt-5"
|
|
144
144
|
) # tmp disable gpt-5 search since package bugs
|
|
145
145
|
):
|
|
@@ -36,6 +36,38 @@
|
|
|
36
36
|
],
|
|
37
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.",
|
|
38
38
|
"default": "disabled"
|
|
39
|
+
},
|
|
40
|
+
"xmtp_swap": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"title": "XMTP Swap",
|
|
43
|
+
"enum": [
|
|
44
|
+
"disabled",
|
|
45
|
+
"public",
|
|
46
|
+
"private"
|
|
47
|
+
],
|
|
48
|
+
"x-enum-title": [
|
|
49
|
+
"Disabled",
|
|
50
|
+
"Agent Owner + All Users",
|
|
51
|
+
"Agent Owner Only"
|
|
52
|
+
],
|
|
53
|
+
"description": "Create XMTP transaction requests for swapping tokens on Base using CDP swap quote. Returns a wallet_sendCalls payload that can include an optional approval call and the swap call. Only supports base-mainnet and base-sepolia.",
|
|
54
|
+
"default": "disabled"
|
|
55
|
+
},
|
|
56
|
+
"xmtp_get_swap_price": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"title": "XMTP Get Swap Price",
|
|
59
|
+
"enum": [
|
|
60
|
+
"disabled",
|
|
61
|
+
"public",
|
|
62
|
+
"private"
|
|
63
|
+
],
|
|
64
|
+
"x-enum-title": [
|
|
65
|
+
"Disabled",
|
|
66
|
+
"Agent Owner + All Users",
|
|
67
|
+
"Agent Owner Only"
|
|
68
|
+
],
|
|
69
|
+
"description": "Get an indicative swap price/quote for token pair and amount on Base networks using CDP. Provides estimated output amounts for token swaps without creating transactions.",
|
|
70
|
+
"default": "disabled"
|
|
39
71
|
}
|
|
40
72
|
}
|
|
41
73
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.6.11.
|
|
3
|
+
Version: 0.6.11.dev6
|
|
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=s0cBAftE8bRaA_QeB40g0g3zCj4UIcpKS3s6C5x7VYg,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
|
|
@@ -17,7 +17,7 @@ intentkit/core/agent.py,sha256=GIKDn1dTenIHWMRxe-ud7hd1cQaHzbTDdypy5IAgPfU,16658
|
|
|
17
17
|
intentkit/core/api.py,sha256=3GIMJpwduLUSbVPNW6mQVxZncYHH3OlLwdiqFtYtEAE,1208
|
|
18
18
|
intentkit/core/client.py,sha256=rIwtJVVm-7piXtFNDbeykt9vWdNTecgjW0aA3N-lHnM,1495
|
|
19
19
|
intentkit/core/credit.py,sha256=Y5cjShFFqGBhz7Uc_ziqejyW-2FP58TYxsSNc4N_6hI,63039
|
|
20
|
-
intentkit/core/engine.py,sha256=
|
|
20
|
+
intentkit/core/engine.py,sha256=aDfaqw8kBWYg_cznIapSWPT4Z8O2pTOMVEIJTgxSut8,38020
|
|
21
21
|
intentkit/core/node.py,sha256=7h9zgDSd928bzUi3m3EZnKkhbwqlbRAQUr_uz7gKB5Y,8880
|
|
22
22
|
intentkit/core/prompt.py,sha256=eaa2FyFptpsWlEGWCL8jVmZMGB6Pl9hBnt-y8Yq37RU,16041
|
|
23
23
|
intentkit/core/skill.py,sha256=vPK37sDRT9kzkMBymPwqZ5uEdxTTRtb_DfREIeyz-Xw,5788
|
|
@@ -391,7 +391,7 @@ intentkit/skills/xmtp/README.md,sha256=7y3ny77l5WUI758Q3xip1akFEgBdbibkwZjeJDu5M
|
|
|
391
391
|
intentkit/skills/xmtp/__init__.py,sha256=inpuVqA9i98g8VIqqfC28PbfveozSukbEHOLbOMYv14,2538
|
|
392
392
|
intentkit/skills/xmtp/base.py,sha256=85ZEuNLJmI_NmBPkbvDXQrNvJNG8dp9MbcbQYQQ3QZ8,430
|
|
393
393
|
intentkit/skills/xmtp/price.py,sha256=LqM3tWiW42bYIRqfvsZUvYpG5H5ife3WUhR-pxiS9I8,2648
|
|
394
|
-
intentkit/skills/xmtp/schema.json,sha256=
|
|
394
|
+
intentkit/skills/xmtp/schema.json,sha256=GFJKYPQVAcfiybL1uhAHANYeQUR0JWWxPgPhXW92N0s,3089
|
|
395
395
|
intentkit/skills/xmtp/swap.py,sha256=f_cl8NMAWJ3q1t8_y1Bs8P6o78MzWb7Z85sIqLfAz-A,8082
|
|
396
396
|
intentkit/skills/xmtp/transfer.py,sha256=hlkUu2UkTKx1Y7mUrBT4OjkWuzDK8DwfNpxYEwdOFhc,5860
|
|
397
397
|
intentkit/skills/xmtp/xmtp.png,sha256=vQzT-71zIb8aPodg-GkGSQbBnjGAPczWGm3es2ZkJe8,6681
|
|
@@ -403,7 +403,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
|
|
|
403
403
|
intentkit/utils/s3.py,sha256=9trQNkKQ5VgxWsewVsV8Y0q_pXzGRvsCYP8xauyUYkg,8549
|
|
404
404
|
intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
|
|
405
405
|
intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
|
|
406
|
-
intentkit-0.6.11.
|
|
407
|
-
intentkit-0.6.11.
|
|
408
|
-
intentkit-0.6.11.
|
|
409
|
-
intentkit-0.6.11.
|
|
406
|
+
intentkit-0.6.11.dev6.dist-info/METADATA,sha256=OLhak9K9m_f0sEozqRjkzRDf2HmQOmo8j-3vXwm9qAw,6414
|
|
407
|
+
intentkit-0.6.11.dev6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
408
|
+
intentkit-0.6.11.dev6.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
409
|
+
intentkit-0.6.11.dev6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|