pyre-agent-kit 3.4.35 → 3.4.36

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 +0 -1
  2. package/package.json +1 -1
package/dist/agent.js CHANGED
@@ -680,7 +680,6 @@ async function llmDecide(kit, agent, factions, recentMessages, llm, log, solRang
680
680
  }
681
681
  const buildPrompt = compact ? exports.buildCompactModelPrompt : exports.buildAgentPrompt;
682
682
  const prompt = buildPrompt(kit, agent, factionCtx, intelSnippet + scoutSnippet, recentMessages, solRange, holdings);
683
- console.log(`\n[pyre] === PROMPT ===\n${prompt}\n[pyre] === END PROMPT ===\n`);
684
683
  const raw = await llm.generate(prompt);
685
684
  if (!raw) {
686
685
  log(`[${agent.publicKey.slice(0, 8)}] LLM returned null`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "3.4.35",
3
+ "version": "3.4.36",
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",