solana-agent 26.0.0__py3-none-any.whl → 27.0.0__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/factories/agent_factory.py +11 -31
- {solana_agent-26.0.0.dist-info → solana_agent-27.0.0.dist-info}/METADATA +13 -31
- {solana_agent-26.0.0.dist-info → solana_agent-27.0.0.dist-info}/RECORD +5 -5
- {solana_agent-26.0.0.dist-info → solana_agent-27.0.0.dist-info}/LICENSE +0 -0
- {solana_agent-26.0.0.dist-info → solana_agent-27.0.0.dist-info}/WHEEL +0 -0
@@ -86,38 +86,18 @@ class SolanaAgentFactory:
|
|
86
86
|
zep_api_key=config["zep"].get("api_key")
|
87
87
|
)
|
88
88
|
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
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
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
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(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version:
|
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.
|
19
|
-
Requires-Dist: pydantic (>=2.11.
|
20
|
-
Requires-Dist: pymongo (>=4.
|
21
|
-
Requires-Dist: zep-cloud (>=2.
|
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)
|
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
|
-
* [
|
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)
|
@@ -8,7 +8,7 @@ solana_agent/domains/__init__.py,sha256=HiC94wVPRy-QDJSSRywCRrhrFfTBeHjfi5z-QfZv
|
|
8
8
|
solana_agent/domains/agent.py,sha256=WTo-pEc66V6D_35cpDE-kTsw1SJM-dtylPZ7em5em7Q,2659
|
9
9
|
solana_agent/domains/routing.py,sha256=UDlgTjUoC9xIBVYu_dnf9-KG_bBgdEXAv_UtDOrYo0w,650
|
10
10
|
solana_agent/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
solana_agent/factories/agent_factory.py,sha256=
|
11
|
+
solana_agent/factories/agent_factory.py,sha256=wYfVqN99v9coh5nUWsmCKVCzNcuOkLTorIHRq5v0scw,5496
|
12
12
|
solana_agent/interfaces/__init__.py,sha256=IQs1WIM1FeKP1-kY2FEfyhol_dB-I-VAe2rD6jrVF6k,355
|
13
13
|
solana_agent/interfaces/client/client.py,sha256=CB8YuSsn-Lvinrb12huyIVaFpJqVDh8EHsHJi9SVXM4,1690
|
14
14
|
solana_agent/interfaces/plugins/plugins.py,sha256=T8HPBsekmzVwfU_Rizp-vtzAeYkMlKMYD7U9d0Wjq9c,3338
|
@@ -29,7 +29,7 @@ solana_agent/services/__init__.py,sha256=ab_NXJmwYUCmCrCzuTlZ47bJZINW0Y0F5jfQ9Oo
|
|
29
29
|
solana_agent/services/agent.py,sha256=M1Aukr9xKGP9mL0jM_JqdRdWSqG4LxF0y0PDAzE_fpY,24608
|
30
30
|
solana_agent/services/query.py,sha256=bhB6bZKWqsEf_fLXfsSC57q0CtmeDI6jUlxc9a0LGJw,11099
|
31
31
|
solana_agent/services/routing.py,sha256=hC5t98KZPHty9kMX27KcuxcmZlwjm0g59uMkR8n7k_w,6818
|
32
|
-
solana_agent-
|
33
|
-
solana_agent-
|
34
|
-
solana_agent-
|
35
|
-
solana_agent-
|
32
|
+
solana_agent-27.0.0.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
33
|
+
solana_agent-27.0.0.dist-info/METADATA,sha256=CB1bwsxwRz9Md1Il37MT2N4cqFGsqg59qyXTjfifDJ0,18577
|
34
|
+
solana_agent-27.0.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
35
|
+
solana_agent-27.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|