intentkit 0.6.7.dev4__py3-none-any.whl → 0.6.7.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  A powerful platform for building AI agents with blockchain and cryptocurrency capabilities.
4
4
  """
5
5
 
6
- __version__ = "0.6.7-dev4"
6
+ __version__ = "0.6.7-dev6"
7
7
  __author__ = "hyacinthus"
8
8
  __email__ = "hyacinthus@gmail.com"
9
9
 
intentkit/models/agent.py CHANGED
@@ -1487,6 +1487,12 @@ class AgentResponse(BaseModel):
1487
1487
  cdp_wallet_address: Annotated[
1488
1488
  Optional[str], PydanticField(description="CDP wallet address for the agent")
1489
1489
  ]
1490
+ evm_wallet_address: Annotated[
1491
+ Optional[str], PydanticField(description="EVM wallet address for the agent")
1492
+ ]
1493
+ solana_wallet_address: Annotated[
1494
+ Optional[str], PydanticField(description="Solana wallet address for the agent")
1495
+ ]
1490
1496
  has_twitter_linked: Annotated[
1491
1497
  bool,
1492
1498
  PydanticField(description="Whether the agent has linked their Twitter account"),
@@ -1602,6 +1608,8 @@ class AgentResponse(BaseModel):
1602
1608
 
1603
1609
  # Process CDP wallet address
1604
1610
  cdp_wallet_address = agent_data.evm_wallet_address if agent_data else None
1611
+ evm_wallet_address = agent_data.evm_wallet_address if agent_data else None
1612
+ solana_wallet_address = agent_data.solana_wallet_address if agent_data else None
1605
1613
 
1606
1614
  # Process Twitter linked status
1607
1615
  has_twitter_linked = False
@@ -1647,6 +1655,8 @@ class AgentResponse(BaseModel):
1647
1655
  data.update(
1648
1656
  {
1649
1657
  "cdp_wallet_address": cdp_wallet_address,
1658
+ "evm_wallet_address": evm_wallet_address,
1659
+ "solana_wallet_address": solana_wallet_address,
1650
1660
  "has_twitter_linked": has_twitter_linked,
1651
1661
  "linked_twitter_username": linked_twitter_username,
1652
1662
  "linked_twitter_name": linked_twitter_name,
@@ -25,9 +25,6 @@ class AddAutonomousTaskInput(BaseModel):
25
25
  description="Cron expression for scheduling operations, mutually exclusive with minutes",
26
26
  )
27
27
  prompt: str = Field(description="Special prompt used during autonomous operation")
28
- enabled: Optional[bool] = Field(
29
- default=False, description="Whether the autonomous configuration is enabled"
30
- )
31
28
 
32
29
 
33
30
  class AddAutonomousTaskOutput(BaseModel):
@@ -48,7 +45,7 @@ class AddAutonomousTask(SystemBaseTool):
48
45
  "The minutes and cron fields are mutually exclusive. But you must provide one of them. "
49
46
  "If user want to add a condition task, you can add a 5 minutes task to check the condition. "
50
47
  "If the user does not explicitly state that the condition task should be executed continuously, "
51
- "then add in the task prompt that it will delete itself after successful execution."
48
+ "then add in the task prompt that it will delete itself after successful execution. "
52
49
  )
53
50
  args_schema = AddAutonomousTaskInput
54
51
 
@@ -59,7 +56,6 @@ class AddAutonomousTask(SystemBaseTool):
59
56
  minutes: Optional[int] = None,
60
57
  cron: Optional[str] = None,
61
58
  prompt: str = "",
62
- enabled: Optional[bool] = False,
63
59
  config: RunnableConfig = None,
64
60
  **kwargs,
65
61
  ) -> AddAutonomousTaskOutput:
@@ -71,7 +67,6 @@ class AddAutonomousTask(SystemBaseTool):
71
67
  minutes: Interval in minutes (mutually exclusive with cron)
72
68
  cron: Cron expression (mutually exclusive with minutes)
73
69
  prompt: Special prompt for autonomous operation
74
- enabled: Whether the task is enabled
75
70
  config: Runtime configuration containing agent context
76
71
 
77
72
  Returns:
@@ -86,7 +81,7 @@ class AddAutonomousTask(SystemBaseTool):
86
81
  minutes=minutes,
87
82
  cron=cron,
88
83
  prompt=prompt,
89
- enabled=enabled,
84
+ enabled=True,
90
85
  )
91
86
 
92
87
  created_task = await self.skill_store.add_autonomous_task(agent_id, task)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: intentkit
3
- Version: 0.6.7.dev4
3
+ Version: 0.6.7.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=wwO0j6U4aBUbh0VDF2uVO4NqXcoV8XJlPDWsyP2rUo0,383
1
+ intentkit/__init__.py,sha256=UqoDAJbSIOVwgzxbFRkv4odhXoesk2F4jBeo09bMpFY,383
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
@@ -21,7 +21,7 @@ intentkit/core/engine.py,sha256=1JJuTSVs3k57M0aKD87Yx4T86Mc2DeefhLDXcHV13fY,4255
21
21
  intentkit/core/node.py,sha256=RqAdcR1Fcpgw4k7q9l1Sry8LgcuZWdNxSjOHDcoavCI,9108
22
22
  intentkit/core/prompt.py,sha256=RfLhlUktkB2kCr3wfldqq6ZP2l8heZIMc8jVp31KIyQ,3631
23
23
  intentkit/core/skill.py,sha256=WMHEN-0uv8IqvALVDkV_a-0wqYeSbtpN_Xg1RSgrNMc,5188
24
- intentkit/models/agent.py,sha256=hkcQIpIk84hObCJWDbtxyEDdCZrJ-KSIP2n5lFv0aFo,56664
24
+ intentkit/models/agent.py,sha256=L1nB-9RMvmZ38LRjtHeIdGbmdGeS8Ji1j_s0NJsFtSQ,57216
25
25
  intentkit/models/agent_data.py,sha256=mVsiK8TziYa1W1ujU1KwI9osIVIeSM7XJEogGRL1WVU,28263
26
26
  intentkit/models/agent_schema.json,sha256=5RMn474uWeN8Mo7RwPQuvPa5twXcenNbUjXCWjzywrI,21659
27
27
  intentkit/models/app_setting.py,sha256=4fuW4J6NV826e53OAsW1bnn3Pgw8iUVKH9-AUMTSYQc,5550
@@ -292,7 +292,7 @@ intentkit/skills/supabase/supabase.svg,sha256=65_80QCtJiKKV4EAuny_xbOD5JlTONEiq9
292
292
  intentkit/skills/supabase/update_data.py,sha256=Hbwsoa52GZNTPIhWdR9vj9VlcPRUn_vCMOYDzmMoPsI,4023
293
293
  intentkit/skills/supabase/upsert_data.py,sha256=JgKLFPcQkUwnQhqTZojT4Ae53hYULeGEkQ1gxZJEe-c,2538
294
294
  intentkit/skills/system/__init__.py,sha256=kVnWjsFinpLzB9pADRzAkP8BvIjmaqJ9sURVFyfXry4,3354
295
- intentkit/skills/system/add_autonomous_task.py,sha256=Rv5Zmka4fE4MAET2nyY3eQ-gLzt4mxueOMQDBKBwDts,3424
295
+ intentkit/skills/system/add_autonomous_task.py,sha256=EzCpCHYICwoum4C8FANj-thOcEhIIRgnf5sUywK1DiA,3204
296
296
  intentkit/skills/system/base.py,sha256=Sm4lSNgbxwGK5YimnBfwi3Hc8E1EwSMZIXsCJbIPiLM,700
297
297
  intentkit/skills/system/delete_autonomous_task.py,sha256=1zChfY3SkWr1V2QFotyitkVLaBsYBtk68qkhyA_qh-A,1741
298
298
  intentkit/skills/system/list_autonomous_tasks.py,sha256=QTPL4He3OuNfil_xLwMwL1uoe1lbww-XZxD1837usuo,1496
@@ -393,7 +393,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
393
393
  intentkit/utils/s3.py,sha256=9trQNkKQ5VgxWsewVsV8Y0q_pXzGRvsCYP8xauyUYkg,8549
394
394
  intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
395
395
  intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
396
- intentkit-0.6.7.dev4.dist-info/METADATA,sha256=JVvwgqnK28pEsq8qQzO4H60Ve9C7bxy220FXzUgkrI8,6321
397
- intentkit-0.6.7.dev4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
398
- intentkit-0.6.7.dev4.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
399
- intentkit-0.6.7.dev4.dist-info/RECORD,,
396
+ intentkit-0.6.7.dev6.dist-info/METADATA,sha256=M9FDCx_YyrMwlL32gIG4PgpMBTC5I4v7ptMRMqlTi9c,6321
397
+ intentkit-0.6.7.dev6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
398
+ intentkit-0.6.7.dev6.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
399
+ intentkit-0.6.7.dev6.dist-info/RECORD,,