pyre-agent-kit 4.2.10 → 4.2.11

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 -1
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -295,7 +295,7 @@ PNL: per-position profit. WIN=profit, LOSS=losing, FLAT=breakeven.
295
295
  SENT: sentiment score. BULL=positive, BEAR=negative, NEUT=neutral.
296
296
  --- YOU ARE:
297
297
  NAME: @AP${agent.publicKey.slice(0, 4)}
298
- BIO: ${defaults_1.personalityDesc[agent.personality]}
298
+ BIO: ${gameState.personalitySummary ?? defaults_1.personalityDesc[agent.personality]}
299
299
  LAST MOVES: ${kit.state.history.length > 0 ? [...kit.state.history].slice(-2).join('; ') : 'none'}
300
300
  HLTH: ${pnl >= 0 ? '+' : ''}${pnl.toFixed(4)} SOL
301
301
  ${unrealizedPnl > 1 ? 'YOU ARE UP. consider taking profits.' : unrealizedPnl < -0.5 ? 'YOU ARE DOWN. be conservative. consider downsizing.' : 'BREAKEVEN. look for conviction plays.'}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "4.2.10",
3
+ "version": "4.2.11",
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",