solana-agent 30.0.2__py3-none-any.whl → 30.0.4__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/services/agent.py +1 -1
- {solana_agent-30.0.2.dist-info → solana_agent-30.0.4.dist-info}/METADATA +2 -2
- {solana_agent-30.0.2.dist-info → solana_agent-30.0.4.dist-info}/RECORD +7 -7
- {solana_agent-30.0.2.dist-info → solana_agent-30.0.4.dist-info}/LICENSE +0 -0
- {solana_agent-30.0.2.dist-info → solana_agent-30.0.4.dist-info}/WHEEL +0 -0
- {solana_agent-30.0.2.dist-info → solana_agent-30.0.4.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"
|
37
|
+
DEFAULT_VISION_MODEL = "gpt-4.1"
|
38
|
+
DEFAULT_PARSE_MODEL = "gpt-4.1"
|
39
39
|
DEFAULT_EMBEDDING_MODEL = "text-embedding-3-large"
|
40
40
|
DEFAULT_EMBEDDING_DIMENSIONS = 3072
|
41
41
|
DEFAULT_TRANSCRIPTION_MODEL = "gpt-4o-mini-transcribe"
|
solana_agent/services/agent.py
CHANGED
@@ -260,7 +260,7 @@ class AgentService(AgentServiceInterface):
|
|
260
260
|
# Compose the prompt for generate_text
|
261
261
|
full_prompt = ""
|
262
262
|
if memory_context:
|
263
|
-
full_prompt += f"CONVERSATION HISTORY:\n{memory_context}\n\n"
|
263
|
+
full_prompt += f"CONVERSATION HISTORY:\n{memory_context}\n\n Always use your tools to perform actions and don't rely on your memory!\n\n"
|
264
264
|
if prompt:
|
265
265
|
full_prompt += f"ADDITIONAL PROMPT:\n{prompt}\n\n"
|
266
266
|
full_prompt += user_content
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 30.0.
|
3
|
+
Version: 30.0.4
|
4
4
|
Summary: AI Agents for Solana
|
5
5
|
License: MIT
|
6
6
|
Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
|
@@ -129,7 +129,7 @@ Smart workflows are as easy as combining your tools and prompts.
|
|
129
129
|
### AI Models Used
|
130
130
|
|
131
131
|
**OpenAI**
|
132
|
-
* [gpt-4.1
|
132
|
+
* [gpt-4.1](https://platform.openai.com/docs/models/gpt-4.1) (agent & router)
|
133
133
|
* [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
|
134
134
|
* [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
|
135
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=Vc2lizpJeyZH2T7GX-iLpUUmn2gsw5b2vQZJ2gwL1ng,23238
|
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
|
@@ -32,12 +32,12 @@ solana_agent/plugins/tools/auto_tool.py,sha256=uihijtlc9CCqCIaRcwPuuN7o1SHIpWL2G
|
|
32
32
|
solana_agent/repositories/__init__.py,sha256=fP83w83CGzXLnSdq-C5wbw9EhWTYtqE2lQTgp46-X_4,163
|
33
33
|
solana_agent/repositories/memory.py,sha256=SKQJJisrERccqd4cm4ERlp5BmKHVQAp1fzp8ce4i2bw,8377
|
34
34
|
solana_agent/services/__init__.py,sha256=iko0c2MlF8b_SA_nuBGFllr2E3g_JowOrOzGcnU9tkA,162
|
35
|
-
solana_agent/services/agent.py,sha256=
|
35
|
+
solana_agent/services/agent.py,sha256=EK4tGeG2nk-pIAvZMiKC1dlPVuybouGliONcJiB_2k8,19267
|
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.4.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
|
40
|
+
solana_agent-30.0.4.dist-info/METADATA,sha256=47V9Ytk_UZXhVQZNXyREmPOAyp1gBs0J037zakw71eE,29582
|
41
|
+
solana_agent-30.0.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
42
|
+
solana_agent-30.0.4.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
|
43
|
+
solana_agent-30.0.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|