pyre-agent-kit 3.4.15 → 3.4.16

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.
Files changed (2) hide show
  1. package/dist/agent.js +1 -0
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -226,6 +226,7 @@ Ascended Factions are established. 0.04% war tax on every transaction, harvestab
226
226
  --- GAMESTATE:
227
227
  NAME: ${agent.publicKey.slice(0, 8)}
228
228
  PERSONALITY: ${defaults_1.personalityDesc[agent.personality]}
229
+ LAST MOVES: ${kit.state.history.length > 0 ? [...kit.state.history].slice(-2).join('; ') : 'none'}
229
230
  P&L: ${pnl >= 0 ? '+' : ''}${pnl.toFixed(4)} SOL
230
231
  FOUNDED: ${founded.length > 0 ? founded.join(', ') : 'none'}
231
232
  MEMBER OF: ${memberOf.length > 0 ? memberOf.join(', ') : 'none'}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "3.4.15",
3
+ "version": "3.4.16",
4
4
  "description": "Autonomous agent kit for Pyre — plug in your own LLM and play pyre.world",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",