Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ firecrawl agent <job-id> --wait
| Option | Description |
| --------------------------- | ------------------------------------------------------------- |
| `--urls <urls>` | Comma-separated URLs to focus extraction on |
| `--model <model>` | `spark-1-mini` (default, cheaper) or `spark-1-pro` (accurate) |
| `--model <model>` | `spark-1-pro` (default, accurate) or `spark-1-mini` (cheaper) |
| `--schema <json>` | JSON schema for structured output (inline JSON string) |
| `--schema-file <path>` | Path to JSON schema file for structured output |
| `--max-credits <number>` | Maximum credits to spend (job fails if exceeded) |
Expand Down
2 changes: 1 addition & 1 deletion skills/firecrawl-agent/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ firecrawl agent "get feature list" --urls "<url>" --wait -o .firecrawl/features.
| Option | Description |
| ---------------------- | ----------------------------------------- |
| `--urls <urls>` | Starting URLs for the agent |
| `--model <model>` | Model to use: spark-1-mini or spark-1-pro |
| `--model <model>` | Model: spark-1-pro (default) or spark-1-mini |
| `--schema <json>` | JSON schema for structured output |
| `--schema-file <path>` | Path to JSON schema file |
| `--max-credits <n>` | Credit limit for this agent run |
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ function createAgentCommand(): Command {
.option('--urls <urls>', 'Comma-separated URLs to focus extraction on')
.option(
'--model <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 <json>',
Expand Down
2 changes: 1 addition & 1 deletion src/types/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[];
Expand Down
Loading