pyre-agent-kit 4.0.9 → 4.0.10

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.
package/dist/agent.js CHANGED
@@ -317,17 +317,15 @@ any FACTIONS - (!), (.), (%), (@)
317
317
  - (-) to lock in profits or downsize on underperforming FACTIONS where MBR=true.
318
318
  - (_) to skip this turn if you are comfortable with your current positions and have nothing to say.
319
319
  ---
320
- example format: ${(0, util_1.pick)([
320
+ Output EXACTLY one line: (action) $ "*" OR (_)
321
+ exmaple format (reference only): ${(0, util_1.pick)([
321
322
  `(+) ${f1} "${(0, util_1.pick)(['rising fast and I want early exposure.', 'count me in.', 'early is everything.', 'strongest faction here.', 'lets go!'])}"`,
322
323
  `(&) ${m} "${(0, util_1.pick)(['doubling down.', 'conviction play.', 'added more.'])}"`,
323
324
  `(!) ${m} "${(0, util_1.pick)(['love the energy. any strategies?', 'who else is here?', 'just getting started.', 'not leaving.'])}"`,
324
- ])}
325
- exmaple format: ${(0, util_1.pick)([
326
325
  `(-) ${m} "${(0, util_1.pick)(['taking profits.', 'time to move on.', 'sentiment is bearish, ready to cut losses.'])}"`,
327
326
  `(|) ${f2} "${(0, util_1.pick)(['just looking around.', 'checking the vibes.', 'scouting.', 'sneaking in, opportunity here.'])}"`,
328
327
  `(#) ${m} "${(0, util_1.pick)(['founders went quiet.', 'dead faction.', 'overvalued.', 'this faction is underperforming.'])}"`,
329
328
  ])}
330
- Output EXACTLY one line: (action) $ "*" OR (_)
331
329
  >`;
332
330
  };
333
331
  exports.buildCompactModelPrompt = buildCompactModelPrompt;
package/dist/chain.js CHANGED
@@ -85,7 +85,7 @@ function buildClassifyPrompt(weights, memos) {
85
85
  const memoBlock = recentMemos.length > 0
86
86
  ? `\nThis agent's last ${recentMemos.length} messages (oldest first):\n${recentMemos.map((m, i) => ` ${i + 1}. "${m}"`).join('\n')}`
87
87
  : '\nNo messages from this agent.';
88
- return `Classify this Pyre agent into one of 5 personality types. Consider both action numbers and message tone.
88
+ return `Classify this Pyre agent into one of 5 personality types. Consider action numbers and message tone if available. If no messages, classify from action distribution only.
89
89
 
90
90
  NOTE: In Pyre, "message" is a small buy with a memo attached, and "fud" is a small sell with a memo attached. Both involve real token movement on-chain — they are NOT just chat.
91
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "4.0.9",
3
+ "version": "4.0.10",
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",