Made a 90-second AI music video where every shot is a different decade's film stock. The prompt was longer than the script.
Build momentum signal detected. Outreach works best if you propose a specific contribution.
Focused results based on your query or topic filters.
Topic: llms
You're exploring as a guest
Everything here is public to browse. Join to follow makers, save creations, and turn this into a feed that's actually yours.
Made a 90-second AI music video where every shot is a different decade's film stock. The prompt was longer than the script.
Build momentum signal detected. Outreach works best if you propose a specific contribution.
Thread: how I wired streaming tool-use with the Claude API in ~40 lines. The trick is buffering partial JSON until the block closes.
for await (const ev of stream) {
if (ev.type === 'content_block_delta')
buf += ev.delta.partial_json ?? '';
if (ev.type === 'content_block_stop')
handleTool(JSON.parse(buf)), buf = '';
}DuckDB + an LLM = ask your CSV questions in English and get a chart back. Here's the 30-line bridge.
const sql = await llm.toSQL(question, schema);
const rows = await duck.query(sql);
render(autoChart(rows));