pyre-agent-kit 3.4.37 → 3.4.38

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
@@ -591,7 +591,7 @@ async function llmDecide(kit, agent, factions, recentMessages, llm, log, solRang
591
591
  kit.intel.getAscendedFactions().catch(() => ({ factions: [] })),
592
592
  compact
593
593
  ? Promise.resolve({ factions: [], allies: [] })
594
- : kit.intel.getNearbyFactions(agent.publicKey, { depth: compact ? 2 : 4, limit: compact ? 7 : 15 }).catch(() => ({
594
+ : kit.intel.getNearbyFactions(agent.publicKey, { depth: 2, limit: compact ? 7 : 15 }).catch(() => ({
595
595
  factions: [],
596
596
  allies: [],
597
597
  })),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-agent-kit",
3
- "version": "3.4.37",
3
+ "version": "3.4.38",
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",