open-think 0.3.1 → 0.3.2
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/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2223,11 +2223,13 @@ async function showMemories(opts) {
|
|
|
2223
2223
|
const ts = m.ts.slice(0, 16).replace("T", " ");
|
|
2224
2224
|
const preview = m.content.length > 80 ? m.content.slice(0, 80) + "..." : m.content;
|
|
2225
2225
|
console.log(`${chalk13.gray(ts)} ${chalk13.dim(m.author + ":")} ${preview}`);
|
|
2226
|
+
printDecisions(m);
|
|
2226
2227
|
}
|
|
2227
2228
|
} else {
|
|
2228
2229
|
for (const m of memories) {
|
|
2229
2230
|
const ts = m.ts.slice(0, 16).replace("T", " ");
|
|
2230
2231
|
console.log(`${chalk13.gray(ts)} ${chalk13.dim(m.author + ":")} ${m.content}`);
|
|
2232
|
+
printDecisions(m);
|
|
2231
2233
|
}
|
|
2232
2234
|
}
|
|
2233
2235
|
console.log(chalk13.dim(`
|