@townco/agent 0.1.48 → 0.1.49

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.
@@ -78,7 +78,9 @@ Please provide your summary based on the conversation above, following this stru
78
78
  ? response.content
79
79
  : Array.isArray(response.content)
80
80
  ? response.content
81
- .filter((block) => typeof block === "object" && block !== null && "text" in block)
81
+ .filter((block) => typeof block === "object" &&
82
+ block !== null &&
83
+ "text" in block)
82
84
  .map((block) => block.text)
83
85
  .join("\n")
84
86
  : "Failed to extract summary";