intentkit 0.8.12.dev3__py3-none-any.whl → 0.8.12.dev4__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.8.12-dev3"
6
+ __version__ = "0.8.12-dev4"
7
7
  __author__ = "hyacinthus"
8
8
  __email__ = "hyacinthus@gmail.com"
9
9
 
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,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: intentkit
3
- Version: 0.8.12.dev3
3
+ Version: 0.8.12.dev4
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=y_Mjs3l1WLSU4LpOjuT_KMAg5BW2sPXZIHMxIUChH_Y,384
1
+ intentkit/__init__.py,sha256=RsyRVIVBUGpknEHn8f4YdAkOFYxpTkBucnhzASN8wjI,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,7 +19,7 @@ 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=VEULUClUeEMwXloTpBo2fzLWjb5S08xAc6ccp7L-IvU,38848
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
@@ -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.dev3.dist-info/METADATA,sha256=hhJhS3JkSP2uEGoi8t-POjDTbxjhhPiBnNw6rYCc7d0,6316
455
- intentkit-0.8.12.dev3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
456
- intentkit-0.8.12.dev3.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
457
- intentkit-0.8.12.dev3.dist-info/RECORD,,
454
+ intentkit-0.8.12.dev4.dist-info/METADATA,sha256=D2P3NWnmogTbvm4buTQYhgoauFXX7OlYV21aU_QNIqI,6316
455
+ intentkit-0.8.12.dev4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
456
+ intentkit-0.8.12.dev4.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
457
+ intentkit-0.8.12.dev4.dist-info/RECORD,,