workflow
Version:
Workflow DevKit - Build durable, resilient, and observable workflows
296 lines (219 loc) • 8.01 kB
text/mdx
---
title: getWritable
description: Retrieves the current workflow run's default writable stream.
type: reference
summary: Use getWritable to access the workflow run's output stream for real-time data streaming.
prerequisites:
- /docs/foundations/streaming
---
The writable stream can be obtained in workflow functions and passed to steps, or called directly within step functions to write data that can be read outside the workflow by using the `readable` property of the [`Run` object](/docs/api-reference/workflow-api/get-run).
Use this function in your workflows and steps to produce streaming output that can be consumed by clients in real-time.
<Callout type="warn">
This function can only be called inside a workflow or step function (functions
with `"use workflow"` or `"use step"` directive)
</Callout>
<Callout type="error">
**Important:** While you can call `getWritable()` inside a workflow function
to obtain the stream, you **cannot interact with the stream directly** in the
workflow context (e.g., calling `getWriter()`, `write()`, or `close()`). The
stream must be passed to step functions as arguments, or steps can call
`getWritable()` directly themselves.
</Callout>
```typescript lineNumbers
import { getWritable } from "workflow";
export async function myWorkflow() {
"use workflow";
// Get the writable stream
const writable = getWritable(); // [!code highlight]
// Pass it to a step function to interact with it
await writeToStream(writable); // [!code highlight]
}
async function writeToStream(writable: WritableStream) {
"use step";
const writer = writable.getWriter();
await writer.write(new TextEncoder().encode("Hello from workflow!"));
writer.releaseLock();
await writable.close();
}
```
## API Signature
### Parameters
<TSDoc
definition={`
import { getWritable } from "workflow";
export default getWritable;`}
showSections={["parameters"]}
/>
### Returns
<TSDoc
definition={`
import { getWritable } from "workflow";
export default getWritable;`}
showSections={["returns"]}
/>
Returns a `WritableStream<W>` where `W` is the type of data you plan to write to the stream.
## Good to Know
- **Workflow functions can only obtain the stream** - Call `getWritable()` in a workflow to get the stream reference, but you cannot call methods like `getWriter()`, `write()`, or `close()` directly in the workflow context.
- **Step functions can interact with streams** - Steps can receive the stream as an argument or call `getWritable()` directly, and they can freely interact with it (write, close, etc.).
- When called from a workflow, the stream must be passed as an argument to steps for interaction.
- When called from a step, it retrieves the same workflow-scoped stream directly.
- Always release the writer lock after writing to prevent resource leaks.
- The stream can write binary data (using `TextEncoder`) or structured objects.
- Remember to close the stream when finished to signal completion.
## Examples
### Basic Text Streaming
Here's a simple example streaming text data:
```typescript lineNumbers
import { sleep, getWritable } from "workflow";
export async function outputStreamWorkflow() {
"use workflow";
const writable = getWritable(); // [!code highlight]
await sleep("1s");
await stepWithOutputStream(writable);
await sleep("1s");
await stepCloseOutputStream(writable);
return "done";
}
async function stepWithOutputStream(writable: WritableStream) {
"use step";
const writer = writable.getWriter();
// Write binary data using TextEncoder
await writer.write(new TextEncoder().encode("Hello, world!"));
writer.releaseLock();
}
async function stepCloseOutputStream(writable: WritableStream) {
"use step";
// Close the stream to signal completion
await writable.close();
}
```
### Calling `getWritable()` Inside Steps
You can also call `getWritable()` directly inside step functions without passing it as a parameter:
```typescript lineNumbers
import { sleep, getWritable } from "workflow";
export async function outputStreamFromStepWorkflow() {
"use workflow";
// No need to create or pass the stream - steps can get it themselves
await sleep("1s");
await stepWithOutputStreamInside();
await sleep("1s");
await stepCloseOutputStreamInside();
return "done";
}
async function stepWithOutputStreamInside() {
"use step";
// Call getWritable() directly inside the step // [!code highlight]
const writable = getWritable(); // [!code highlight]
const writer = writable.getWriter();
await writer.write(new TextEncoder().encode("Hello from step!"));
writer.releaseLock();
}
async function stepCloseOutputStreamInside() {
"use step";
// Call getWritable() to get the same stream // [!code highlight]
const writable = getWritable(); // [!code highlight]
await writable.close();
}
```
### Using Namespaced Streams in Steps
You can also use namespaced streams when calling `getWritable()` from steps:
```typescript lineNumbers
import { getWritable } from "workflow";
export async function multiStreamWorkflow() {
"use workflow";
// Steps will access both streams by namespace
await writeToDefaultStream();
await writeToNamedStream();
await closeStreams();
return "done";
}
async function writeToDefaultStream() {
"use step";
const writable = getWritable(); // Default stream
const writer = writable.getWriter();
await writer.write({ message: "Default stream data" });
writer.releaseLock();
}
async function writeToNamedStream() {
"use step";
const writable = getWritable({ namespace: "logs" }); // [!code highlight]
const writer = writable.getWriter();
await writer.write({ log: "Named stream data" });
writer.releaseLock();
}
async function closeStreams() {
"use step";
await getWritable().close(); // Close default stream
await getWritable({ namespace: "logs" }).close(); // Close named stream
}
```
### Advanced Chat Streaming
Here's a more complex example showing how you might stream AI chat responses:
```typescript lineNumbers
import { getWritable } from "workflow";
import { generateId, streamText, type UIMessageChunk } from "ai";
export async function chat(messages: ModelMessage[]) {
"use workflow";
// Get typed writable stream for UI message chunks
const writable = getWritable<UIMessageChunk>(); // [!code highlight]
// Start the stream
await startStream(writable);
let currentMessages = [...messages];
// Process messages in steps
for (let i = 0; i < MAX_STEPS; i++) {
const result = await streamTextStep(currentMessages, writable);
currentMessages.push(...result.messages);
if (result.finishReason !== "tool-calls") {
break;
}
}
// End the stream
await endStream(writable);
}
async function startStream(writable: WritableStream<UIMessageChunk>) {
"use step";
const writer = writable.getWriter();
// Send start message
writer.write({
type: "start",
messageMetadata: {
createdAt: Date.now(),
messageId: generateId(),
},
});
writer.releaseLock();
}
async function streamTextStep(
messages: ModelMessage[],
writable: WritableStream<UIMessageChunk>
) {
"use step";
const writer = writable.getWriter();
// Call streamText from the AI SDK
const result = streamText({
model: myModel,
messages,
});
// Pipe the AI stream into the writable stream
const reader = result
.toUIMessageStream({ sendStart: false, sendFinish: false })
.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
await writer.write(value);
}
reader.releaseLock();
writer.releaseLock();
// Return the result for the workflow to use
return {
messages: await result.response.then((r) => r.messages),
finishReason: await result.finishReason,
};
}
async function endStream(writable: WritableStream<UIMessageChunk>) {
"use step";
// Close the stream to signal completion
await writable.close();
}
```