solana-agent 26.0.0__tar.gz → 27.0.0__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 (35) hide show
  1. {solana_agent-26.0.0 → solana_agent-27.0.0}/PKG-INFO +13 -31
  2. {solana_agent-26.0.0 → solana_agent-27.0.0}/README.md +8 -26
  3. {solana_agent-26.0.0 → solana_agent-27.0.0}/pyproject.toml +5 -5
  4. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/factories/agent_factory.py +11 -31
  5. {solana_agent-26.0.0 → solana_agent-27.0.0}/LICENSE +0 -0
  6. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/__init__.py +0 -0
  7. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/adapters/__init__.py +0 -0
  8. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/adapters/llm_adapter.py +0 -0
  9. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/adapters/mongodb_adapter.py +0 -0
  10. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/client/__init__.py +0 -0
  11. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/client/solana_agent.py +0 -0
  12. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/domains/__init__.py +0 -0
  13. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/domains/agent.py +0 -0
  14. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/domains/routing.py +0 -0
  15. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/factories/__init__.py +0 -0
  16. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/services/query.py +0 -0
  35. {solana_agent-26.0.0 → solana_agent-27.0.0}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 26.0.0
3
+ Version: 27.0.0
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -15,10 +15,10 @@ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
17
  Requires-Dist: instructor (>=1.7.9,<2.0.0)
18
- Requires-Dist: openai (>=1.71.0,<2.0.0)
19
- Requires-Dist: pydantic (>=2.11.2,<3.0.0)
20
- Requires-Dist: pymongo (>=4.11.3,<5.0.0)
21
- Requires-Dist: zep-cloud (>=2.9.0,<3.0.0)
18
+ Requires-Dist: openai (>=1.72.0,<2.0.0)
19
+ Requires-Dist: pydantic (>=2.11.3,<3.0.0)
20
+ Requires-Dist: pymongo (>=4.12.0,<5.0.0)
21
+ Requires-Dist: zep-cloud (>=2.10.0,<3.0.0)
22
22
  Project-URL: Documentation, https://docs.solana-agent.com
23
23
  Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
24
24
  Description-Content-Type: text/markdown
@@ -76,13 +76,13 @@ Build your AI business in three lines of code!
76
76
  ### Tech
77
77
 
78
78
  * [Python](https://python.org) - Programming Language
79
- * [OpenAI](https://openai.com) & [Gemini](https://aistudio.google.com/) - LLM Providers
79
+ * [OpenAI](https://openai.com) - LLM Provider
80
80
  * [MongoDB](https://mongodb.com) - Conversational History (optional)
81
81
  * [Zep Cloud](https://getzep.com) - Conversational Memory (optional)
82
82
 
83
83
  ### LLMs
84
84
 
85
- * [gemini-2.0-flash](https://ai.google.dev/gemini-api/docs/models#gemini-2.0-flash) or [gpt-4o-mini](https://platform.openai.com/docs/models/gpt-4o-mini)
85
+ * [gpt-4o-mini](https://platform.openai.com/docs/models/gpt-4o-mini)
86
86
  * [tts-1](https://platform.openai.com/docs/models/tts-1)
87
87
  * [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe)
88
88
 
@@ -146,9 +146,6 @@ Keep this in mind while designing your agentic systems using Solana Agent.
146
146
  from solana_agent import SolanaAgent
147
147
 
148
148
  config = {
149
- "gemini": {
150
- "api_key": "your-gemini-api-key",
151
- },
152
149
  "openai": {
153
150
  "api_key": "your-openai-api-key",
154
151
  },
@@ -178,9 +175,6 @@ async for response in solana_agent.process("user123", "What are the latest AI de
178
175
  from solana_agent import SolanaAgent
179
176
 
180
177
  config = {
181
- "gemini": {
182
- "api_key": "your-gemini-api-key",
183
- },
184
178
  "openai": {
185
179
  "api_key": "your-openai-api-key",
186
180
  },
@@ -212,9 +206,6 @@ async for response in solana_agent.process("user123", audio_content, output_form
212
206
  from solana_agent import SolanaAgent
213
207
 
214
208
  config = {
215
- "gemini": {
216
- "api_key": "your-gemini-api-key",
217
- },
218
209
  "openai": {
219
210
  "api_key": "your-openai-api-key",
220
211
  },
@@ -244,9 +235,6 @@ async for response in solana_agent.process("user123", "What is the latest news o
244
235
  from solana_agent import SolanaAgent
245
236
 
246
237
  config = {
247
- "gemini": {
248
- "api_key": "your-gemini-api-key",
249
- },
250
238
  "openai": {
251
239
  "api_key": "your-openai-api-key",
252
240
  },
@@ -330,9 +318,6 @@ Tools can be used from plugins like Solana Agent Kit (sakit) or via inline tools
330
318
  from solana_agent import SolanaAgent
331
319
 
332
320
  config = {
333
- "gemini": {
334
- "api_key": "your-gemini-api-key",
335
- },
336
321
  "openai": {
337
322
  "api_key": "your-openai-api-key",
338
323
  },
@@ -415,9 +400,6 @@ class TestTool(Tool):
415
400
  }
416
401
 
417
402
  config = {
418
- "gemini": {
419
- "api_key": "your-gemini-api-key",
420
- },
421
403
  "openai": {
422
404
  "api_key": "your-openai-api-key",
423
405
  },
@@ -457,9 +439,6 @@ This knowledge is accessible to all your AI agents.
457
439
  from solana_agent import SolanaAgent
458
440
 
459
441
  config = {
460
- "gemini": {
461
- "api_key": "your-gemini-api-key",
462
- },
463
442
  "openai": {
464
443
  "api_key": "your-openai-api-key",
465
444
  },
@@ -487,9 +466,6 @@ from solana_agent import SolanaAgent
487
466
  from solana_agent.interfaces.services.routing import RoutingService as RoutingServiceInterface
488
467
 
489
468
  config = {
490
- "gemini": {
491
- "api_key": "your-gemini-api-key",
492
- },
493
469
  "openai": {
494
470
  "api_key": "your-openai-api-key",
495
471
  },
@@ -542,6 +518,12 @@ The official example app written in FastAPI and Next.js
542
518
 
543
519
  [Solana Agent Example App](https://github.com/truemagic-coder/solana-agent-app)
544
520
 
521
+ ## Demo App
522
+
523
+ The official demo app written in FastAPI and Next.js
524
+
525
+ [Solana Agent Demo App](https://demo.solana-agent.com)
526
+
545
527
  ## Agent Framework Comparisons
546
528
 
547
529
  [Compare Python Agent Frameworks](https://github.com/truemagic-coder/solana-agent/wiki/Agent-Framework-Comparisons)
@@ -51,13 +51,13 @@ Build your AI business in three lines of code!
51
51
  ### Tech
52
52
 
53
53
  * [Python](https://python.org) - Programming Language
54
- * [OpenAI](https://openai.com) & [Gemini](https://aistudio.google.com/) - LLM Providers
54
+ * [OpenAI](https://openai.com) - LLM Provider
55
55
  * [MongoDB](https://mongodb.com) - Conversational History (optional)
56
56
  * [Zep Cloud](https://getzep.com) - Conversational Memory (optional)
57
57
 
58
58
  ### LLMs
59
59
 
60
- * [gemini-2.0-flash](https://ai.google.dev/gemini-api/docs/models#gemini-2.0-flash) or [gpt-4o-mini](https://platform.openai.com/docs/models/gpt-4o-mini)
60
+ * [gpt-4o-mini](https://platform.openai.com/docs/models/gpt-4o-mini)
61
61
  * [tts-1](https://platform.openai.com/docs/models/tts-1)
62
62
  * [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe)
63
63
 
@@ -121,9 +121,6 @@ Keep this in mind while designing your agentic systems using Solana Agent.
121
121
  from solana_agent import SolanaAgent
122
122
 
123
123
  config = {
124
- "gemini": {
125
- "api_key": "your-gemini-api-key",
126
- },
127
124
  "openai": {
128
125
  "api_key": "your-openai-api-key",
129
126
  },
@@ -153,9 +150,6 @@ async for response in solana_agent.process("user123", "What are the latest AI de
153
150
  from solana_agent import SolanaAgent
154
151
 
155
152
  config = {
156
- "gemini": {
157
- "api_key": "your-gemini-api-key",
158
- },
159
153
  "openai": {
160
154
  "api_key": "your-openai-api-key",
161
155
  },
@@ -187,9 +181,6 @@ async for response in solana_agent.process("user123", audio_content, output_form
187
181
  from solana_agent import SolanaAgent
188
182
 
189
183
  config = {
190
- "gemini": {
191
- "api_key": "your-gemini-api-key",
192
- },
193
184
  "openai": {
194
185
  "api_key": "your-openai-api-key",
195
186
  },
@@ -219,9 +210,6 @@ async for response in solana_agent.process("user123", "What is the latest news o
219
210
  from solana_agent import SolanaAgent
220
211
 
221
212
  config = {
222
- "gemini": {
223
- "api_key": "your-gemini-api-key",
224
- },
225
213
  "openai": {
226
214
  "api_key": "your-openai-api-key",
227
215
  },
@@ -305,9 +293,6 @@ Tools can be used from plugins like Solana Agent Kit (sakit) or via inline tools
305
293
  from solana_agent import SolanaAgent
306
294
 
307
295
  config = {
308
- "gemini": {
309
- "api_key": "your-gemini-api-key",
310
- },
311
296
  "openai": {
312
297
  "api_key": "your-openai-api-key",
313
298
  },
@@ -390,9 +375,6 @@ class TestTool(Tool):
390
375
  }
391
376
 
392
377
  config = {
393
- "gemini": {
394
- "api_key": "your-gemini-api-key",
395
- },
396
378
  "openai": {
397
379
  "api_key": "your-openai-api-key",
398
380
  },
@@ -432,9 +414,6 @@ This knowledge is accessible to all your AI agents.
432
414
  from solana_agent import SolanaAgent
433
415
 
434
416
  config = {
435
- "gemini": {
436
- "api_key": "your-gemini-api-key",
437
- },
438
417
  "openai": {
439
418
  "api_key": "your-openai-api-key",
440
419
  },
@@ -462,9 +441,6 @@ from solana_agent import SolanaAgent
462
441
  from solana_agent.interfaces.services.routing import RoutingService as RoutingServiceInterface
463
442
 
464
443
  config = {
465
- "gemini": {
466
- "api_key": "your-gemini-api-key",
467
- },
468
444
  "openai": {
469
445
  "api_key": "your-openai-api-key",
470
446
  },
@@ -517,6 +493,12 @@ The official example app written in FastAPI and Next.js
517
493
 
518
494
  [Solana Agent Example App](https://github.com/truemagic-coder/solana-agent-app)
519
495
 
496
+ ## Demo App
497
+
498
+ The official demo app written in FastAPI and Next.js
499
+
500
+ [Solana Agent Demo App](https://demo.solana-agent.com)
501
+
520
502
  ## Agent Framework Comparisons
521
503
 
522
504
  [Compare Python Agent Frameworks](https://github.com/truemagic-coder/solana-agent/wiki/Agent-Framework-Comparisons)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "26.0.0"
3
+ version = "27.0.0"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -23,10 +23,10 @@ python_paths = [".", "tests"]
23
23
 
24
24
  [tool.poetry.dependencies]
25
25
  python = ">=3.12,<4.0"
26
- openai = "^1.71.0"
27
- pydantic = "^2.11.2"
28
- pymongo = "^4.11.3"
29
- zep-cloud = "^2.9.0"
26
+ openai = "^1.72.0"
27
+ pydantic = "^2.11.3"
28
+ pymongo = "^4.12.0"
29
+ zep-cloud = "^2.10.0"
30
30
  instructor = "^1.7.9"
31
31
 
32
32
  [tool.poetry.group.dev.dependencies]
@@ -86,38 +86,18 @@ class SolanaAgentFactory:
86
86
  zep_api_key=config["zep"].get("api_key")
87
87
  )
88
88
 
89
- if "gemini" in config and "api_key" in config["gemini"]:
90
- # Create primary services
91
- agent_service = AgentService(
92
- llm_provider=llm_adapter,
93
- business_mission=business_mission,
94
- config=config,
95
- api_key=config["gemini"]["api_key"],
96
- base_url="https://generativelanguage.googleapis.com/v1beta/openai/",
97
- model="gemini-2.0-flash",
98
- )
99
-
100
- # Create routing service
101
- routing_service = RoutingService(
102
- llm_provider=llm_adapter,
103
- agent_service=agent_service,
104
- api_key=config["gemini"]["api_key"],
105
- base_url="https://generativelanguage.googleapis.com/v1beta/openai/",
106
- model="gemini-2.0-flash",
107
- )
108
- else:
109
- # Create primary services
110
- agent_service = AgentService(
111
- llm_provider=llm_adapter,
112
- business_mission=business_mission,
113
- config=config,
114
- )
89
+ # Create primary services
90
+ agent_service = AgentService(
91
+ llm_provider=llm_adapter,
92
+ business_mission=business_mission,
93
+ config=config,
94
+ )
115
95
 
116
- # Create routing service
117
- routing_service = RoutingService(
118
- llm_provider=llm_adapter,
119
- agent_service=agent_service,
120
- )
96
+ # Create routing service
97
+ routing_service = RoutingService(
98
+ llm_provider=llm_adapter,
99
+ agent_service=agent_service,
100
+ )
121
101
 
122
102
  # Debug the agent service tool registry
123
103
  print(
File without changes