solana-agent 27.3.8__tar.gz → 27.3.9__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.
Files changed (39) hide show
  1. {solana_agent-27.3.8 → solana_agent-27.3.9}/PKG-INFO +3 -4
  2. {solana_agent-27.3.8 → solana_agent-27.3.9}/README.md +2 -3
  3. {solana_agent-27.3.8 → solana_agent-27.3.9}/pyproject.toml +1 -1
  4. {solana_agent-27.3.8 → solana_agent-27.3.9}/LICENSE +0 -0
  5. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/__init__.py +0 -0
  6. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/adapters/mongodb_adapter.py +0 -0
  8. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/adapters/openai_adapter.py +0 -0
  9. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/adapters/pinecone_adapter.py +0 -0
  10. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/client/__init__.py +0 -0
  11. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/client/solana_agent.py +0 -0
  12. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/domains/__init__.py +0 -0
  13. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/domains/agent.py +0 -0
  14. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/domains/routing.py +0 -0
  15. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/factories/__init__.py +0 -0
  16. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/factories/agent_factory.py +0 -0
  17. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/__init__.py +0 -0
  18. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/client/client.py +0 -0
  19. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/plugins/plugins.py +0 -0
  20. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/providers/data_storage.py +0 -0
  21. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/providers/llm.py +0 -0
  22. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/providers/memory.py +0 -0
  23. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/providers/vector_storage.py +0 -0
  24. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/services/agent.py +0 -0
  25. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/services/knowledge_base.py +0 -0
  26. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/services/query.py +0 -0
  27. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/interfaces/services/routing.py +0 -0
  28. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/plugins/__init__.py +0 -0
  29. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/plugins/manager.py +0 -0
  30. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/plugins/registry.py +0 -0
  31. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/plugins/tools/__init__.py +0 -0
  32. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/plugins/tools/auto_tool.py +0 -0
  33. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/repositories/__init__.py +0 -0
  34. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/repositories/memory.py +0 -0
  35. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/services/__init__.py +0 -0
  36. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/services/agent.py +0 -0
  37. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/services/knowledge_base.py +0 -0
  38. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/services/query.py +0 -0
  39. {solana_agent-27.3.8 → solana_agent-27.3.9}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 27.3.8
3
+ Version: 27.3.9
4
4
  Summary: AI Agents for Solana
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -47,6 +47,7 @@ Build your AI agents in three lines of code!
47
47
 
48
48
  ## Why?
49
49
  * Three lines of code setup
50
+ * Simple Agent Definition
50
51
  * Fast Responses
51
52
  * Solana Ecosystem Integration
52
53
  * Multi-Agent Swarm
@@ -56,7 +57,6 @@ Build your AI agents in three lines of code!
56
57
  * Intelligent Routing
57
58
  * Business Alignment
58
59
  * Extensible Tooling
59
- * Simple Business Definition
60
60
  * Knowledge Base
61
61
  * MCP Support
62
62
  * Tested & Secure
@@ -66,12 +66,12 @@ Build your AI agents in three lines of code!
66
66
  ## Features
67
67
 
68
68
  * Easy three lines of code setup
69
+ * Simple agent definition using JSON
69
70
  * Fast AI responses
70
71
  * Solana Ecosystem Integration via [AgentiPy](https://github.com/niceberginc/agentipy)
71
72
  * MCP tool usage with first-class support for [Zapier](https://zapier.com/mcp)
72
73
  * Designed for a multi-agent swarm
73
74
  * Seamless text and audio streaming with real-time multi-modal processing
74
- * Configurable audio voice characteristics via prompting
75
75
  * Persistent memory that preserves context across all agent interactions
76
76
  * Quick Internet search to answer users' queries
77
77
  * Streamlined message history for all agent interactions
@@ -79,7 +79,6 @@ Build your AI agents in three lines of code!
79
79
  * Unified value system ensuring brand-aligned agent responses
80
80
  * Powerful tool integration using standard Python packages and/or inline tools
81
81
  * Assigned tools are utilized by agents automatically and effectively
82
- * Simple business definition using JSON
83
82
  * Integrated Knowledge Base with semantic search and automatic PDF chunking
84
83
 
85
84
  ## Stack
@@ -18,6 +18,7 @@ Build your AI agents in three lines of code!
18
18
 
19
19
  ## Why?
20
20
  * Three lines of code setup
21
+ * Simple Agent Definition
21
22
  * Fast Responses
22
23
  * Solana Ecosystem Integration
23
24
  * Multi-Agent Swarm
@@ -27,7 +28,6 @@ Build your AI agents in three lines of code!
27
28
  * Intelligent Routing
28
29
  * Business Alignment
29
30
  * Extensible Tooling
30
- * Simple Business Definition
31
31
  * Knowledge Base
32
32
  * MCP Support
33
33
  * Tested & Secure
@@ -37,12 +37,12 @@ Build your AI agents in three lines of code!
37
37
  ## Features
38
38
 
39
39
  * Easy three lines of code setup
40
+ * Simple agent definition using JSON
40
41
  * Fast AI responses
41
42
  * Solana Ecosystem Integration via [AgentiPy](https://github.com/niceberginc/agentipy)
42
43
  * MCP tool usage with first-class support for [Zapier](https://zapier.com/mcp)
43
44
  * Designed for a multi-agent swarm
44
45
  * Seamless text and audio streaming with real-time multi-modal processing
45
- * Configurable audio voice characteristics via prompting
46
46
  * Persistent memory that preserves context across all agent interactions
47
47
  * Quick Internet search to answer users' queries
48
48
  * Streamlined message history for all agent interactions
@@ -50,7 +50,6 @@ Build your AI agents in three lines of code!
50
50
  * Unified value system ensuring brand-aligned agent responses
51
51
  * Powerful tool integration using standard Python packages and/or inline tools
52
52
  * Assigned tools are utilized by agents automatically and effectively
53
- * Simple business definition using JSON
54
53
  * Integrated Knowledge Base with semantic search and automatic PDF chunking
55
54
 
56
55
  ## Stack
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "27.3.8"
3
+ version = "27.3.9"
4
4
  description = "AI Agents for Solana"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes