intentkit 0.6.13.dev1__py3-none-any.whl → 0.6.14__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/abstracts/graph.py +3 -2
- intentkit/models/agent.py +6 -1
- {intentkit-0.6.13.dev1.dist-info → intentkit-0.6.14.dist-info}/METADATA +1 -1
- {intentkit-0.6.13.dev1.dist-info → intentkit-0.6.14.dist-info}/RECORD +7 -7
- {intentkit-0.6.13.dev1.dist-info → intentkit-0.6.14.dist-info}/WHEEL +0 -0
- {intentkit-0.6.13.dev1.dist-info → intentkit-0.6.14.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/abstracts/graph.py
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import asyncio
|
|
2
2
|
from enum import Enum
|
|
3
|
-
from typing import Any, Dict,
|
|
3
|
+
from typing import Any, Dict, NotRequired, Optional
|
|
4
4
|
|
|
5
5
|
from langgraph.prebuilt.chat_agent_executor import AgentState as BaseAgentState
|
|
6
6
|
from pydantic import BaseModel
|
|
7
7
|
|
|
8
8
|
from intentkit.models.agent import Agent
|
|
9
|
+
from intentkit.models.chat import AuthorType
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class AgentError(str, Enum):
|
|
@@ -31,7 +32,7 @@ class AgentContext(BaseModel):
|
|
|
31
32
|
chat_id: str
|
|
32
33
|
user_id: Optional[str] = None
|
|
33
34
|
app_id: Optional[str] = None
|
|
34
|
-
entrypoint:
|
|
35
|
+
entrypoint: AuthorType
|
|
35
36
|
is_private: bool
|
|
36
37
|
payer: Optional[str] = None
|
|
37
38
|
|
intentkit/models/agent.py
CHANGED
|
@@ -287,6 +287,11 @@ class AgentTable(Base):
|
|
|
287
287
|
nullable=True,
|
|
288
288
|
comment="Provider of the agent's wallet",
|
|
289
289
|
)
|
|
290
|
+
readonly_wallet_address = Column(
|
|
291
|
+
String,
|
|
292
|
+
nullable=True,
|
|
293
|
+
comment="Readonly wallet address of the agent",
|
|
294
|
+
)
|
|
290
295
|
network_id = Column(
|
|
291
296
|
String,
|
|
292
297
|
nullable=True,
|
|
@@ -1649,7 +1654,7 @@ class AgentResponse(BaseModel):
|
|
|
1649
1654
|
),
|
|
1650
1655
|
]
|
|
1651
1656
|
wallet_provider: Annotated[
|
|
1652
|
-
Optional[Literal["cdp"]],
|
|
1657
|
+
Optional[Literal["cdp", "readonly"]],
|
|
1653
1658
|
PydanticField(
|
|
1654
1659
|
default="cdp",
|
|
1655
1660
|
description="Provider of the agent's wallet",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.14
|
|
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,10 +1,10 @@
|
|
|
1
|
-
intentkit/__init__.py,sha256=
|
|
1
|
+
intentkit/__init__.py,sha256=QEyOPA7q3CgwSoScvuuaSo0B363ouYKjHSrKCJxqL8o,379
|
|
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
|
|
5
5
|
intentkit/abstracts/engine.py,sha256=C5C9d8vVMePhkKWURKIAbZSDZnmjxj5epL_04E6RpxQ,1449
|
|
6
6
|
intentkit/abstracts/exception.py,sha256=NX7u_eFP0Cowu6fK4QW8LmDqd_Vybm3_6W5UiO6nMYA,239
|
|
7
|
-
intentkit/abstracts/graph.py,sha256=
|
|
7
|
+
intentkit/abstracts/graph.py,sha256=sX5hVemXsODvwIYLHufaf-zSXmW97bXRoZuyxYqaEV4,1128
|
|
8
8
|
intentkit/abstracts/skill.py,sha256=cIJ6BkASD31U1IEkE8rdAawq99w_xsg0lt3oalqa1ZA,5071
|
|
9
9
|
intentkit/abstracts/twitter.py,sha256=cEtP7ygR_b-pHdc9i8kBuyooz1cPoGUGwsBHDpowJyY,1262
|
|
10
10
|
intentkit/clients/__init__.py,sha256=sQ_6_bRC2MPWLPH-skQ3qsEe8ce-dUGL7i8VJOautHg,298
|
|
@@ -21,7 +21,7 @@ intentkit/core/engine.py,sha256=MNn2M1yVIekb1kZabmnn12uphyJbylgH48Ee82vga4Y,3702
|
|
|
21
21
|
intentkit/core/node.py,sha256=7h9zgDSd928bzUi3m3EZnKkhbwqlbRAQUr_uz7gKB5Y,8880
|
|
22
22
|
intentkit/core/prompt.py,sha256=MnT8XfrpvN51SPRGFg-wkjEOsQ1QYIjKIJkP_BMx0BU,15856
|
|
23
23
|
intentkit/core/skill.py,sha256=vPK37sDRT9kzkMBymPwqZ5uEdxTTRtb_DfREIeyz-Xw,5788
|
|
24
|
-
intentkit/models/agent.py,sha256
|
|
24
|
+
intentkit/models/agent.py,sha256=-o_z3XLrf3BN5FLe40MfNJIq83lnrJpM2XuK1K4BaEU,66932
|
|
25
25
|
intentkit/models/agent_data.py,sha256=mVsiK8TziYa1W1ujU1KwI9osIVIeSM7XJEogGRL1WVU,28263
|
|
26
26
|
intentkit/models/agent_schema.json,sha256=Ln__ypJTCQuFDXWQ815UBdQXyW12pcJgNmC48bVPHc0,22223
|
|
27
27
|
intentkit/models/app_setting.py,sha256=4fuW4J6NV826e53OAsW1bnn3Pgw8iUVKH9-AUMTSYQc,5550
|
|
@@ -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.
|
|
407
|
-
intentkit-0.6.
|
|
408
|
-
intentkit-0.6.
|
|
409
|
-
intentkit-0.6.
|
|
406
|
+
intentkit-0.6.14.dist-info/METADATA,sha256=vtODBUigwvxpubjgwdC6imvZthT002K-yWZwGAX98og,6409
|
|
407
|
+
intentkit-0.6.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
408
|
+
intentkit-0.6.14.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
409
|
+
intentkit-0.6.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|