solana-agent 30.0.0__py3-none-any.whl → 30.0.2__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/adapters/openai_adapter.py +3 -3
- {solana_agent-30.0.0.dist-info → solana_agent-30.0.2.dist-info}/METADATA +25 -8
- {solana_agent-30.0.0.dist-info → solana_agent-30.0.2.dist-info}/RECORD +6 -6
- {solana_agent-30.0.0.dist-info → solana_agent-30.0.2.dist-info}/LICENSE +0 -0
- {solana_agent-30.0.0.dist-info → solana_agent-30.0.2.dist-info}/WHEEL +0 -0
- {solana_agent-30.0.0.dist-info → solana_agent-30.0.2.dist-info}/entry_points.txt +0 -0
@@ -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-
|
37
|
-
DEFAULT_VISION_MODEL = "gpt-4.1-
|
38
|
-
DEFAULT_PARSE_MODEL = "gpt-4.1-
|
36
|
+
DEFAULT_CHAT_MODEL = "gpt-4.1-mini"
|
37
|
+
DEFAULT_VISION_MODEL = "gpt-4.1-mini"
|
38
|
+
DEFAULT_PARSE_MODEL = "gpt-4.1-mini"
|
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.
|
3
|
+
Version: 30.0.2
|
4
4
|
Summary: AI Agents for Solana
|
5
5
|
License: MIT
|
6
6
|
Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
|
@@ -61,8 +61,8 @@ Build your AI agents in three lines of code!
|
|
61
61
|
* Intelligent Routing
|
62
62
|
* Business Alignment
|
63
63
|
* Extensible Tooling
|
64
|
-
* Automatic Tool Workflows
|
65
64
|
* Autonomous Operation
|
65
|
+
* Smart Workflows
|
66
66
|
* Structured Outputs
|
67
67
|
* Knowledge Base
|
68
68
|
* MCP Support
|
@@ -73,16 +73,34 @@ 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
|
-
*
|
81
|
-
*
|
98
|
+
* Designed for a multi-agent swarm
|
99
|
+
* Fast multi-modal processing of text, audio, and images
|
100
|
+
* Smart workflows that keep flows simple and smart
|
101
|
+
* Interact with the Solana blockchain with many useful tools
|
82
102
|
* MCP tool usage with first-class support for [Zapier](https://zapier.com/mcp)
|
83
103
|
* Integrated observability and tracing via [Pydantic Logfire](https://pydantic.dev/logfire)
|
84
|
-
* Designed for a multi-agent swarm
|
85
|
-
* Seamless streaming with real-time multi-modal processing of text, audio, and images
|
86
104
|
* Persistent memory that preserves context across all agent interactions
|
87
105
|
* Quick Internet search to answer users' queries
|
88
106
|
* Streamlined message history for all agent interactions
|
@@ -93,7 +111,6 @@ Build your AI agents in three lines of code!
|
|
93
111
|
* Integrated Knowledge Base with semantic search and automatic PDF chunking
|
94
112
|
* Input and output guardrails for content filtering, safety, and data sanitization
|
95
113
|
* Generate custom images based on text prompts with storage on S3 compatible services
|
96
|
-
* Automatic sequential tool workflows allowing agents to chain multiple tools
|
97
114
|
* Deterministically return structured outputs
|
98
115
|
* Combine with event-driven systems to create autonomous agents
|
99
116
|
|
@@ -112,7 +129,7 @@ Build your AI agents in three lines of code!
|
|
112
129
|
### AI Models Used
|
113
130
|
|
114
131
|
**OpenAI**
|
115
|
-
* [gpt-4.1-
|
132
|
+
* [gpt-4.1-mini](https://platform.openai.com/docs/models/gpt-4.1-mini) (agent & router)
|
116
133
|
* [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
|
117
134
|
* [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
|
118
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=
|
4
|
+
solana_agent/adapters/openai_adapter.py,sha256=86gJa3zyRv2XNA7vdi7PYY1n814A0JTZDWzusA1-720,23253
|
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.
|
40
|
-
solana_agent-30.0.
|
41
|
-
solana_agent-30.0.
|
42
|
-
solana_agent-30.0.
|
43
|
-
solana_agent-30.0.
|
39
|
+
solana_agent-30.0.2.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
40
|
+
solana_agent-30.0.2.dist-info/METADATA,sha256=MVgmGFE_MZWhD4-9UoJYNoP9ZGL6myTHnjNG7LbTwN8,29592
|
41
|
+
solana_agent-30.0.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
42
|
+
solana_agent-30.0.2.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
|
43
|
+
solana_agent-30.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|