solana-agent 30.0.1__py3-none-any.whl → 30.0.3__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.
@@ -33,9 +33,9 @@ logger = logging.getLogger(__name__)
33
33
 
34
34
  T = TypeVar("T", bound=BaseModel)
35
35
 
36
- DEFAULT_CHAT_MODEL = "gpt-4.1-mini"
37
- DEFAULT_VISION_MODEL = "gpt-4.1-mini"
38
- DEFAULT_PARSE_MODEL = "gpt-4.1-mini"
36
+ DEFAULT_CHAT_MODEL = "gpt-4.1"
37
+ DEFAULT_VISION_MODEL = "gpt-4.1"
38
+ DEFAULT_PARSE_MODEL = "gpt-4.1"
39
39
  DEFAULT_EMBEDDING_MODEL = "text-embedding-3-large"
40
40
  DEFAULT_EMBEDDING_DIMENSIONS = 3072
41
41
  DEFAULT_TRANSCRIPTION_MODEL = "gpt-4o-mini-transcribe"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 30.0.1
3
+ Version: 30.0.3
4
4
  Summary: AI Agents for Solana
5
5
  License: MIT
6
6
  Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
@@ -62,7 +62,7 @@ Build your AI agents in three lines of code!
62
62
  * Business Alignment
63
63
  * Extensible Tooling
64
64
  * Autonomous Operation
65
- * Automated Tool Workflows
65
+ * Smart Workflows
66
66
  * Structured Outputs
67
67
  * Knowledge Base
68
68
  * MCP Support
@@ -73,13 +73,32 @@ Build your AI agents in three lines of code!
73
73
  * Built in Python
74
74
  * Powers [CometHeart](https://cometheart.com)
75
75
 
76
+ ## Unique Selling Proposition (USP) - Smart Workflows
77
+
78
+ Solana Agent is the first AI agent framework to deliver truly intelligent, dynamic workflows.
79
+
80
+ With Solana Agent, you can seamlessly define and integrate tools — such as Zapier MCP (for sending emails via Mailgun) and the Solana Balance tool — directly into your agent’s capabilities.
81
+
82
+ Then prompt your agent with natural language, for example:
83
+ “Get my balances for my Solana wallet and then email them to me.”
84
+
85
+ Solana Agent will automatically orchestrate the workflow:
86
+ It will first use the Solana Balance tool to retrieve your balances, then invoke the Zapier MCP tool to send the results via email — all without manual intervention or brittle, hardcoded logic.
87
+
88
+ You can also chain tool outputs (structured or unstructured) as inputs for subsequent tasks, enabling complex, multi-step automations with ease.
89
+
90
+ **The result?**
91
+ A framework that is both powerful and simple — eliminating the need for static, fragile workflow definitions.
92
+ Smart workflows are as easy as combining your tools and prompts.
93
+
76
94
  ## Features
77
95
 
78
96
  * Easy three lines of code setup
79
97
  * Simple agent definition using JSON
80
98
  * Designed for a multi-agent swarm
81
99
  * Fast multi-modal processing of text, audio, and images
82
- * Solana Integration
100
+ * Smart workflows that keep flows simple and smart
101
+ * Interact with the Solana blockchain with many useful tools
83
102
  * MCP tool usage with first-class support for [Zapier](https://zapier.com/mcp)
84
103
  * Integrated observability and tracing via [Pydantic Logfire](https://pydantic.dev/logfire)
85
104
  * Persistent memory that preserves context across all agent interactions
@@ -93,7 +112,6 @@ Build your AI agents in three lines of code!
93
112
  * Input and output guardrails for content filtering, safety, and data sanitization
94
113
  * Generate custom images based on text prompts with storage on S3 compatible services
95
114
  * Deterministically return structured outputs
96
- * Sequentially provide tool commands that execute in the proper order
97
115
  * Combine with event-driven systems to create autonomous agents
98
116
 
99
117
  ## Stack
@@ -111,7 +129,7 @@ Build your AI agents in three lines of code!
111
129
  ### AI Models Used
112
130
 
113
131
  **OpenAI**
114
- * [gpt-4.1-mini](https://platform.openai.com/docs/models/gpt-4.1-mini) (agent & router)
132
+ * [gpt-4.1](https://platform.openai.com/docs/models/gpt-4.1) (agent & router)
115
133
  * [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
116
134
  * [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
117
135
  * [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe) (audio transcription)
@@ -1,7 +1,7 @@
1
1
  solana_agent/__init__.py,sha256=g83qhMOCwcWL19V4CYbQwl0Ykpb0xn49OUh05i-pu3g,1001
2
2
  solana_agent/adapters/__init__.py,sha256=tiEEuuy0NF3ngc_tGEcRTt71zVI58v3dYY9RvMrF2Cg,204
3
3
  solana_agent/adapters/mongodb_adapter.py,sha256=Hq3S8VzfLmnPjV40z8yJXGqUamOJcX5GbOMd-1nNWO4,3175
4
- solana_agent/adapters/openai_adapter.py,sha256=86gJa3zyRv2XNA7vdi7PYY1n814A0JTZDWzusA1-720,23253
4
+ solana_agent/adapters/openai_adapter.py,sha256=Vc2lizpJeyZH2T7GX-iLpUUmn2gsw5b2vQZJ2gwL1ng,23238
5
5
  solana_agent/adapters/pinecone_adapter.py,sha256=XlfOpoKHwzpaU4KZnovO2TnEYbsw-3B53ZKQDtBeDgU,23847
6
6
  solana_agent/cli.py,sha256=FGvTIQmKLp6XsQdyKtuhIIfbBtMmcCCXfigNrj4bzMc,4704
7
7
  solana_agent/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -36,8 +36,8 @@ solana_agent/services/agent.py,sha256=acfauSIdDQdwuvqyDpx6VryQpL3nNfss3NlVtnI_kU
36
36
  solana_agent/services/knowledge_base.py,sha256=ZvOPrSmcNDgUzz4bJIQ4LeRl9vMZiK9hOfs71IpB7Bk,32735
37
37
  solana_agent/services/query.py,sha256=3v5Ym8UqL0rfOC-0MWHALAsS2jVWdpUR3A-YI9n0xyo,18771
38
38
  solana_agent/services/routing.py,sha256=C5Ku4t9TqvY7S8wlUPMTC04HCrT4Ib3E8Q8yX0lVU_s,7137
39
- solana_agent-30.0.1.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
40
- solana_agent-30.0.1.dist-info/METADATA,sha256=zKVDaxiKyQOp4QWit_dROTP-STHYJXQHuapK2wkBWQA,28500
41
- solana_agent-30.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
42
- solana_agent-30.0.1.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
43
- solana_agent-30.0.1.dist-info/RECORD,,
39
+ solana_agent-30.0.3.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
40
+ solana_agent-30.0.3.dist-info/METADATA,sha256=hQN6aiYl2SM2Q9-qep-TRghVii7bxxWb3vbtVD_goBI,29582
41
+ solana_agent-30.0.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
42
+ solana_agent-30.0.3.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
43
+ solana_agent-30.0.3.dist-info/RECORD,,