mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-11 21:09:00 +08:00
bump map to 30k
This commit is contained in:
parent
78334e4ef4
commit
1d3757b391
@ -29,7 +29,7 @@ configDotenv();
|
||||
const redis = new Redis(process.env.REDIS_URL!);
|
||||
|
||||
// Max Links that /map can return
|
||||
const MAX_MAP_LIMIT = 5000;
|
||||
const MAX_MAP_LIMIT = 30000;
|
||||
// Max Links that "Smart /map" can return
|
||||
const MAX_FIRE_ENGINE_RESULTS = 500;
|
||||
|
||||
|
@ -501,7 +501,7 @@ export const mapRequestSchema = crawlerOptions
|
||||
search: z.string().optional(),
|
||||
ignoreSitemap: z.boolean().default(false),
|
||||
sitemapOnly: z.boolean().default(false),
|
||||
limit: z.number().min(1).max(5000).default(5000),
|
||||
limit: z.number().min(1).max(30000).default(5000),
|
||||
timeout: z.number().positive().finite().optional(),
|
||||
useMock: z.string().optional(),
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user