mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-04-19 12:39:42 +08:00
Merge pull request #1436 from mendableai/feat/increase-search-limit
feat(api/search): add search endpoint and update request limits
This commit is contained in:
commit
45efe3fd46
@ -120,3 +120,14 @@ content-type: application/json
|
||||
GET {{baseUrl}}/v1/llmstxt/{{generateLlmsTxtId}} HTTP/1.1
|
||||
Authorization: Bearer {{$dotenv TEST_API_KEY}}
|
||||
|
||||
|
||||
### Search
|
||||
# @name search
|
||||
POST {{baseUrl}}/v1/search HTTP/1.1
|
||||
Authorization: Bearer {{$dotenv TEST_API_KEY}}
|
||||
content-type: application/json
|
||||
|
||||
{
|
||||
"query": "firecrawl",
|
||||
"limit": 50
|
||||
}
|
||||
|
@ -969,7 +969,7 @@ export const searchRequestSchema = z
|
||||
.positive()
|
||||
.finite()
|
||||
.safe()
|
||||
.max(20)
|
||||
.max(50)
|
||||
.optional()
|
||||
.default(5),
|
||||
tbs: z.string().optional(),
|
||||
|
@ -70,7 +70,7 @@ async function _req(
|
||||
export async function googleSearch(
|
||||
term: string,
|
||||
advanced = false,
|
||||
num_results = 7,
|
||||
num_results = 5,
|
||||
tbs = undefined as string | undefined,
|
||||
filter = undefined as string | undefined,
|
||||
lang = "en",
|
||||
|
Loading…
x
Reference in New Issue
Block a user