This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

character / scripts / simulate-chat.ts
320 B 10 lines
1import { handleMessage } from '../src/index'; 2 3const sample = { 4 author: 'viewer1', 5 text: 'hello little creature what do you think about decentralized streaming?', 6 timestamp: new Date().toISOString() 7}; 8 9const result = handleMessage(sample); 10console.log(JSON.stringify({ input: sample, output: result }, null, 2));