intentkit 0.6.7.dev6__py3-none-any.whl → 0.6.7.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/abstracts/skill.py +17 -0
- intentkit/core/agent.py +66 -0
- intentkit/core/skill.py +19 -0
- intentkit/skills/system/__init__.py +8 -0
- intentkit/skills/system/add_autonomous_task.py +6 -2
- intentkit/skills/system/edit_autonomous_task.py +116 -0
- intentkit/skills/system/schema.json +14 -0
- {intentkit-0.6.7.dev6.dist-info → intentkit-0.6.7.dev7.dist-info}/METADATA +1 -1
- {intentkit-0.6.7.dev6.dist-info → intentkit-0.6.7.dev7.dist-info}/RECORD +12 -11
- {intentkit-0.6.7.dev6.dist-info → intentkit-0.6.7.dev7.dist-info}/WHEEL +0 -0
- {intentkit-0.6.7.dev6.dist-info → intentkit-0.6.7.dev7.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/abstracts/skill.py
CHANGED
|
@@ -179,3 +179,20 @@ class SkillStoreABC(ABC):
|
|
|
179
179
|
task_id: ID of the task to delete
|
|
180
180
|
"""
|
|
181
181
|
pass
|
|
182
|
+
|
|
183
|
+
@staticmethod
|
|
184
|
+
@abstractmethod
|
|
185
|
+
async def update_autonomous_task(
|
|
186
|
+
agent_id: str, task_id: str, task_updates: dict
|
|
187
|
+
) -> AgentAutonomous:
|
|
188
|
+
"""Update an autonomous task for an agent.
|
|
189
|
+
|
|
190
|
+
Args:
|
|
191
|
+
agent_id: ID of the agent
|
|
192
|
+
task_id: ID of the task to update
|
|
193
|
+
task_updates: Dictionary containing fields to update
|
|
194
|
+
|
|
195
|
+
Returns:
|
|
196
|
+
AgentAutonomous: The updated task
|
|
197
|
+
"""
|
|
198
|
+
pass
|
intentkit/core/agent.py
CHANGED
|
@@ -396,3 +396,69 @@ async def delete_autonomous_task(agent_id: str, task_id: str) -> None:
|
|
|
396
396
|
await session.commit()
|
|
397
397
|
|
|
398
398
|
logger.info(f"Deleted autonomous task {task_id} from agent {agent_id}")
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
async def update_autonomous_task(
|
|
402
|
+
agent_id: str, task_id: str, task_updates: dict
|
|
403
|
+
) -> AgentAutonomous:
|
|
404
|
+
"""
|
|
405
|
+
Update an autonomous task for an agent.
|
|
406
|
+
|
|
407
|
+
Args:
|
|
408
|
+
agent_id: ID of the agent
|
|
409
|
+
task_id: ID of the task to update
|
|
410
|
+
task_updates: Dictionary containing fields to update
|
|
411
|
+
|
|
412
|
+
Returns:
|
|
413
|
+
AgentAutonomous: The updated task
|
|
414
|
+
|
|
415
|
+
Raises:
|
|
416
|
+
IntentKitAPIError: If agent is not found or task is not found
|
|
417
|
+
"""
|
|
418
|
+
agent = await Agent.get(agent_id)
|
|
419
|
+
if not agent:
|
|
420
|
+
raise IntentKitAPIError(
|
|
421
|
+
400, "AgentNotFound", f"Agent with ID {agent_id} does not exist."
|
|
422
|
+
)
|
|
423
|
+
|
|
424
|
+
# Get current autonomous tasks
|
|
425
|
+
current_tasks: List[AgentAutonomous] = agent.autonomous or []
|
|
426
|
+
|
|
427
|
+
# Find and update the task
|
|
428
|
+
task_found = False
|
|
429
|
+
updated_tasks: List[AgentAutonomous] = []
|
|
430
|
+
updated_task = None
|
|
431
|
+
|
|
432
|
+
for task_data in current_tasks:
|
|
433
|
+
if task_data.id == task_id:
|
|
434
|
+
task_found = True
|
|
435
|
+
# Create a dictionary with current task data
|
|
436
|
+
task_dict = task_data.model_dump()
|
|
437
|
+
# Update with provided fields
|
|
438
|
+
task_dict.update(task_updates)
|
|
439
|
+
# Create new AgentAutonomous instance
|
|
440
|
+
updated_task = AgentAutonomous.model_validate(task_dict)
|
|
441
|
+
updated_tasks.append(updated_task)
|
|
442
|
+
else:
|
|
443
|
+
updated_tasks.append(task_data)
|
|
444
|
+
|
|
445
|
+
if not task_found:
|
|
446
|
+
raise IntentKitAPIError(
|
|
447
|
+
404, "TaskNotFound", f"Autonomous task with ID {task_id} not found."
|
|
448
|
+
)
|
|
449
|
+
|
|
450
|
+
# Convert all AgentAutonomous objects to dictionaries for JSON serialization
|
|
451
|
+
serializable_tasks = [task_item.model_dump() for task_item in updated_tasks]
|
|
452
|
+
|
|
453
|
+
# Update the agent in the database
|
|
454
|
+
async with get_session() as session:
|
|
455
|
+
update_stmt = (
|
|
456
|
+
update(AgentTable)
|
|
457
|
+
.where(AgentTable.id == agent_id)
|
|
458
|
+
.values(autonomous=serializable_tasks)
|
|
459
|
+
)
|
|
460
|
+
await session.execute(update_stmt)
|
|
461
|
+
await session.commit()
|
|
462
|
+
|
|
463
|
+
logger.info(f"Updated autonomous task {task_id} for agent {agent_id}")
|
|
464
|
+
return updated_task
|
intentkit/core/skill.py
CHANGED
|
@@ -11,6 +11,9 @@ from intentkit.core.agent import (
|
|
|
11
11
|
from intentkit.core.agent import (
|
|
12
12
|
list_autonomous_tasks as _list_autonomous_tasks,
|
|
13
13
|
)
|
|
14
|
+
from intentkit.core.agent import (
|
|
15
|
+
update_autonomous_task as _update_autonomous_task,
|
|
16
|
+
)
|
|
14
17
|
from intentkit.models.agent import Agent, AgentAutonomous
|
|
15
18
|
from intentkit.models.agent_data import AgentData, AgentQuota
|
|
16
19
|
from intentkit.models.skill import (
|
|
@@ -177,5 +180,21 @@ class SkillStore(SkillStoreABC):
|
|
|
177
180
|
"""
|
|
178
181
|
await _delete_autonomous_task(agent_id, task_id)
|
|
179
182
|
|
|
183
|
+
@staticmethod
|
|
184
|
+
async def update_autonomous_task(
|
|
185
|
+
agent_id: str, task_id: str, task_updates: dict
|
|
186
|
+
) -> AgentAutonomous:
|
|
187
|
+
"""Update an autonomous task for an agent.
|
|
188
|
+
|
|
189
|
+
Args:
|
|
190
|
+
agent_id: ID of the agent
|
|
191
|
+
task_id: ID of the task to update
|
|
192
|
+
task_updates: Dictionary containing fields to update
|
|
193
|
+
|
|
194
|
+
Returns:
|
|
195
|
+
AgentAutonomous: The updated task
|
|
196
|
+
"""
|
|
197
|
+
return await _update_autonomous_task(agent_id, task_id, task_updates)
|
|
198
|
+
|
|
180
199
|
|
|
181
200
|
skill_store = SkillStore()
|
|
@@ -8,6 +8,7 @@ from intentkit.skills.base import SkillConfig, SkillOwnerState
|
|
|
8
8
|
from intentkit.skills.system.add_autonomous_task import AddAutonomousTask
|
|
9
9
|
from intentkit.skills.system.base import SystemBaseTool
|
|
10
10
|
from intentkit.skills.system.delete_autonomous_task import DeleteAutonomousTask
|
|
11
|
+
from intentkit.skills.system.edit_autonomous_task import EditAutonomousTask
|
|
11
12
|
from intentkit.skills.system.list_autonomous_tasks import ListAutonomousTasks
|
|
12
13
|
from intentkit.skills.system.read_agent_api_key import ReadAgentApiKey
|
|
13
14
|
from intentkit.skills.system.regenerate_agent_api_key import RegenerateAgentApiKey
|
|
@@ -24,6 +25,7 @@ class SkillStates(TypedDict):
|
|
|
24
25
|
list_autonomous_tasks: SkillOwnerState
|
|
25
26
|
add_autonomous_task: SkillOwnerState
|
|
26
27
|
delete_autonomous_task: SkillOwnerState
|
|
28
|
+
edit_autonomous_task: SkillOwnerState
|
|
27
29
|
|
|
28
30
|
|
|
29
31
|
class Config(SkillConfig):
|
|
@@ -109,6 +111,12 @@ def get_system_skill(
|
|
|
109
111
|
skill_store=store,
|
|
110
112
|
)
|
|
111
113
|
return _cache[name]
|
|
114
|
+
elif name == "edit_autonomous_task":
|
|
115
|
+
if name not in _cache:
|
|
116
|
+
_cache[name] = EditAutonomousTask(
|
|
117
|
+
skill_store=store,
|
|
118
|
+
)
|
|
119
|
+
return _cache[name]
|
|
112
120
|
else:
|
|
113
121
|
logger.warning(f"Unknown system skill: {name}")
|
|
114
122
|
return None
|
|
@@ -11,10 +11,14 @@ class AddAutonomousTaskInput(BaseModel):
|
|
|
11
11
|
"""Input model for add_autonomous_task skill."""
|
|
12
12
|
|
|
13
13
|
name: Optional[str] = Field(
|
|
14
|
-
default=None,
|
|
14
|
+
default=None,
|
|
15
|
+
description="Display name of the autonomous task configuration",
|
|
16
|
+
max_length=50,
|
|
15
17
|
)
|
|
16
18
|
description: Optional[str] = Field(
|
|
17
|
-
default=None,
|
|
19
|
+
default=None,
|
|
20
|
+
description="Description of the autonomous task configuration",
|
|
21
|
+
max_length=200,
|
|
18
22
|
)
|
|
19
23
|
minutes: Optional[int] = Field(
|
|
20
24
|
default=None,
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from langchain_core.runnables import RunnableConfig
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
|
+
|
|
6
|
+
from intentkit.models.agent import AgentAutonomous
|
|
7
|
+
from intentkit.skills.system.base import SystemBaseTool
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class EditAutonomousTaskInput(BaseModel):
|
|
11
|
+
"""Input model for edit_autonomous_task skill."""
|
|
12
|
+
|
|
13
|
+
task_id: str = Field(
|
|
14
|
+
description="The unique identifier of the autonomous task to edit"
|
|
15
|
+
)
|
|
16
|
+
name: Optional[str] = Field(
|
|
17
|
+
default=None,
|
|
18
|
+
description="Display name of the autonomous task configuration",
|
|
19
|
+
max_length=50,
|
|
20
|
+
)
|
|
21
|
+
description: Optional[str] = Field(
|
|
22
|
+
default=None,
|
|
23
|
+
description="Description of the autonomous task configuration",
|
|
24
|
+
max_length=200,
|
|
25
|
+
)
|
|
26
|
+
minutes: Optional[int] = Field(
|
|
27
|
+
default=None,
|
|
28
|
+
description="Interval in minutes between operations, mutually exclusive with cron",
|
|
29
|
+
)
|
|
30
|
+
cron: Optional[str] = Field(
|
|
31
|
+
default=None,
|
|
32
|
+
description="Cron expression for scheduling operations, mutually exclusive with minutes",
|
|
33
|
+
)
|
|
34
|
+
prompt: Optional[str] = Field(
|
|
35
|
+
default=None, description="Special prompt used during autonomous operation"
|
|
36
|
+
)
|
|
37
|
+
enabled: Optional[bool] = Field(
|
|
38
|
+
default=None, description="Whether the autonomous task is enabled"
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class EditAutonomousTaskOutput(BaseModel):
|
|
43
|
+
"""Output model for edit_autonomous_task skill."""
|
|
44
|
+
|
|
45
|
+
task: AgentAutonomous = Field(
|
|
46
|
+
description="The updated autonomous task configuration"
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class EditAutonomousTask(SystemBaseTool):
|
|
51
|
+
"""Skill to edit an existing autonomous task for an agent."""
|
|
52
|
+
|
|
53
|
+
name: str = "system_edit_autonomous_task"
|
|
54
|
+
description: str = (
|
|
55
|
+
"Edit an existing autonomous task configuration for the agent. "
|
|
56
|
+
"Allows updating the name, description, schedule (minutes or cron), prompt, and enabled status. "
|
|
57
|
+
"Only provided fields will be updated; omitted fields will keep their current values. "
|
|
58
|
+
"The minutes and cron fields are mutually exclusive. Do not provide both of them. "
|
|
59
|
+
)
|
|
60
|
+
args_schema = EditAutonomousTaskInput
|
|
61
|
+
|
|
62
|
+
async def _arun(
|
|
63
|
+
self,
|
|
64
|
+
task_id: str,
|
|
65
|
+
name: Optional[str] = None,
|
|
66
|
+
description: Optional[str] = None,
|
|
67
|
+
minutes: Optional[int] = None,
|
|
68
|
+
cron: Optional[str] = None,
|
|
69
|
+
prompt: Optional[str] = None,
|
|
70
|
+
enabled: Optional[bool] = None,
|
|
71
|
+
config: RunnableConfig = None,
|
|
72
|
+
**kwargs,
|
|
73
|
+
) -> EditAutonomousTaskOutput:
|
|
74
|
+
"""Edit an autonomous task for the agent.
|
|
75
|
+
|
|
76
|
+
Args:
|
|
77
|
+
task_id: ID of the task to edit
|
|
78
|
+
name: Display name of the task
|
|
79
|
+
description: Description of the task
|
|
80
|
+
minutes: Interval in minutes (mutually exclusive with cron)
|
|
81
|
+
cron: Cron expression (mutually exclusive with minutes)
|
|
82
|
+
prompt: Special prompt for autonomous operation
|
|
83
|
+
enabled: Whether the task is enabled
|
|
84
|
+
config: Runtime configuration containing agent context
|
|
85
|
+
|
|
86
|
+
Returns:
|
|
87
|
+
EditAutonomousTaskOutput: The updated task
|
|
88
|
+
"""
|
|
89
|
+
context = self.context_from_config(config)
|
|
90
|
+
agent_id = context.agent_id
|
|
91
|
+
|
|
92
|
+
if minutes is not None and cron is not None:
|
|
93
|
+
raise ValueError("minutes and cron are mutually exclusive")
|
|
94
|
+
|
|
95
|
+
# Build the updates dictionary with only provided fields
|
|
96
|
+
task_updates = {}
|
|
97
|
+
if name is not None:
|
|
98
|
+
task_updates["name"] = name
|
|
99
|
+
if description is not None:
|
|
100
|
+
task_updates["description"] = description
|
|
101
|
+
if minutes is not None:
|
|
102
|
+
task_updates["minutes"] = minutes
|
|
103
|
+
task_updates["cron"] = None
|
|
104
|
+
if cron is not None:
|
|
105
|
+
task_updates["cron"] = cron
|
|
106
|
+
task_updates["minutes"] = None
|
|
107
|
+
if prompt is not None:
|
|
108
|
+
task_updates["prompt"] = prompt
|
|
109
|
+
if enabled is not None:
|
|
110
|
+
task_updates["enabled"] = enabled
|
|
111
|
+
|
|
112
|
+
updated_task = await self.skill_store.update_autonomous_task(
|
|
113
|
+
agent_id, task_id, task_updates
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
return EditAutonomousTaskOutput(task=updated_task)
|
|
@@ -88,6 +88,20 @@
|
|
|
88
88
|
],
|
|
89
89
|
"description": "Delete an autonomous task configuration from the agent.",
|
|
90
90
|
"default": "disabled"
|
|
91
|
+
},
|
|
92
|
+
"edit_autonomous_task": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"title": "Edit Autonomous Task",
|
|
95
|
+
"enum": [
|
|
96
|
+
"disabled",
|
|
97
|
+
"private"
|
|
98
|
+
],
|
|
99
|
+
"x-enum-title": [
|
|
100
|
+
"Disabled",
|
|
101
|
+
"Agent Owner Only"
|
|
102
|
+
],
|
|
103
|
+
"description": "Edit an existing autonomous task configuration for the agent.",
|
|
104
|
+
"default": "disabled"
|
|
91
105
|
}
|
|
92
106
|
}
|
|
93
107
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.6.7.
|
|
3
|
+
Version: 0.6.7.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,11 +1,11 @@
|
|
|
1
|
-
intentkit/__init__.py,sha256=
|
|
1
|
+
intentkit/__init__.py,sha256=f5jUzV51tmXBOD6YYN8bRoA3wLzEeUqRoK7PntwSSbk,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
|
|
5
5
|
intentkit/abstracts/engine.py,sha256=C5C9d8vVMePhkKWURKIAbZSDZnmjxj5epL_04E6RpxQ,1449
|
|
6
6
|
intentkit/abstracts/exception.py,sha256=NX7u_eFP0Cowu6fK4QW8LmDqd_Vybm3_6W5UiO6nMYA,239
|
|
7
7
|
intentkit/abstracts/graph.py,sha256=QhaVLtKyo9iTotIWhjgUi7BbmRCcb8yrHCTSq4Hsvnw,735
|
|
8
|
-
intentkit/abstracts/skill.py,sha256=
|
|
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
|
|
11
11
|
intentkit/clients/cdp.py,sha256=_CkvnBkzdq7-sFMGct4lz85FpaOoHxOGstWubhClzrA,5921
|
|
@@ -13,14 +13,14 @@ intentkit/clients/twitter.py,sha256=Lfa7srHOFnY96SXcElW0jfg7XKS_WliWnXjPZEe6SQc,
|
|
|
13
13
|
intentkit/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
intentkit/config/config.py,sha256=Gn3KXgFyh4u0zmb-Awpu4AxvDFaGDa_5GrFrKBbOAXk,7509
|
|
15
15
|
intentkit/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
intentkit/core/agent.py,sha256=
|
|
16
|
+
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=vLT47NlLrGyvSU1OP8dkVXV5_VHqRNSeAK5t1FqSSYs,61742
|
|
20
20
|
intentkit/core/engine.py,sha256=1JJuTSVs3k57M0aKD87Yx4T86Mc2DeefhLDXcHV13fY,42554
|
|
21
21
|
intentkit/core/node.py,sha256=RqAdcR1Fcpgw4k7q9l1Sry8LgcuZWdNxSjOHDcoavCI,9108
|
|
22
22
|
intentkit/core/prompt.py,sha256=RfLhlUktkB2kCr3wfldqq6ZP2l8heZIMc8jVp31KIyQ,3631
|
|
23
|
-
intentkit/core/skill.py,sha256=
|
|
23
|
+
intentkit/core/skill.py,sha256=vPK37sDRT9kzkMBymPwqZ5uEdxTTRtb_DfREIeyz-Xw,5788
|
|
24
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
|
|
@@ -291,14 +291,15 @@ intentkit/skills/supabase/schema.json,sha256=cqjo20flg6Xlv6b-2nrsJAbdCMBCJfmlfz8
|
|
|
291
291
|
intentkit/skills/supabase/supabase.svg,sha256=65_80QCtJiKKV4EAuny_xbOD5JlTONEiq9xqO00hDtM,1107
|
|
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
|
-
intentkit/skills/system/__init__.py,sha256=
|
|
295
|
-
intentkit/skills/system/add_autonomous_task.py,sha256=
|
|
294
|
+
intentkit/skills/system/__init__.py,sha256=bqNYJCjLx9p23E21ELLP-T0B_NP0ltzT0TMqsBI-9Bg,3668
|
|
295
|
+
intentkit/skills/system/add_autonomous_task.py,sha256=dUNppykHlCNtlxWfK2DzwT1FyaH2VNp0UU9V2Ecq07o,3269
|
|
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
|
+
intentkit/skills/system/edit_autonomous_task.py,sha256=MahT7gDPH5ZpjAqEKfJ-xQx6KpmgG3RrkikJ9KAf-CI,4131
|
|
298
299
|
intentkit/skills/system/list_autonomous_tasks.py,sha256=QTPL4He3OuNfil_xLwMwL1uoe1lbww-XZxD1837usuo,1496
|
|
299
300
|
intentkit/skills/system/read_agent_api_key.py,sha256=x8DIQwDxZ1MONz4tyN3o6QUf2-2aEjZd4yVOY28-IaU,3410
|
|
300
301
|
intentkit/skills/system/regenerate_agent_api_key.py,sha256=AiFXOEIRxXJRWiDufKCi3_ViyAyK19P1XZOleM1eQUc,3070
|
|
301
|
-
intentkit/skills/system/schema.json,sha256=
|
|
302
|
+
intentkit/skills/system/schema.json,sha256=Yfd_pnSrJUQc__dwAoN9jl4WyzCKuauFjTV60U4MFaI,3099
|
|
302
303
|
intentkit/skills/system/system.svg,sha256=PVbC6r6rOhvht0lB1fcxDNTcbMUa7haHAkJ8rxp7gm0,3740
|
|
303
304
|
intentkit/skills/tavily/README.md,sha256=VagMkuHrS_ge2Sir9M9CoeqmWc_rysKhTO9-LGICQsA,2840
|
|
304
305
|
intentkit/skills/tavily/__init__.py,sha256=PDtH-O3fdAPCc3lGMbgcXKK1fDdkTO1CW-40825FtGU,2386
|
|
@@ -393,7 +394,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
|
|
|
393
394
|
intentkit/utils/s3.py,sha256=9trQNkKQ5VgxWsewVsV8Y0q_pXzGRvsCYP8xauyUYkg,8549
|
|
394
395
|
intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
|
|
395
396
|
intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
|
|
396
|
-
intentkit-0.6.7.
|
|
397
|
-
intentkit-0.6.7.
|
|
398
|
-
intentkit-0.6.7.
|
|
399
|
-
intentkit-0.6.7.
|
|
397
|
+
intentkit-0.6.7.dev7.dist-info/METADATA,sha256=uT_onMw2w4XZuSc5Jfc9a_aJF-KdnmR0jz08xlJ3MVM,6321
|
|
398
|
+
intentkit-0.6.7.dev7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
399
|
+
intentkit-0.6.7.dev7.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
400
|
+
intentkit-0.6.7.dev7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|