solana-agent 30.0.7__py3-none-any.whl → 30.0.9__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 +0 -42
- {solana_agent-30.0.7.dist-info → solana_agent-30.0.9.dist-info}/METADATA +10 -9
- {solana_agent-30.0.7.dist-info → solana_agent-30.0.9.dist-info}/RECORD +6 -6
- {solana_agent-30.0.7.dist-info → solana_agent-30.0.9.dist-info}/LICENSE +0 -0
- {solana_agent-30.0.7.dist-info → solana_agent-30.0.9.dist-info}/WHEEL +0 -0
- {solana_agent-30.0.7.dist-info → solana_agent-30.0.9.dist-info}/entry_points.txt +0 -0
@@ -174,48 +174,6 @@ class SolanaAgentFactory:
|
|
174
174
|
agent_service=agent_service,
|
175
175
|
)
|
176
176
|
|
177
|
-
if "gemini" in config and "api_key" in config["gemini"]:
|
178
|
-
# Create primary services
|
179
|
-
agent_service = AgentService(
|
180
|
-
llm_provider=llm_adapter,
|
181
|
-
business_mission=business_mission,
|
182
|
-
config=config,
|
183
|
-
api_key=config["gemini"]["api_key"],
|
184
|
-
base_url="https://generativelanguage.googleapis.com/v1beta/openai/",
|
185
|
-
model="gemini-2.5-flash-preview-05-20",
|
186
|
-
output_guardrails=output_guardrails,
|
187
|
-
) # pragma: no cover
|
188
|
-
|
189
|
-
# Create routing service
|
190
|
-
routing_service = RoutingService(
|
191
|
-
llm_provider=llm_adapter,
|
192
|
-
agent_service=agent_service,
|
193
|
-
api_key=config["gemini"]["api_key"],
|
194
|
-
base_url="https://generativelanguage.googleapis.com/v1beta/openai/",
|
195
|
-
model="gemini-2.5-flash-preview-05-20",
|
196
|
-
) # pragma: no cover
|
197
|
-
|
198
|
-
elif "ollama" in config and "api_key" in config["ollama"]:
|
199
|
-
# Create primary services
|
200
|
-
agent_service = AgentService(
|
201
|
-
llm_provider=llm_adapter,
|
202
|
-
business_mission=business_mission,
|
203
|
-
config=config,
|
204
|
-
api_key=config["ollama"]["api_key"],
|
205
|
-
base_url="http://localhost:11434/v1",
|
206
|
-
model="gemma3:4b-it-qat",
|
207
|
-
output_guardrails=output_guardrails,
|
208
|
-
) # pragma: no cover
|
209
|
-
|
210
|
-
# Create routing service
|
211
|
-
routing_service = RoutingService(
|
212
|
-
llm_provider=llm_adapter,
|
213
|
-
agent_service=agent_service,
|
214
|
-
api_key=config["ollama"]["api_key"],
|
215
|
-
base_url="http://localhost:11434/v1",
|
216
|
-
model="gemma3:4b-it-qat",
|
217
|
-
) # pragma: no cover
|
218
|
-
|
219
177
|
# Debug the agent service tool registry
|
220
178
|
logger.debug( # Use logger.debug
|
221
179
|
f"Agent service tools after initialization: {agent_service.tool_registry.list_all_tools()}"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 30.0.
|
3
|
+
Version: 30.0.9
|
4
4
|
Summary: AI Agents for Solana
|
5
5
|
License: MIT
|
6
6
|
Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
|
@@ -14,20 +14,20 @@ Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
16
16
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
17
|
-
Requires-Dist: instructor (==1.
|
18
|
-
Requires-Dist: llama-index-core (==0.12.
|
17
|
+
Requires-Dist: instructor (==1.9.2)
|
18
|
+
Requires-Dist: llama-index-core (==0.12.48)
|
19
19
|
Requires-Dist: llama-index-embeddings-openai (==0.3.1)
|
20
|
-
Requires-Dist: logfire (==3.
|
21
|
-
Requires-Dist: openai (==1.
|
22
|
-
Requires-Dist: pillow (==11.
|
23
|
-
Requires-Dist: pinecone (==7.
|
20
|
+
Requires-Dist: logfire (==3.23.0)
|
21
|
+
Requires-Dist: openai (==1.93.3)
|
22
|
+
Requires-Dist: pillow (==11.3.0)
|
23
|
+
Requires-Dist: pinecone (==7.3.0)
|
24
24
|
Requires-Dist: pydantic (>=2)
|
25
25
|
Requires-Dist: pymongo (==4.13.2)
|
26
|
-
Requires-Dist: pypdf (==5.
|
26
|
+
Requires-Dist: pypdf (==5.7.0)
|
27
27
|
Requires-Dist: rich (>=13,<14.0)
|
28
28
|
Requires-Dist: scrubadub (==2.0.1)
|
29
29
|
Requires-Dist: typer (==0.16.0)
|
30
|
-
Requires-Dist: zep-cloud (==2.
|
30
|
+
Requires-Dist: zep-cloud (==2.17.0)
|
31
31
|
Project-URL: Documentation, https://docs.solana-agent.com
|
32
32
|
Project-URL: Homepage, https://solana-agent.com
|
33
33
|
Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
|
@@ -72,6 +72,7 @@ Build your AI agents in three lines of code!
|
|
72
72
|
* Tested & Secure
|
73
73
|
* Built in Python
|
74
74
|
* Powers [CometHeart](https://cometheart.com)
|
75
|
+
* Powers [Solana Agent Wallet](https://solana-agent.com)
|
75
76
|
|
76
77
|
## Unique Selling Proposition (USP) - Smart Workflows
|
77
78
|
|
@@ -10,7 +10,7 @@ solana_agent/domains/__init__.py,sha256=HiC94wVPRy-QDJSSRywCRrhrFfTBeHjfi5z-QfZv
|
|
10
10
|
solana_agent/domains/agent.py,sha256=3Q1wg4eIul0CPpaYBOjEthKTfcdhf1SAiWc2R-IMGO8,2561
|
11
11
|
solana_agent/domains/routing.py,sha256=1yR4IswGcmREGgbOOI6TKCfuM7gYGOhQjLkBqnZ-rNo,582
|
12
12
|
solana_agent/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
solana_agent/factories/agent_factory.py,sha256=
|
13
|
+
solana_agent/factories/agent_factory.py,sha256=kduhtCMAxiPmCW_wx-hGGlhehRRGt4OBKY8r-R-LZnI,13246
|
14
14
|
solana_agent/guardrails/pii.py,sha256=FCz1IC3mmkr41QFFf5NaC0fwJrVkwFsxgyOCS2POO5I,4428
|
15
15
|
solana_agent/interfaces/__init__.py,sha256=IQs1WIM1FeKP1-kY2FEfyhol_dB-I-VAe2rD6jrVF6k,355
|
16
16
|
solana_agent/interfaces/client/client.py,sha256=9hg35-hp_CI-WVGOXehBE1ZCKYahLmbeAvtQOYmML4o,3245
|
@@ -36,8 +36,8 @@ solana_agent/services/agent.py,sha256=EK4tGeG2nk-pIAvZMiKC1dlPVuybouGliONcJiB_2k
|
|
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.9.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
40
|
+
solana_agent-30.0.9.dist-info/METADATA,sha256=x5zOtjpBZhPM2uiRgKiumI9MfooFMrqSMSudGaNZriY,29632
|
41
|
+
solana_agent-30.0.9.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
42
|
+
solana_agent-30.0.9.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
|
43
|
+
solana_agent-30.0.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|