solana-agent 11.0.1__tar.gz → 11.1.1__tar.gz
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.
- {solana_agent-11.0.1 → solana_agent-11.1.1}/PKG-INFO +16 -3
- {solana_agent-11.0.1 → solana_agent-11.1.1}/README.md +14 -1
- {solana_agent-11.0.1 → solana_agent-11.1.1}/pyproject.toml +2 -2
- {solana_agent-11.0.1 → solana_agent-11.1.1}/solana_agent/ai.py +1276 -1
- {solana_agent-11.0.1 → solana_agent-11.1.1}/LICENSE +0 -0
- {solana_agent-11.0.1 → solana_agent-11.1.1}/solana_agent/__init__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 11.
|
3
|
+
Version: 11.1.1
|
4
4
|
Summary: The Future of Work
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
16
16
|
Requires-Dist: ntplib (>=0.4.0,<0.5.0)
|
17
|
-
Requires-Dist: openai (>=1.66.
|
17
|
+
Requires-Dist: openai (>=1.66.2,<2.0.0)
|
18
18
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
19
19
|
Requires-Dist: pinecone (>=6.0.1,<7.0.0)
|
20
20
|
Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
@@ -187,6 +187,19 @@ Solana Agent transforms organizations into living systems that continuously lear
|
|
187
187
|
Auto-reassignment system for stalled tickets.
|
188
188
|
Human agent activity tracking and status management.
|
189
189
|
|
190
|
+
- **📅 Comprehensive Scheduling System:**
|
191
|
+
Intelligent task scheduling based on agent specialization and availability.
|
192
|
+
Time-off request management with automated approval workflows.
|
193
|
+
Conflict detection and resolution for overlapping assignments.
|
194
|
+
Schedule optimization for maximum efficiency and workload balancing.
|
195
|
+
Human agent availability tracking with timezone support.
|
196
|
+
Recurring schedule patterns with exception handling.
|
197
|
+
Focus time protection to ensure uninterrupted deep work.
|
198
|
+
Automated task reassignment when agents become unavailable.
|
199
|
+
Command-line interface for viewing and managing schedules.
|
200
|
+
Capacity-aware scheduling to prevent agent overloading.
|
201
|
+
Schedule analytics and efficiency metrics.
|
202
|
+
|
190
203
|
- **📊 Performance Optimization Framework:**
|
191
204
|
Integrated Net Promoter Score (NPS) system for interaction quality measurement.
|
192
205
|
Automatic satisfaction surveys after ticket resolution.
|
@@ -250,7 +263,6 @@ Solana Agent transforms organizations into living systems that continuously lear
|
|
250
263
|
Tool registry for AI agent capability extension.
|
251
264
|
Permission-based tool access for security and control.
|
252
265
|
Clean interface for third-party integrations through standard Python APIs.
|
253
|
-
Built-in internet search capabilities via Perplexity API.
|
254
266
|
Runtime tool discovery without service restarts.
|
255
267
|
|
256
268
|
## Implementation Technologies
|
@@ -312,6 +324,7 @@ config = {
|
|
312
324
|
"api_key": "your-pinecone-key",
|
313
325
|
"index": "your-index"
|
314
326
|
},
|
327
|
+
"plugins_dir": "plugins",
|
315
328
|
"ai_agents": [
|
316
329
|
{
|
317
330
|
"name": "research_specialist",
|
@@ -159,6 +159,19 @@ Solana Agent transforms organizations into living systems that continuously lear
|
|
159
159
|
Auto-reassignment system for stalled tickets.
|
160
160
|
Human agent activity tracking and status management.
|
161
161
|
|
162
|
+
- **📅 Comprehensive Scheduling System:**
|
163
|
+
Intelligent task scheduling based on agent specialization and availability.
|
164
|
+
Time-off request management with automated approval workflows.
|
165
|
+
Conflict detection and resolution for overlapping assignments.
|
166
|
+
Schedule optimization for maximum efficiency and workload balancing.
|
167
|
+
Human agent availability tracking with timezone support.
|
168
|
+
Recurring schedule patterns with exception handling.
|
169
|
+
Focus time protection to ensure uninterrupted deep work.
|
170
|
+
Automated task reassignment when agents become unavailable.
|
171
|
+
Command-line interface for viewing and managing schedules.
|
172
|
+
Capacity-aware scheduling to prevent agent overloading.
|
173
|
+
Schedule analytics and efficiency metrics.
|
174
|
+
|
162
175
|
- **📊 Performance Optimization Framework:**
|
163
176
|
Integrated Net Promoter Score (NPS) system for interaction quality measurement.
|
164
177
|
Automatic satisfaction surveys after ticket resolution.
|
@@ -222,7 +235,6 @@ Solana Agent transforms organizations into living systems that continuously lear
|
|
222
235
|
Tool registry for AI agent capability extension.
|
223
236
|
Permission-based tool access for security and control.
|
224
237
|
Clean interface for third-party integrations through standard Python APIs.
|
225
|
-
Built-in internet search capabilities via Perplexity API.
|
226
238
|
Runtime tool discovery without service restarts.
|
227
239
|
|
228
240
|
## Implementation Technologies
|
@@ -284,6 +296,7 @@ config = {
|
|
284
296
|
"api_key": "your-pinecone-key",
|
285
297
|
"index": "your-index"
|
286
298
|
},
|
299
|
+
"plugins_dir": "plugins",
|
287
300
|
"ai_agents": [
|
288
301
|
{
|
289
302
|
"name": "research_specialist",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "solana-agent"
|
3
|
-
version = "11.
|
3
|
+
version = "11.1.1"
|
4
4
|
description = "The Future of Work"
|
5
5
|
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
|
6
6
|
license = "MIT"
|
@@ -18,7 +18,7 @@ python_paths = [".", "tests"]
|
|
18
18
|
|
19
19
|
[tool.poetry.dependencies]
|
20
20
|
python = ">=3.12,<4.0"
|
21
|
-
openai = "^1.66.
|
21
|
+
openai = "^1.66.2"
|
22
22
|
pydantic = "^2.10.6"
|
23
23
|
pymongo = "^4.11.2"
|
24
24
|
zep-cloud = "^2.6.1"
|