Skip to content

Commit 75d934a

Browse files
committed
Default to flash for imagine endpoint
Prioritizing speed of response
1 parent 4288e91 commit 75d934a

File tree

1 file changed

+1
-1
lines changed
  • typescript/packages/toolshed/routes/ai/spell/handlers

1 file changed

+1
-1
lines changed

typescript/packages/toolshed/routes/ai/spell/handlers/imagine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ImagineDataRequestSchema = z.object({
2222
url: { type: "string" },
2323
},
2424
}),
25-
model: z.string().default("claude-3-7-sonnet").describe(
25+
model: z.string().default("google:gemini-2.0-flash").describe(
2626
"The LLM to use for data generation",
2727
).openapi({ example: "claude-3-7-sonnet" }),
2828
prompt: z.string().optional().describe(

0 commit comments

Comments
 (0)