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/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 | 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[];