Super Fast Mode

Enable maximum speed execution by reducing thinking time and using fast models.

Basic Flash Mode

1const task = await client.tasks.createTask({
2 task: "Navigate to news site and get headlines",
3 flashMode: true
4});

Ultra Fast Mode

Combine flash mode with disabled thinking and fast models.

1const task = await client.tasks.createTask({
2 task: "Quick data extraction task",
3 flashMode: true,
4 thinking: false,
5 llm: "gemini-2.5-flash" // or "llama-4-maverick-17b-128e-instruct"
6});

Use gemini-2.5-flash or llama-4-maverick-17b-128e-instruct (runs on Groq) for maximum speed.