Journal 2025-06-05

You should be able to talk to all apps, surely..?

For some interpretation of talk.

The Joy of REPL

Read-Eval-Print-Loop

I do have a GUI in progress for #:transmissions, but that'll most just be an editor for now. Some of the things I've been trying recently are a bit of a pain just using the command-line directly :

screenshot of a debug log of a reasoner

That a bit of fun I was having with the Eye reasoner. It became clear I needed a bit more interactivity. Bring on the REPL!

screenshot of an interactive chat

That was playing with bits like this :

import clients from 'hyperdata-clients';

const client = createClient(provider, clientOptions)
const response = await client.chat([
            { role: 'user', content: message.content }
        ])

Journal 2025-06-05