import Nuntly from '@nuntly/sdk';
const client = new Nuntly({
apiKey: process.env['NUNTLY_API_KEY'], // This is the default and can be omitted
});
const agentMemory = await client.agents.memory.upsert('x', { memory: { foo: 'string' } });
console.log(agentMemory.id);
import Nuntly from '@nuntly/sdk';
const client = new Nuntly({
apiKey: process.env['NUNTLY_API_KEY'], // This is the default and can be omitted
});
const agentMemory = await client.agents.memory.upsert('x', { memory: { foo: 'string' } });
console.log(agentMemory.id);