intentkit 0.6.7.dev6__py3-none-any.whl → 0.6.7.dev8__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.

@@ -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
  }
@@ -58,7 +58,7 @@ class TwitterGetMentions(TwitterBaseTool):
58
58
  await self.check_rate_limit(
59
59
  context.agent_id,
60
60
  max_requests=1,
61
- interval=59, # TODO: tmp to 59, back to 240 later
61
+ interval=15,
62
62
  )
63
63
 
64
64
  # get since id from store
@@ -53,7 +53,7 @@ class TwitterGetTimeline(TwitterBaseTool):
53
53
  # Check rate limit only when not using OAuth
54
54
  if not twitter.use_key:
55
55
  await self.check_rate_limit(
56
- context.agent_id, max_requests=3, interval=60 * 24
56
+ context.agent_id, max_requests=1, interval=15
57
57
  )
58
58
 
59
59
  # get since id from store
@@ -51,7 +51,7 @@ class TwitterGetUserByUsername(TwitterBaseTool):
51
51
  # Check rate limit only when not using OAuth
52
52
  if not twitter.use_key:
53
53
  await self.check_rate_limit(
54
- context.agent_id, max_requests=3, interval=60 * 24
54
+ context.agent_id, max_requests=5, interval=60 * 24
55
55
  )
56
56
 
57
57
  user_data = await client.get_user(
@@ -67,7 +67,7 @@ class TwitterGetUserTweets(TwitterBaseTool):
67
67
  # Check rate limit only when not using OAuth
68
68
  if not twitter.use_key:
69
69
  await self.check_rate_limit(
70
- context.agent_id, max_requests=3, interval=60 * 24
70
+ context.agent_id, max_requests=1, interval=15
71
71
  )
72
72
 
73
73
  # get since id from store
@@ -50,7 +50,7 @@ class TwitterSearchTweets(TwitterBaseTool):
50
50
  # Check rate limit only when not using OAuth
51
51
  if not twitter.use_key:
52
52
  await self.check_rate_limit(
53
- context.agent_id, max_requests=3, interval=60 * 24
53
+ context.agent_id, max_requests=1, interval=15
54
54
  )
55
55
 
56
56
  # Get since_id from store to avoid duplicate results
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: intentkit
3
- Version: 0.6.7.dev6
3
+ Version: 0.6.7.dev8
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=UqoDAJbSIOVwgzxbFRkv4odhXoesk2F4jBeo09bMpFY,383
1
+ intentkit/__init__.py,sha256=pk3WMxOsas-veMwFQ1jZaHSzMjwuU_1XA_8h540ONK0,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=k6gv5tsFSlDBNzZWPcZunVjRII_5i5uYl_r_ntPcMRE,4608
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=x_Kz3Vk09ZGDfxBf1sh9CINepGdUiovGGlMZEsBynPI,14553
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=WMHEN-0uv8IqvALVDkV_a-0wqYeSbtpN_Xg1RSgrNMc,5188
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
@@ -166,14 +166,15 @@ intentkit/skills/dune_analytics/dune.png,sha256=WNYJKcwIApDXAMF7BiHq5YgZwiYVyPmg
166
166
  intentkit/skills/dune_analytics/fetch_kol_buys.py,sha256=mKsKsRT4P1t7IdQWkqKtCcAfaQG3WGDZ4x_ySPgwzAY,4481
167
167
  intentkit/skills/dune_analytics/fetch_nation_metrics.py,sha256=tR5OjO6QofzuEheGc_2tf7321_z2Vv3RJU9JD4q1RRE,8695
168
168
  intentkit/skills/dune_analytics/schema.json,sha256=NJQ1IEPxqgBcFvMultrNpbTO-2InmstW4SwU_y15iSo,2587
169
- intentkit/skills/elfa/README.md,sha256=3VP9hZk6qfbLTZk-ww9q9-35D7pqJUy780hgb9jAb6I,3019
170
- intentkit/skills/elfa/__init__.py,sha256=YbS3M-_ZyhyvpYB46lBletdPPs8Bxwh6U5E_a_p2aGE,3137
171
- intentkit/skills/elfa/base.py,sha256=gyhqt8mJbEYlA2L_DlCoSONCMctPpqNhuWpCpvk04l0,891
169
+ intentkit/skills/elfa/README.md,sha256=s6TmQlK9w_nvMpg77B6d3gQjUP9n1M0ls8kmSDl_PoQ,4777
170
+ intentkit/skills/elfa/__init__.py,sha256=rpCR_l1SwJMdhLWyBM2dnynr3YKHWcHJNkVaK6wZLns,2901
171
+ intentkit/skills/elfa/base.py,sha256=7aovEDYYvY22GSzv74lmXJGNoL-qQ08XxFBqxcndVhQ,894
172
172
  intentkit/skills/elfa/elfa.jpg,sha256=4K6Ht0wGitpVnvHzdEcWVjaiCVwWBTvhOfkqWWWuc5U,11053
173
- intentkit/skills/elfa/mention.py,sha256=DWqz2k72K1K_FWbKJEF3CyST1wExX8QATybeq7ZuNeY,21714
174
- intentkit/skills/elfa/schema.json,sha256=b0XRu1oXdtl6TsMTvf_GhZ7IYZAuxsy1cBl8LIfmmwU,4769
175
- intentkit/skills/elfa/stats.py,sha256=J6v1rhf205cztbDoqa_4z2-9u0we7zQZbdHmdSokAhQ,4879
176
- intentkit/skills/elfa/tokens.py,sha256=Q46nkKUv3pjdnpuN0mXg_L7UYTqePmoNuw6diRE1xWs,5333
173
+ intentkit/skills/elfa/mention.py,sha256=_09_Miix4qvDhbaiwFzK7bqhgo0sPT5ObgV5JALfBLY,8388
174
+ intentkit/skills/elfa/schema.json,sha256=uMQwC66pU_Ys8YQVK9LySNDlH11ZB76via1DvGz4nb8,4172
175
+ intentkit/skills/elfa/stats.py,sha256=kPVtmU7-uvNXtpz6NTz2pCXOZ8E27D22pgw0ZBXERqA,3133
176
+ intentkit/skills/elfa/tokens.py,sha256=PFdByXf-QEsO12WMMN92qPOpoKzgabYuYw0kF4TdGS0,4686
177
+ intentkit/skills/elfa/utils.py,sha256=y6hfiWBu31vMXc4rrdUpbWQzmMQLk_L-iaAQLUs8dJM,4388
177
178
  intentkit/skills/enso/README.md,sha256=jsLXPjW16rvBDd7soVms0IpH2LmQLRjtbRlzDMOLkso,1998
178
179
  intentkit/skills/enso/__init__.py,sha256=WLds5RVOMdswAtO8Dwkzl2H18gym0vpfa-CeF19PC0I,3076
179
180
  intentkit/skills/enso/base.py,sha256=UTnkEDj7TSRvruw6hX9efQtBUlijPZ2m4b5Urq9sSpc,2487
@@ -291,14 +292,15 @@ intentkit/skills/supabase/schema.json,sha256=cqjo20flg6Xlv6b-2nrsJAbdCMBCJfmlfz8
291
292
  intentkit/skills/supabase/supabase.svg,sha256=65_80QCtJiKKV4EAuny_xbOD5JlTONEiq9xqO00hDtM,1107
292
293
  intentkit/skills/supabase/update_data.py,sha256=Hbwsoa52GZNTPIhWdR9vj9VlcPRUn_vCMOYDzmMoPsI,4023
293
294
  intentkit/skills/supabase/upsert_data.py,sha256=JgKLFPcQkUwnQhqTZojT4Ae53hYULeGEkQ1gxZJEe-c,2538
294
- intentkit/skills/system/__init__.py,sha256=kVnWjsFinpLzB9pADRzAkP8BvIjmaqJ9sURVFyfXry4,3354
295
- intentkit/skills/system/add_autonomous_task.py,sha256=EzCpCHYICwoum4C8FANj-thOcEhIIRgnf5sUywK1DiA,3204
295
+ intentkit/skills/system/__init__.py,sha256=bqNYJCjLx9p23E21ELLP-T0B_NP0ltzT0TMqsBI-9Bg,3668
296
+ intentkit/skills/system/add_autonomous_task.py,sha256=dUNppykHlCNtlxWfK2DzwT1FyaH2VNp0UU9V2Ecq07o,3269
296
297
  intentkit/skills/system/base.py,sha256=Sm4lSNgbxwGK5YimnBfwi3Hc8E1EwSMZIXsCJbIPiLM,700
297
298
  intentkit/skills/system/delete_autonomous_task.py,sha256=1zChfY3SkWr1V2QFotyitkVLaBsYBtk68qkhyA_qh-A,1741
299
+ intentkit/skills/system/edit_autonomous_task.py,sha256=MahT7gDPH5ZpjAqEKfJ-xQx6KpmgG3RrkikJ9KAf-CI,4131
298
300
  intentkit/skills/system/list_autonomous_tasks.py,sha256=QTPL4He3OuNfil_xLwMwL1uoe1lbww-XZxD1837usuo,1496
299
301
  intentkit/skills/system/read_agent_api_key.py,sha256=x8DIQwDxZ1MONz4tyN3o6QUf2-2aEjZd4yVOY28-IaU,3410
300
302
  intentkit/skills/system/regenerate_agent_api_key.py,sha256=AiFXOEIRxXJRWiDufKCi3_ViyAyK19P1XZOleM1eQUc,3070
301
- intentkit/skills/system/schema.json,sha256=w5bjnWd6-5dG2irT3w8SJBmdrn7XkUevIgBWuJD9XgM,2686
303
+ intentkit/skills/system/schema.json,sha256=Yfd_pnSrJUQc__dwAoN9jl4WyzCKuauFjTV60U4MFaI,3099
302
304
  intentkit/skills/system/system.svg,sha256=PVbC6r6rOhvht0lB1fcxDNTcbMUa7haHAkJ8rxp7gm0,3740
303
305
  intentkit/skills/tavily/README.md,sha256=VagMkuHrS_ge2Sir9M9CoeqmWc_rysKhTO9-LGICQsA,2840
304
306
  intentkit/skills/tavily/__init__.py,sha256=PDtH-O3fdAPCc3lGMbgcXKK1fDdkTO1CW-40825FtGU,2386
@@ -320,16 +322,16 @@ intentkit/skills/token/token_search.py,sha256=f1dsZ0dxZ7eL8AuVpa7ctan9l6SIamMGQc
320
322
  intentkit/skills/twitter/__init__.py,sha256=VPww1hJOw3wetWAZp4HfsdPkbpe4zjJ5JbKTkqDz1ME,4484
321
323
  intentkit/skills/twitter/base.py,sha256=KXeQ33NY9cOaV-uznKpgyJhulfTI1HAs7fdbbxN9YeM,2258
322
324
  intentkit/skills/twitter/follow_user.py,sha256=YGXLTrVEHg00IAtr_DmK1fJnvwFAYAQBHCAmJrRsbgY,2290
323
- intentkit/skills/twitter/get_mentions.py,sha256=4VQ7N5qqR6DoERxIjmmIzVqb2GQpogO2UCm4NWWjwOQ,4193
324
- intentkit/skills/twitter/get_timeline.py,sha256=HSMORxW5vROqlYvduIVS1XQ56kgmxBr6sY9jNY7_tCI,3757
325
- intentkit/skills/twitter/get_user_by_username.py,sha256=e6y2N6z-T3nKXJ2iKnqYo6RLzbPcK0Mlb9cOIJ9NTwM,2619
326
- intentkit/skills/twitter/get_user_tweets.py,sha256=fYiyPLu4qGlF0DZGqKo-EeB2OI8iwJJk_14xE8hWSDs,4206
325
+ intentkit/skills/twitter/get_mentions.py,sha256=hLZyUrHle4sd-ICU23Bi7dmgbb9MJ7hTjkcfQqqxnkk,4155
326
+ intentkit/skills/twitter/get_timeline.py,sha256=ghJPaUoR1NiM-_VbxlhgmVq3LrxzWJ1XxX1cQ0Qk77g,3752
327
+ intentkit/skills/twitter/get_user_by_username.py,sha256=fECuTPzqM3_PcZ6vuA9hcaSotFFNpf93XOxKhCtGJRQ,2619
328
+ intentkit/skills/twitter/get_user_tweets.py,sha256=b5QLTGaVCXAeE_SxpmmVvM9BnnMer6NePlNqR844GDI,4201
327
329
  intentkit/skills/twitter/like_tweet.py,sha256=agICo_dJfY6s8o5deCE9gjfumKurL-P2C8VHCbvhI1M,2133
328
330
  intentkit/skills/twitter/post_tweet.py,sha256=udbCfEXSJ8T_PGCw2A50-4ZeK5soZ4ZGDVnOuiTOuKs,2916
329
331
  intentkit/skills/twitter/reply_tweet.py,sha256=11J013mzweQf-X9ijT7EU9EBcLSjZhMMUxQM-wRneB8,3192
330
332
  intentkit/skills/twitter/retweet.py,sha256=cWXPgltc8ms0M1zp2Ofju2sGy2cYxIXNpJuNkyt3Q4I,2444
331
333
  intentkit/skills/twitter/schema.json,sha256=uSSl-dhOs_qrSoOlxFAsTbst0_POWPRZo9YAF_qhho8,6977
332
- intentkit/skills/twitter/search_tweets.py,sha256=adQUfUJ5nfCiAv8CFCg1-NVIdo32rs_9cO6Eknhn2no,4030
334
+ intentkit/skills/twitter/search_tweets.py,sha256=DwLtTospZZI1q5gM12tEo-QNem5Eq2dVcP9K_FtRmgI,4025
333
335
  intentkit/skills/twitter/twitter.png,sha256=MggF-4UC40K2mf1K0hqsIFzCmw-n_2yMSH50MjxvZso,23879
334
336
  intentkit/skills/unrealspeech/__init__.py,sha256=1A8084j67jltD4njAsCJVTP7IsPYxTghz2IbtuNS4O8,1588
335
337
  intentkit/skills/unrealspeech/base.py,sha256=0-cWJ58OIswy9O2SENU4VzSbTw5FuhboFNfCRqEtTEI,623
@@ -393,7 +395,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
393
395
  intentkit/utils/s3.py,sha256=9trQNkKQ5VgxWsewVsV8Y0q_pXzGRvsCYP8xauyUYkg,8549
394
396
  intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
395
397
  intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
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,,
398
+ intentkit-0.6.7.dev8.dist-info/METADATA,sha256=88MxkfS6rDFyNQUfNJ5tS-plF-5pt_68LLYwSdkokow,6321
399
+ intentkit-0.6.7.dev8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
400
+ intentkit-0.6.7.dev8.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
401
+ intentkit-0.6.7.dev8.dist-info/RECORD,,