// Basic streaming forawait (constchunkofgenStream("Tell me a story")) { process.stdout.write(chunk); }
// With options forawait (constchunkofgenStream("Write a poem", { system:"You are a poet", model:"claude-sonnet-4-20250514", })) { process.stdout.write(chunk); }
Stream text from an LLM in a single call.