solana-agent 11.2.0__py3-none-any.whl → 12.0.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 11.2.0
3
+ Version: 12.0.0
4
4
  Summary: The Future of Work
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -14,14 +14,14 @@ 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.2,<2.0.0)
17
+ Requires-Dist: openai (>=1.66.3,<2.0.0)
18
18
  Requires-Dist: pandas (>=2.2.3,<3.0.0)
19
- Requires-Dist: pinecone (>=6.0.1,<7.0.0)
19
+ Requires-Dist: pinecone (>=6.0.2,<7.0.0)
20
20
  Requires-Dist: pydantic (>=2.10.6,<3.0.0)
21
21
  Requires-Dist: pymongo (>=4.11.2,<5.0.0)
22
22
  Requires-Dist: qdrant-client (>=1.13.3,<2.0.0)
23
23
  Requires-Dist: requests (>=2.32.3,<3.0.0)
24
- Requires-Dist: zep-cloud (>=2.6.1,<3.0.0)
24
+ Requires-Dist: zep-cloud (>=2.7.0,<3.0.0)
25
25
  Requires-Dist: zep-python (>=2.0.2,<3.0.0)
26
26
  Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
27
27
  Description-Content-Type: text/markdown
@@ -200,6 +200,19 @@ Solana Agent transforms organizations into living systems that continuously lear
200
200
  Capacity-aware scheduling to prevent agent overloading.
201
201
  Schedule analytics and efficiency metrics.
202
202
 
203
+ - **🏢 Comprehensive Resource Management System:**
204
+ Complete resource scheduling and booking infrastructure.
205
+ Resource categorization with customizable attributes and capabilities.
206
+ Intelligent conflict detection and prevention for bookings.
207
+ Location-aware resource tracking with hierarchical location model.
208
+ Availability management with customizable recurring schedules.
209
+ User-level booking authorization with permission controls.
210
+ Resource discovery by type, capacity, and available features.
211
+ Command-line interface for resource management.
212
+ Booking lifecycle management with confirmation and cancellation.
213
+ Time-aware resource scheduling across time zones.
214
+ Resource utilization analytics and optimization.
215
+
203
216
  - **📊 Performance Optimization Framework:**
204
217
  Integrated Net Promoter Score (NPS) system for interaction quality measurement.
205
218
  Automatic satisfaction surveys after ticket resolution.
@@ -212,8 +225,14 @@ Solana Agent transforms organizations into living systems that continuously lear
212
225
  Automated complexity assessment for incoming tasks.
213
226
  Task decomposition into subtasks with dependencies.
214
227
  Intelligent workload distribution based on agent capacity.
228
+ Resource requirements identification for each subtask.
229
+ Automatic resource allocation based on task needs.
230
+ Resource-aware scheduling to prevent conflicts.
231
+ Integrated resource and agent availability checking.
232
+ Command-line interface for resource allocation to tasks.
215
233
  Visual progress tracking with completion estimates.
216
- Prioritization based on urgency, importance, and dependencies.
234
+ Prioritization based on urgency, importance, and dependencies.
235
+ Resource utilization optimization across project timelines.
217
236
 
218
237
  - **🛡️ Governance Framework:**
219
238
  Define organization-wide values and operating principles in code.
@@ -259,7 +278,7 @@ Solana Agent transforms organizations into living systems that continuously lear
259
278
  - **🔌 Standard Python Plugin System:**
260
279
  Extensible architecture using Python's native package ecosystem.
261
280
  PyPI-compatible plugin distribution with standard dependency management.
262
- Entry point registration (`solana_agent.plugins`) for seamless discovery.
281
+ Entry point registration for seamless discovery.
263
282
  Tool registry for AI agent capability extension.
264
283
  Permission-based tool access for security and control.
265
284
  Clean interface for third-party integrations through standard Python APIs.
@@ -295,7 +314,6 @@ Each public method has a docstring for real-time IDE hinting.
295
314
  ```python
296
315
  from solana_agent import SolanaAgent
297
316
 
298
- # Define configuration with plugins
299
317
  config = {
300
318
  "organization": {
301
319
  "mission_statement": "To revolutionize knowledge work through AI-human collaboration that puts people first.",
@@ -352,9 +370,7 @@ config = {
352
370
  "specialization": "Escalated customer issues"
353
371
  }
354
372
  ],
355
- "api_keys": {
356
- "perplexity": "your-perplexity-key" # For internet search plugin
357
- }
373
+ "perplexity_api_key": "your-perplexity-key" # For internet search plugin
358
374
  }
359
375
 
360
376
  # Create agent with configuration
@@ -365,54 +381,9 @@ async for response in solana_agent.process("user123", "What are the latest AI de
365
381
  print(response, end="")
366
382
  ```
367
383
 
368
- ## Example Plugin
369
-
370
- `my_plugin/plugin.py`
371
-
372
- ```python
373
- from solana_agent import Tool
374
-
375
- class MyCustomTool(Tool):
376
- @property
377
- def name(self) -> str:
378
- return "my_custom_tool"
379
-
380
- @property
381
- def description(self) -> str:
382
- return "Does something amazing"
383
-
384
- @property
385
- def parameters_schema(self) -> dict:
386
- return {
387
- "type": "object",
388
- "properties": {
389
- "parameter1": {"type": "string", "description": "First parameter"}
390
- }
391
- }
392
-
393
- def execute(self, **kwargs) -> dict:
394
- # Tool implementation here
395
- return {"result": "success", "data": "Something amazing"}
396
-
397
- class SolanaPlugin:
398
- def get_tools(self):
399
- return [MyCustomTool()]
400
- ```
401
-
402
- `pyproject.toml`
403
-
404
- ```toml
405
- [build-system]
406
- requires = ["setuptools>=42", "wheel"]
407
- build-backend = "setuptools.build_meta"
384
+ ## Solana Agent Kit (plugins collection)
408
385
 
409
- [project]
410
- name = "my-solana-plugin"
411
- version = "0.1.0"
412
-
413
- [project.entry-points."solana_agent.plugins"]
414
- my_plugin = "my_plugin.plugin:SolanaPlugin"
415
- ```
386
+ [Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
416
387
 
417
388
  ## Example App
418
389
 
@@ -0,0 +1,6 @@
1
+ solana_agent/__init__.py,sha256=zpfnWqANd3OHGWm7NCF5Y6m01BWG4NkNk8SK9Ex48nA,18
2
+ solana_agent/ai.py,sha256=Bk92oo-oCVXVgWLJZS63INen_QAqBLJolM3uAaBeXj0,311887
3
+ solana_agent-12.0.0.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
4
+ solana_agent-12.0.0.dist-info/METADATA,sha256=gBwlfRMGAb8je27czLgoMI6Ayg2HnifFqEGY3sC62zI,18619
5
+ solana_agent-12.0.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
6
+ solana_agent-12.0.0.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- solana_agent/__init__.py,sha256=zpfnWqANd3OHGWm7NCF5Y6m01BWG4NkNk8SK9Ex48nA,18
2
- solana_agent/ai.py,sha256=SPHPCQPqk1wuBymB3StNRYp84s9pAa7LOeROBSHiJfQ,243608
3
- solana_agent-11.2.0.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
4
- solana_agent-11.2.0.dist-info/METADATA,sha256=quIlcgag0-hHIAy7-ibsh-JWxpBmravXIeoCp4zXxDw,18468
5
- solana_agent-11.2.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
6
- solana_agent-11.2.0.dist-info/RECORD,,