From 53934a4f64e15793941b3a671e1d400484cccfa6 Mon Sep 17 00:00:00 2001 From: Abimael Martell Date: Thu, 19 Mar 2026 11:03:46 -0700 Subject: [PATCH 1/2] Fix default model documentation: spark-1-pro is the default, not spark-1-mini --- README.md | 2 +- src/index.ts | 2 +- src/types/agent.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c920367..02846af 100644 --- a/README.md +++ b/README.md @@ -429,7 +429,7 @@ firecrawl agent --wait | Option | Description | | --------------------------- | ------------------------------------------------------------- | | `--urls ` | Comma-separated URLs to focus extraction on | -| `--model ` | `spark-1-mini` (default, cheaper) or `spark-1-pro` (accurate) | +| `--model ` | `spark-1-pro` (default, accurate) or `spark-1-mini` (cheaper) | | `--schema ` | JSON schema for structured output (inline JSON string) | | `--schema-file ` | Path to JSON schema file for structured output | | `--max-credits ` | Maximum credits to spend (job fails if exceeded) | diff --git a/src/index.ts b/src/index.ts index a2d574d..2952573 100644 --- a/src/index.ts +++ b/src/index.ts @@ -639,7 +639,7 @@ function createAgentCommand(): Command { .option('--urls ', 'Comma-separated URLs to focus extraction on') .option( '--model ', - 'Model to use: spark-1-mini (default, cheaper) or spark-1-pro (higher accuracy)' + 'Model to use: spark-1-pro (default, higher accuracy) or spark-1-mini (cheaper)' ) .option( '--schema ', diff --git a/src/types/agent.ts b/src/types/agent.ts index e2a5c9a..fb4ced8 100644 --- a/src/types/agent.ts +++ b/src/types/agent.ts @@ -9,7 +9,7 @@ export type AgentStatus = 'processing' | 'completed' | 'failed'; export interface AgentOptions { /** Natural language prompt describing the data to extract */ prompt: string; - /** Model to use: spark-1-mini (default, cheaper) or spark-1-pro (higher accuracy) */ + /** Model to use: spark-1-pro (default, higher accuracy) or spark-1-mini (cheaper) */ model?: AgentModel; /** Specific URLs to focus extraction on */ urls?: string[]; From 2d25573ec87cf13e4153ab640d880e58860c4ee8 Mon Sep 17 00:00:00 2001 From: Abimael Martell Date: Thu, 19 Mar 2026 11:06:01 -0700 Subject: [PATCH 2/2] Update agent skill to show spark-1-pro as default model --- skills/firecrawl-agent/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/firecrawl-agent/SKILL.md b/skills/firecrawl-agent/SKILL.md index 0b3577f..5d82777 100644 --- a/skills/firecrawl-agent/SKILL.md +++ b/skills/firecrawl-agent/SKILL.md @@ -35,7 +35,7 @@ firecrawl agent "get feature list" --urls "" --wait -o .firecrawl/features. | Option | Description | | ---------------------- | ----------------------------------------- | | `--urls ` | Starting URLs for the agent | -| `--model ` | Model to use: spark-1-mini or spark-1-pro | +| `--model ` | Model: spark-1-pro (default) or spark-1-mini | | `--schema ` | JSON schema for structured output | | `--schema-file ` | Path to JSON schema file | | `--max-credits ` | Credit limit for this agent run |