solana-agent 20.1.3__tar.gz → 20.1.4__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-20.1.3 → solana_agent-20.1.4}/PKG-INFO +3 -3
- {solana_agent-20.1.3 → solana_agent-20.1.4}/README.md +2 -2
- {solana_agent-20.1.3 → solana_agent-20.1.4}/pyproject.toml +1 -1
- {solana_agent-20.1.3 → solana_agent-20.1.4}/LICENSE +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/adapters/llm_adapter.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/client/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/domains/agent.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/domains/routing.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/services/__init__.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/services/agent.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/services/query.py +0 -0
- {solana_agent-20.1.3 → solana_agent-20.1.4}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 20.1.
|
3
|
+
Version: 20.1.4
|
4
4
|
Summary: Agentic IQ
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -48,7 +48,7 @@ Build your AI business in three lines of code!
|
|
48
48
|
* Extensible Tooling
|
49
49
|
* Simple Business Definition
|
50
50
|
* Tested & Secure
|
51
|
-
* Support for MCP
|
51
|
+
* Support for MCP Servers
|
52
52
|
* Built in Python
|
53
53
|
* Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
|
54
54
|
|
@@ -62,7 +62,7 @@ Build your AI business in three lines of code!
|
|
62
62
|
* Powerful tool integration using standard Python packages and/or inline classes
|
63
63
|
* Assigned tools are utilized by agents automatically and effectively
|
64
64
|
* Simple business definition using JSON
|
65
|
-
* Ability to access any MCP via a URL
|
65
|
+
* Ability to access any MCP server via a URL
|
66
66
|
|
67
67
|
## Stack
|
68
68
|
|
@@ -23,7 +23,7 @@ Build your AI business in three lines of code!
|
|
23
23
|
* Extensible Tooling
|
24
24
|
* Simple Business Definition
|
25
25
|
* Tested & Secure
|
26
|
-
* Support for MCP
|
26
|
+
* Support for MCP Servers
|
27
27
|
* Built in Python
|
28
28
|
* Deployed by [CometHeart](https://cometheart.com) & [WalletBubbles](https://walletbubbles.com)
|
29
29
|
|
@@ -37,7 +37,7 @@ Build your AI business in three lines of code!
|
|
37
37
|
* Powerful tool integration using standard Python packages and/or inline classes
|
38
38
|
* Assigned tools are utilized by agents automatically and effectively
|
39
39
|
* Simple business definition using JSON
|
40
|
-
* Ability to access any MCP via a URL
|
40
|
+
* Ability to access any MCP server via a URL
|
41
41
|
|
42
42
|
## Stack
|
43
43
|
|
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-20.1.3 → solana_agent-20.1.4}/solana_agent/interfaces/providers/data_storage.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
|
File without changes
|
File without changes
|