We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 446fbd6 commit f7e52eeCopy full SHA for f7e52ee
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "solana-agent"
3
-version = "30.0.3"
+version = "30.0.4"
4
description = "AI Agents for Solana"
5
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
license = "MIT"
solana_agent/services/agent.py
@@ -260,7 +260,7 @@ async def generate_response(
260
# Compose the prompt for generate_text
261
full_prompt = ""
262
if memory_context:
263
- full_prompt += f"CONVERSATION HISTORY:\n{memory_context}\n\n"
+ 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
if prompt:
265
full_prompt += f"ADDITIONAL PROMPT:\n{prompt}\n\n"
266
full_prompt += user_content
0 commit comments