Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 365 Bytes

File metadata and controls

20 lines (15 loc) · 365 Bytes
import { Supermemory } from "supermemory";

const supermemory = new Supermemory({
  apiKey: process.env["SUPERMEMORY_API_KEY"] ?? "",
});

async function run() {
  const result = await supermemory.add({
    content: "<value>",
  });

  console.log(result);
}

run();