diff options
| author | Shoubhit Dash <[email protected]> | 2026-01-30 21:08:11 +0530 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2026-01-30 21:09:12 -0700 |
| commit | 05ecc18e4f0eef6d3b88b0e459b43ad9f13ce8cf (patch) | |
| tree | 84d930a7fccccff3a6d54295ee8ecec8d0acedb0 /packages/tools/test/anthropic-example.ts | |
| parent | done (diff) | |
| download | archived-supermemory-01-30-mastra_integration.tar.xz archived-supermemory-01-30-mastra_integration.zip | |
format and lint01-30-mastra_integration
Diffstat (limited to 'packages/tools/test/anthropic-example.ts')
| -rw-r--r-- | packages/tools/test/anthropic-example.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/tools/test/anthropic-example.ts b/packages/tools/test/anthropic-example.ts index cfb82ddb..0da95b77 100644 --- a/packages/tools/test/anthropic-example.ts +++ b/packages/tools/test/anthropic-example.ts @@ -97,7 +97,7 @@ async function chatWithMemoryTool() { if (memoryResult.content) { console.log( "📄 Content preview:", - memoryResult.content.substring(0, 100) + "...", + `${memoryResult.content.substring(0, 100)}...`, ) } } @@ -256,7 +256,7 @@ async function testMemoryOperations() { } else if (result.content) { console.log( "📄 Result:", - result.content.substring(0, 150) + "... (truncated)", + `${result.content.substring(0, 150)}... (truncated)`, ) } } else { @@ -275,7 +275,7 @@ async function testMemoryOperations() { // Run the examples async function main() { await testMemoryOperations() - console.log("\n" + "=".repeat(70) + "\n") + console.log(`\n${"=".repeat(70)}\n`) await chatWithMemoryTool() } |