solana-agent 30.0.0__py3-none-any.whl → 30.0.1__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-nano"
37
- DEFAULT_VISION_MODEL = "gpt-4.1-nano"
38
- DEFAULT_PARSE_MODEL = "gpt-4.1-nano"
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.0
3
+ Version: 30.0.1
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
+ * Automated Tool Workflows
66
66
  * Structured Outputs
67
67
  * Knowledge Base
68
68
  * MCP Support
@@ -77,12 +77,11 @@ Build your AI agents in three lines of code!
77
77
 
78
78
  * Easy three lines of code setup
79
79
  * Simple agent definition using JSON
80
- * Fast AI responses
80
+ * Designed for a multi-agent swarm
81
+ * Fast multi-modal processing of text, audio, and images
81
82
  * Solana Integration
82
83
  * MCP tool usage with first-class support for [Zapier](https://zapier.com/mcp)
83
84
  * 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
85
  * Persistent memory that preserves context across all agent interactions
87
86
  * Quick Internet search to answer users' queries
88
87
  * Streamlined message history for all agent interactions
@@ -93,8 +92,8 @@ Build your AI agents in three lines of code!
93
92
  * Integrated Knowledge Base with semantic search and automatic PDF chunking
94
93
  * Input and output guardrails for content filtering, safety, and data sanitization
95
94
  * 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
95
  * Deterministically return structured outputs
96
+ * Sequentially provide tool commands that execute in the proper order
98
97
  * Combine with event-driven systems to create autonomous agents
99
98
 
100
99
  ## Stack
@@ -112,7 +111,7 @@ Build your AI agents in three lines of code!
112
111
  ### AI Models Used
113
112
 
114
113
  **OpenAI**
115
- * [gpt-4.1-nano](https://platform.openai.com/docs/models/gpt-4.1-nano) (agent & router)
114
+ * [gpt-4.1-mini](https://platform.openai.com/docs/models/gpt-4.1-mini) (agent & router)
116
115
  * [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
117
116
  * [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
118
117
  * [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=l1KQch01LhtbKFHz76oXI1Lvz_AM2zZzCMh2qOcbzmM,23253
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.0.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
40
- solana_agent-30.0.0.dist-info/METADATA,sha256=MWvby4A_W0bi7MZS4xwQ5MBKOl3U99kcwctE1_m_sjQ,28557
41
- solana_agent-30.0.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
42
- solana_agent-30.0.0.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
43
- solana_agent-30.0.0.dist-info/RECORD,,
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,,