intentkit 0.7.5.dev20__py3-none-any.whl → 0.7.5.dev21__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.

Files changed (54) hide show
  1. intentkit/__init__.py +1 -1
  2. intentkit/config/config.py +1 -0
  3. intentkit/core/engine.py +10 -11
  4. intentkit/models/llm.csv +5 -0
  5. intentkit/models/llm.py +32 -0
  6. intentkit/skills/acolyt/schema.json +4 -3
  7. intentkit/skills/aixbt/schema.json +4 -4
  8. intentkit/skills/allora/schema.json +3 -2
  9. intentkit/skills/basename/schema.json +2 -1
  10. intentkit/skills/carv/schema.json +134 -137
  11. intentkit/skills/casino/schema.json +0 -1
  12. intentkit/skills/cdp/schema.json +2 -1
  13. intentkit/skills/chainlist/schema.json +3 -5
  14. intentkit/skills/common/schema.json +2 -2
  15. intentkit/skills/cookiefun/schema.json +2 -4
  16. intentkit/skills/cryptocompare/schema.json +3 -3
  17. intentkit/skills/cryptopanic/schema.json +105 -103
  18. intentkit/skills/dapplooker/schema.json +3 -5
  19. intentkit/skills/defillama/schema.json +5 -1
  20. intentkit/skills/dexscreener/schema.json +91 -93
  21. intentkit/skills/dune_analytics/schema.json +104 -99
  22. intentkit/skills/elfa/schema.json +3 -2
  23. intentkit/skills/enso/schema.json +3 -2
  24. intentkit/skills/erc20/schema.json +2 -1
  25. intentkit/skills/erc721/schema.json +2 -1
  26. intentkit/skills/firecrawl/schema.json +2 -6
  27. intentkit/skills/github/schema.json +3 -4
  28. intentkit/skills/heurist/schema.json +2 -2
  29. intentkit/skills/http/schema.json +4 -5
  30. intentkit/skills/lifi/schema.json +17 -8
  31. intentkit/skills/moralis/schema.json +7 -2
  32. intentkit/skills/morpho/schema.json +1 -1
  33. intentkit/skills/nation/schema.json +4 -3
  34. intentkit/skills/openai/schema.json +2 -3
  35. intentkit/skills/portfolio/schema.json +3 -5
  36. intentkit/skills/pyth/schema.json +3 -1
  37. intentkit/skills/slack/schema.json +2 -2
  38. intentkit/skills/supabase/schema.json +2 -3
  39. intentkit/skills/superfluid/schema.json +1 -1
  40. intentkit/skills/system/schema.json +2 -4
  41. intentkit/skills/tavily/schema.json +3 -5
  42. intentkit/skills/token/schema.json +3 -6
  43. intentkit/skills/twitter/schema.json +2 -2
  44. intentkit/skills/unrealspeech/schema.json +2 -5
  45. intentkit/skills/venice_audio/schema.json +151 -152
  46. intentkit/skills/venice_image/schema.json +267 -267
  47. intentkit/skills/web_scraper/schema.json +2 -6
  48. intentkit/skills/weth/schema.json +2 -1
  49. intentkit/skills/wow/schema.json +1 -1
  50. intentkit/skills/xmtp/schema.json +69 -71
  51. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/METADATA +1 -1
  52. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/RECORD +54 -54
  53. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/WHEEL +0 -0
  54. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev21.dist-info}/licenses/LICENSE +0 -0
@@ -1,152 +1,151 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Venice Audio Skills",
4
- "x-icon": "https://ai.service.crestal.dev/skills/venice_audio/venice_audio.jpg",
5
- "description": "Configuration for the Venice Audio skill.",
6
- "type": "object",
7
- "x-tags": [
8
- "AI",
9
- "Audio",
10
- "Text to Speech"
11
- ],
12
- "properties": {
13
- "enabled": {
14
- "type": "boolean",
15
- "title": "Enabled",
16
- "description": "Enable or disable the Venice Audio skill.",
17
- "default": false
18
- },
19
- "voice_model": {
20
- "type": "string",
21
- "title": "Voice Model",
22
- "x-link": "[Listen Voice Example](https://huggingface.co/spaces/hexgrad/Kokoro-TTS)",
23
- "enum": [
24
- "af_heart",
25
- "bm_lewis",
26
- "custom"
27
- ],
28
- "x-enum-title": [
29
- "af_heart (default female)",
30
- "bm_lewis (default male)",
31
- "Custom"
32
- ],
33
- "description": "Text to speech tool",
34
- "default": "af_heart"
35
- },
36
- "states": {
37
- "type": "object",
38
- "title": "Skill States",
39
- "description": "Enable/disable specific voice models. Only enable one if you want a consistent characteristic for your agent. See docs for voice details and quality grades.",
40
- "properties": {
41
- "text_to_speech": {
42
- "type": "string",
43
- "title": "Text to Speech",
44
- "enum": [
45
- "disabled",
46
- "public",
47
- "private"
48
- ],
49
- "x-enum-title": [
50
- "Disabled",
51
- "Agent Owner + All Users",
52
- "Agent Owner Only"
53
- ],
54
- "description": "Text to speech tool",
55
- "default": "disabled"
56
- }
57
- }
58
- },
59
- "api_key_provider": {
60
- "type": "string",
61
- "title": "API Key Provider",
62
- "description": "Provider of the API key",
63
- "enum": [
64
- "agent_owner"
65
- ],
66
- "x-enum-title": [
67
- "Owner Provided"
68
- ],
69
- "default": "agent_owner"
70
- }
71
- },
72
- "required": [
73
- "states",
74
- "enabled"
75
- ],
76
- "allOf": [
77
- {
78
- "if": {
79
- "properties": {
80
- "voice_model": {
81
- "const": "custom"
82
- }
83
- }
84
- },
85
- "then": {
86
- "properties": {
87
- "voice_model_custom": {
88
- "type": "array",
89
- "items": {
90
- "type": "string"
91
- },
92
- "title": "Voice Model (Custom)",
93
- "x-link": "[Supported Voice Model](https://docs.venice.ai/api-reference/endpoint/audio/speech#body-voice)",
94
- "description": "You can add one or more custom voice models.",
95
- "default": [
96
- "af_heart",
97
- "bm_lewis"
98
- ]
99
- }
100
- },
101
- "required": [
102
- "voice_model_custom"
103
- ]
104
- }
105
- },
106
- {
107
- "if": {
108
- "allOf": [
109
- {
110
- "properties": {
111
- "enabled": {
112
- "const": true
113
- }
114
- }
115
- },
116
- {
117
- "properties": {
118
- "api_key_provider": {
119
- "const": "agent_owner"
120
- }
121
- }
122
- }
123
- ]
124
- },
125
- "then": {
126
- "properties": {
127
- "api_key": {
128
- "type": "string",
129
- "title": "Venice API Key",
130
- "x-link": "[Get your API key](https://venice.ai/)",
131
- "x-sensitive": true,
132
- "description": "API Key for authenticating with the Venice AI API."
133
- },
134
- "rate_limit_number": {
135
- "type": "integer",
136
- "title": "Rate Limit Number",
137
- "description": "Number of requests allowed per time window."
138
- },
139
- "rate_limit_minutes": {
140
- "type": "integer",
141
- "title": "Rate Limit Minutes",
142
- "description": "Time window in minutes for rate limiting."
143
- }
144
- },
145
- "required": [
146
- "api_key"
147
- ]
148
- }
149
- }
150
- ],
151
- "additionalProperties": true
152
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Venice Audio Skills",
4
+ "x-icon": "https://ai.service.crestal.dev/skills/venice_audio/venice_audio.jpg",
5
+ "description": "Configuration for the Venice Audio skill.",
6
+ "type": "object",
7
+ "x-tags": [
8
+ "AI",
9
+ "Audio"
10
+ ],
11
+ "properties": {
12
+ "enabled": {
13
+ "type": "boolean",
14
+ "title": "Enabled",
15
+ "description": "Enable or disable the Venice Audio skill.",
16
+ "default": false
17
+ },
18
+ "voice_model": {
19
+ "type": "string",
20
+ "title": "Voice Model",
21
+ "x-link": "[Listen Voice Example](https://huggingface.co/spaces/hexgrad/Kokoro-TTS)",
22
+ "enum": [
23
+ "af_heart",
24
+ "bm_lewis",
25
+ "custom"
26
+ ],
27
+ "x-enum-title": [
28
+ "af_heart (default female)",
29
+ "bm_lewis (default male)",
30
+ "Custom"
31
+ ],
32
+ "description": "Text to speech tool",
33
+ "default": "af_heart"
34
+ },
35
+ "states": {
36
+ "type": "object",
37
+ "title": "Skill States",
38
+ "description": "Enable/disable specific voice models. Only enable one if you want a consistent characteristic for your agent. See docs for voice details and quality grades.",
39
+ "properties": {
40
+ "text_to_speech": {
41
+ "type": "string",
42
+ "title": "Text to Speech",
43
+ "enum": [
44
+ "disabled",
45
+ "public",
46
+ "private"
47
+ ],
48
+ "x-enum-title": [
49
+ "Disabled",
50
+ "Agent Owner + All Users",
51
+ "Agent Owner Only"
52
+ ],
53
+ "description": "Text to speech tool",
54
+ "default": "disabled"
55
+ }
56
+ }
57
+ },
58
+ "api_key_provider": {
59
+ "type": "string",
60
+ "title": "API Key Provider",
61
+ "description": "Provider of the API key",
62
+ "enum": [
63
+ "agent_owner"
64
+ ],
65
+ "x-enum-title": [
66
+ "Owner Provided"
67
+ ],
68
+ "default": "agent_owner"
69
+ }
70
+ },
71
+ "required": [
72
+ "states",
73
+ "enabled"
74
+ ],
75
+ "allOf": [
76
+ {
77
+ "if": {
78
+ "properties": {
79
+ "voice_model": {
80
+ "const": "custom"
81
+ }
82
+ }
83
+ },
84
+ "then": {
85
+ "properties": {
86
+ "voice_model_custom": {
87
+ "type": "array",
88
+ "items": {
89
+ "type": "string"
90
+ },
91
+ "title": "Voice Model (Custom)",
92
+ "x-link": "[Supported Voice Model](https://docs.venice.ai/api-reference/endpoint/audio/speech#body-voice)",
93
+ "description": "You can add one or more custom voice models.",
94
+ "default": [
95
+ "af_heart",
96
+ "bm_lewis"
97
+ ]
98
+ }
99
+ },
100
+ "required": [
101
+ "voice_model_custom"
102
+ ]
103
+ }
104
+ },
105
+ {
106
+ "if": {
107
+ "allOf": [
108
+ {
109
+ "properties": {
110
+ "enabled": {
111
+ "const": true
112
+ }
113
+ }
114
+ },
115
+ {
116
+ "properties": {
117
+ "api_key_provider": {
118
+ "const": "agent_owner"
119
+ }
120
+ }
121
+ }
122
+ ]
123
+ },
124
+ "then": {
125
+ "properties": {
126
+ "api_key": {
127
+ "type": "string",
128
+ "title": "Venice API Key",
129
+ "x-link": "[Get your API key](https://venice.ai/)",
130
+ "x-sensitive": true,
131
+ "description": "API Key for authenticating with the Venice AI API."
132
+ },
133
+ "rate_limit_number": {
134
+ "type": "integer",
135
+ "title": "Rate Limit Number",
136
+ "description": "Number of requests allowed per time window."
137
+ },
138
+ "rate_limit_minutes": {
139
+ "type": "integer",
140
+ "title": "Rate Limit Minutes",
141
+ "description": "Time window in minutes for rate limiting."
142
+ }
143
+ },
144
+ "required": [
145
+ "api_key"
146
+ ]
147
+ }
148
+ }
149
+ ],
150
+ "additionalProperties": true
151
+ }