Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make linter happy.
  • Loading branch information
taeold authored Feb 7, 2025
commit ec2ed51d28f7ea8291202ed83cad3d0c8eb4ea8b
2 changes: 1 addition & 1 deletion 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", { sendChunk }) => {
}, async (jokeType = "knock-knock", {sendChunk}) => {
const prompt = `Tell me a ${jokeType} joke.`;

// Call the `generateStream()` method to
Expand Down