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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 4.0.1
3
+ Version: 4.0.2
4
4
  Summary: Build self-learning AI Agents
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "4.0.1"
3
+ version = "4.0.2"
4
4
  description = "Build self-learning AI Agents"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -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