Category: Uncategorized

  • Adding LiveBook secrets to custom Smart Cells

    I came across the lack of documentation on how to pass/trigger the modal dialog used by the Kino.DB smart cell when setting up an interactive chat tree widget for working with my GenAI multi provider client wrapper https://github.com/noizu-labs-ml/genai It turns out to be pretty straight forward, the javscript ctx module exposes a function for launching…

  • Adding/Rendering SVGs inside of chatgpt

    This is a little hacky but fun trick I used to use in the bad old days before dalle support and which is still useful for doing roundtrip generation of mockups, showing inline html,svg, and some other stuff. I wanted to see how well GPT could deal with following a state machine defined in an…

  • Prompt Engineering: Intent and Reflection.

    For those of you just getting into prompt engineering, a quick and easy tool to use to improve agent response and conversation quality is to apply intention and reflection prompts forcing the model to think in more depth about it will respond to a request to reflect on how well it did in It’s response…

  • Getting more out of Copilot

    For those who have signed up for copilot 365 and copilot chat (vs code/intellij). Here is a useful hack to get more functionality out of the copilot side bar and inline generator (for those with a business account). You may add a custom prompt instruction to a file or page of your document and in…

  • Communicating Between Live View Components, Backends and other Channels.

    Overview In larger live view applications containing multiple views/components per page some without direct child-parent relationships the need to communicate messages between sections occasionally will come up. Global events like login/logout, system notifications from the back end, pushing config changes from a config view out to the existing nonrelated widgets on page, etc. Although documentation…