solana-agent 30.0.4__tar.gz → 30.0.5__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-30.0.4 → solana_agent-30.0.5}/PKG-INFO +7 -8
- {solana_agent-30.0.4 → solana_agent-30.0.5}/README.md +1 -2
- {solana_agent-30.0.4 → solana_agent-30.0.5}/pyproject.toml +8 -8
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/__init__.py +2 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/LICENSE +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/adapters/openai_adapter.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/adapters/pinecone_adapter.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/cli.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/client/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/domains/agent.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/domains/routing.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/guardrails/pii.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/guardrails/guardrails.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/vector_storage.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/services/knowledge_base.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/services/__init__.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/services/agent.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/services/knowledge_base.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/services/query.py +0 -0
- {solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 30.0.
|
3
|
+
Version: 30.0.5
|
4
4
|
Summary: AI Agents for Solana
|
5
5
|
License: MIT
|
6
6
|
Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
|
@@ -15,19 +15,19 @@ Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
16
16
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
17
17
|
Requires-Dist: instructor (==1.8.3)
|
18
|
-
Requires-Dist: llama-index-core (==0.12.
|
18
|
+
Requires-Dist: llama-index-core (==0.12.41)
|
19
19
|
Requires-Dist: llama-index-embeddings-openai (==0.3.1)
|
20
|
-
Requires-Dist: logfire (==3.
|
21
|
-
Requires-Dist: openai (==1.
|
20
|
+
Requires-Dist: logfire (==3.18.0)
|
21
|
+
Requires-Dist: openai (==1.84.0)
|
22
22
|
Requires-Dist: pillow (==11.2.1)
|
23
23
|
Requires-Dist: pinecone (==7.0.2)
|
24
24
|
Requires-Dist: pydantic (>=2)
|
25
25
|
Requires-Dist: pymongo (==4.13.0)
|
26
|
-
Requires-Dist: pypdf (==5.
|
26
|
+
Requires-Dist: pypdf (==5.6.0)
|
27
27
|
Requires-Dist: rich (>=13,<14.0)
|
28
28
|
Requires-Dist: scrubadub (==2.0.1)
|
29
29
|
Requires-Dist: typer (==0.16.0)
|
30
|
-
Requires-Dist: zep-cloud (==2.
|
30
|
+
Requires-Dist: zep-cloud (==2.14.1)
|
31
31
|
Project-URL: Documentation, https://docs.solana-agent.com
|
32
32
|
Project-URL: Homepage, https://solana-agent.com
|
33
33
|
Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
|
@@ -674,8 +674,7 @@ pip install sakit
|
|
674
674
|
### Inline Tool Example
|
675
675
|
|
676
676
|
```python
|
677
|
-
from solana_agent import SolanaAgent
|
678
|
-
from solana_agent.interfaces.plugins.plugins import Tool
|
677
|
+
from solana_agent import SolanaAgent, Tool
|
679
678
|
|
680
679
|
class TestTool(Tool):
|
681
680
|
def __init__(self):
|
@@ -639,8 +639,7 @@ pip install sakit
|
|
639
639
|
### Inline Tool Example
|
640
640
|
|
641
641
|
```python
|
642
|
-
from solana_agent import SolanaAgent
|
643
|
-
from solana_agent.interfaces.plugins.plugins import Tool
|
642
|
+
from solana_agent import SolanaAgent, Tool
|
644
643
|
|
645
644
|
class TestTool(Tool):
|
646
645
|
def __init__(self):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "solana-agent"
|
3
|
-
version = "30.0.
|
3
|
+
version = "30.0.5"
|
4
4
|
description = "AI Agents for Solana"
|
5
5
|
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
|
6
6
|
license = "MIT"
|
@@ -24,23 +24,23 @@ python_paths = [".", "tests"]
|
|
24
24
|
|
25
25
|
[tool.poetry.dependencies]
|
26
26
|
python = ">=3.12,<4.0"
|
27
|
-
openai = "1.
|
27
|
+
openai = "1.84.0"
|
28
28
|
pydantic = ">=2"
|
29
29
|
pymongo = "4.13.0"
|
30
|
-
zep-cloud = "2.
|
30
|
+
zep-cloud = "2.14.1"
|
31
31
|
instructor = "1.8.3"
|
32
32
|
pinecone = "7.0.2"
|
33
|
-
llama-index-core = "0.12.
|
33
|
+
llama-index-core = "0.12.41"
|
34
34
|
llama-index-embeddings-openai = "0.3.1"
|
35
|
-
pypdf = "5.
|
35
|
+
pypdf = "5.6.0"
|
36
36
|
scrubadub = "2.0.1"
|
37
|
-
logfire = "3.
|
37
|
+
logfire = "3.18.0"
|
38
38
|
typer = "0.16.0"
|
39
39
|
rich = ">=13,<14.0"
|
40
40
|
pillow = "11.2.1"
|
41
41
|
|
42
42
|
[tool.poetry.group.dev.dependencies]
|
43
|
-
pytest = "^8.
|
43
|
+
pytest = "^8.4.0"
|
44
44
|
pytest-cov = "^6.1.1"
|
45
45
|
pytest-asyncio = "^1.0.0"
|
46
46
|
pytest-mock = "^3.14.0"
|
@@ -50,7 +50,7 @@ sphinx-rtd-theme = "^3.0.2"
|
|
50
50
|
myst-parser = "^4.0.1"
|
51
51
|
sphinx-autobuild = "^2024.10.3"
|
52
52
|
mongomock = "^4.3.0"
|
53
|
-
ruff = "^0.11.
|
53
|
+
ruff = "^0.11.13"
|
54
54
|
|
55
55
|
[tool.poetry.scripts]
|
56
56
|
solana-agent = "solana_agent.cli:app"
|
@@ -15,6 +15,7 @@ from solana_agent.factories.agent_factory import SolanaAgentFactory
|
|
15
15
|
from solana_agent.plugins.manager import PluginManager
|
16
16
|
from solana_agent.plugins.registry import ToolRegistry
|
17
17
|
from solana_agent.plugins.tools.auto_tool import AutoTool
|
18
|
+
from solana_agent.interfaces.plugins.plugins import Tool
|
18
19
|
from solana_agent.interfaces.guardrails.guardrails import (
|
19
20
|
InputGuardrail,
|
20
21
|
OutputGuardrail,
|
@@ -30,6 +31,7 @@ __all__ = [
|
|
30
31
|
"PluginManager",
|
31
32
|
"ToolRegistry",
|
32
33
|
"AutoTool",
|
34
|
+
"Tool",
|
33
35
|
# Guardrails
|
34
36
|
"InputGuardrail",
|
35
37
|
"OutputGuardrail",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/guardrails/guardrails.py
RENAMED
File without changes
|
File without changes
|
{solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/data_storage.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/providers/vector_storage.py
RENAMED
File without changes
|
File without changes
|
{solana_agent-30.0.4 → solana_agent-30.0.5}/solana_agent/interfaces/services/knowledge_base.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|