solana-agent 4.0.1__tar.gz → 4.0.2__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.
- {solana_agent-4.0.1 → solana_agent-4.0.2}/PKG-INFO +1 -1
- {solana_agent-4.0.1 → solana_agent-4.0.2}/pyproject.toml +1 -1
- {solana_agent-4.0.1 → solana_agent-4.0.2}/solana_agent/ai.py +8 -0
- {solana_agent-4.0.1 → solana_agent-4.0.2}/LICENSE +0 -0
- {solana_agent-4.0.1 → solana_agent-4.0.2}/README.md +0 -0
- {solana_agent-4.0.1 → solana_agent-4.0.2}/solana_agent/__init__.py +0 -0
|
@@ -763,6 +763,10 @@ class AI:
|
|
|
763
763
|
"role": "system",
|
|
764
764
|
"content": f"Rules: {self._reasoning_instructions}, Tool Result: {result}, Memory Context: {memory}",
|
|
765
765
|
},
|
|
766
|
+
{
|
|
767
|
+
"role": "user",
|
|
768
|
+
"content": user_text,
|
|
769
|
+
}
|
|
766
770
|
],
|
|
767
771
|
stream=True,
|
|
768
772
|
)
|
|
@@ -947,6 +951,10 @@ class AI:
|
|
|
947
951
|
"role": "system",
|
|
948
952
|
"content": f"Rules: {self._reasoning_instructions}, Tool Result: {result}, Memory Context: {memory}",
|
|
949
953
|
},
|
|
954
|
+
{
|
|
955
|
+
"role": "user",
|
|
956
|
+
"content": transcript,
|
|
957
|
+
}
|
|
950
958
|
],
|
|
951
959
|
stream=True,
|
|
952
960
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|