Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Desctructure streaming context for more idiomatic flow definition #1191

Merged
merged 2 commits into from
Feb 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Node/quickstarts/genkit-helloworld/functions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const jokeTeller = ai.defineFlow({
inputSchema: z.string().nullable(),
outputSchema: z.string(),
streamSchema: z.string(),
}, async (jokeType = "knock-knock", response) => {
}, async (jokeType = "knock-knock", {sendChunk}) => {
const prompt = `Tell me a ${jokeType} joke.`;

// Call the `generateStream()` method to
Expand All @@ -56,7 +56,7 @@ const jokeTeller = ai.defineFlow({
// Send new words of the generative AI response
// to the client as they're generated.
for await (const chunk of stream) {
response.sendChunk(chunk.text);
sendChunk(chunk.text);
}

// Return the full generative AI response
Expand Down