solana-agent 11.3.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.
- solana_agent/ai.py +989 -564
- {solana_agent-11.3.0.dist-info → solana_agent-12.0.0.dist-info}/METADATA +8 -56
- solana_agent-12.0.0.dist-info/RECORD +6 -0
- solana_agent-11.3.0.dist-info/RECORD +0 -6
- {solana_agent-11.3.0.dist-info → solana_agent-12.0.0.dist-info}/LICENSE +0 -0
- {solana_agent-11.3.0.dist-info → solana_agent-12.0.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version:
|
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.
|
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.
|
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.
|
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
|
@@ -278,7 +278,7 @@ Solana Agent transforms organizations into living systems that continuously lear
|
|
278
278
|
- **🔌 Standard Python Plugin System:**
|
279
279
|
Extensible architecture using Python's native package ecosystem.
|
280
280
|
PyPI-compatible plugin distribution with standard dependency management.
|
281
|
-
Entry point registration
|
281
|
+
Entry point registration for seamless discovery.
|
282
282
|
Tool registry for AI agent capability extension.
|
283
283
|
Permission-based tool access for security and control.
|
284
284
|
Clean interface for third-party integrations through standard Python APIs.
|
@@ -314,7 +314,6 @@ Each public method has a docstring for real-time IDE hinting.
|
|
314
314
|
```python
|
315
315
|
from solana_agent import SolanaAgent
|
316
316
|
|
317
|
-
# Define configuration with plugins
|
318
317
|
config = {
|
319
318
|
"organization": {
|
320
319
|
"mission_statement": "To revolutionize knowledge work through AI-human collaboration that puts people first.",
|
@@ -371,9 +370,7 @@ config = {
|
|
371
370
|
"specialization": "Escalated customer issues"
|
372
371
|
}
|
373
372
|
],
|
374
|
-
"
|
375
|
-
"perplexity": "your-perplexity-key" # For internet search plugin
|
376
|
-
}
|
373
|
+
"perplexity_api_key": "your-perplexity-key" # For internet search plugin
|
377
374
|
}
|
378
375
|
|
379
376
|
# Create agent with configuration
|
@@ -384,54 +381,9 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
384
381
|
print(response, end="")
|
385
382
|
```
|
386
383
|
|
387
|
-
##
|
384
|
+
## Solana Agent Kit (plugins collection)
|
388
385
|
|
389
|
-
|
390
|
-
|
391
|
-
```python
|
392
|
-
from solana_agent import Tool
|
393
|
-
|
394
|
-
class MyCustomTool(Tool):
|
395
|
-
@property
|
396
|
-
def name(self) -> str:
|
397
|
-
return "my_custom_tool"
|
398
|
-
|
399
|
-
@property
|
400
|
-
def description(self) -> str:
|
401
|
-
return "Does something amazing"
|
402
|
-
|
403
|
-
@property
|
404
|
-
def parameters_schema(self) -> dict:
|
405
|
-
return {
|
406
|
-
"type": "object",
|
407
|
-
"properties": {
|
408
|
-
"parameter1": {"type": "string", "description": "First parameter"}
|
409
|
-
}
|
410
|
-
}
|
411
|
-
|
412
|
-
def execute(self, **kwargs) -> dict:
|
413
|
-
# Tool implementation here
|
414
|
-
return {"result": "success", "data": "Something amazing"}
|
415
|
-
|
416
|
-
class SolanaPlugin:
|
417
|
-
def get_tools(self):
|
418
|
-
return [MyCustomTool()]
|
419
|
-
```
|
420
|
-
|
421
|
-
`pyproject.toml`
|
422
|
-
|
423
|
-
```toml
|
424
|
-
[build-system]
|
425
|
-
requires = ["setuptools>=42", "wheel"]
|
426
|
-
build-backend = "setuptools.build_meta"
|
427
|
-
|
428
|
-
[project]
|
429
|
-
name = "my-solana-plugin"
|
430
|
-
version = "0.1.0"
|
431
|
-
|
432
|
-
[project.entry-points."solana_agent.plugins"]
|
433
|
-
my_plugin = "my_plugin.plugin:SolanaPlugin"
|
434
|
-
```
|
386
|
+
[Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
|
435
387
|
|
436
388
|
## Example App
|
437
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=W5h6hckGY_NAkqFFOQtuocdTbDfJnqNY9_Z7RYYy2K0,290852
|
3
|
-
solana_agent-11.3.0.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
4
|
-
solana_agent-11.3.0.dist-info/METADATA,sha256=H3juWeX6NQzKqC1mzSLysBURiykMRw_hM9gwfzE-cOE,19603
|
5
|
-
solana_agent-11.3.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
6
|
-
solana_agent-11.3.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|